[ / / / / / / / / / / / / / ] [ r8k / ck / wooo / fit / random / doomer / f1 / foodism / harmony / lathe / lewd / warroom / wtp ]

/prog/ - Programming

Programming

Catalog  Archive

Name
Email
Subject
REC
STOP
Comment *
File
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶Show post options & limits]
Confused? See the FAQ.
Options

Allowed file types:jpg, jpeg, gif, png, webp,webm, mp4, mov
Max filesize is16 MB.
Max image dimensions are15000 x15000.
You may upload5 per post.


File: 35bfe0cd382782a⋯.jpg (40.79 KB,508x419,508:419,1598979949247.jpg)

c4e9f4 No.5477 [Open Thread]

Sup faggots. What should I write in the commit message when I made a change with the only effect of making a warning go away.

"Remove warning", "Fix warning" and "Eliminate warning" is not quite accurate and "Make warning go away" sounds retared.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

000000 No.5494

quell warning

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4e14a6 No.5500

Supress warning

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

446327 No.5508

>>5477

annihilate warning

decimate warning

destroy warning

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



c1cff6 No.5299 [Open Thread]

Can someone help me understand DHTs with Byzantine fault tolerance? I read the wikipedia pages but they it didn't quite click for me. I'm also new to writing P2P stuff.

What is the algorithm, exactly? So I write a bunch of servers that all store some values with some keys and listen on a port. Then I want to query a key.

1. Do I send that key to every server and see which one replies? That sounds very inefficient if I have millions of servers all retrieving values frequently.

2. Is there a way to make it so that the server can't see the information it stores? I suppose I could somehow break up the file but now every query requires many more connections. Would it work if I encrypt the file and break it up into a small number of pieces, say 2, and store each piece on a different server? Even if an individual knew the key it couldn't decrypt even the part that it has.

3. How do I know the IPs of the servers without having a centralized directory?

4. What if the servers sometimes go offline? Is it enough to just store the same key-value on multiple peers and hope that at least one will be up?

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c12183 No.5476

File: 246d5ce36eee8e4⋯.png (4.86 KB,225x224,225:224,images.png)

https://www.youtube.com/playlist?list=PLfTHgzgSsUiRbuCTkkA8O4ADz17jf6aY3

The first three videos are what you want.

Also the specifications of Kademlia, the DHT algorithm used in Bittorrent Mainnet DHT.

http://xlattice.sourceforge.net/components/protocol/kademlia/specs.html

Here's my take on it.

A DHT is a key value store where the key-value pairs are not stored in a central computer but distributed among many forming a network.

When a node joins the network it can query the network for a key and will receive a value associated with that key.

Also each node is assigned a portion of the key-value pairs to store. This is a black-box look at DHTs.

The interesting part is how to implement this without a central server that keeps track of which node stores which keys.

This is done using a decentralised or "P2P" algorithm outlined next.

Each node is assigned an id, which is typically the hash of its ip (and port I think). The nodes organize themselves in a ring, where each

node connects to its successor and predecessor in the id space. That is, node 6 connects to nodes 5 and 7. If let's say, node 5 is not available,

then it connects to the next available node in that direction.

The key-value pairs are distributed such that node with id n stores the pair such that the hash of the key is n. Since the space of a modern

hash function is huge, a node stores the keys that would be assigned to the previous nodes that are not pressent in the network.

In other words, the same space is used for keys and ndoe ids, and a node stores the keys closest to it in this space. This is the distance metric.

Post too long. Click here to view the full text.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

820a30 No.5499

File: 798dc12699dd73f⋯.jpg (66.08 KB,640x640,1:1,1571041169699.jpg)

hi anon,

you should check out something like this : https://docs.rs/libp2p/0.37.1/libp2p/tutorial/index.html

I'd use this to write any new P2P stuff.

cheers,

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f3e476 No.5505

Thank you guys so much for posting these amazing resources. I'm gonna get cracking on building a nice project using the info you've all given me.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 1450922815492.png (509.25 KB,793x457,793:457,jurassic_newman.png)

debaa4 No.3753 [Open Thread]

>Be me

>work in low-level kernel/driver development

>Working long nights to get everything done as soon as I can

>bi-annual performance review comes up

>MFW my boss says he's disappointed because I don't talk to the other employees

>apparently its a problem that none of them know anything about me

What are some fields where I can find a programming job that doesn't involve talking to normies or anyone else? I'm a motivated self-learner who's willing to do whatever it takes to get the job done on time as long as it doesn't involve interacting with other people.

16 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

fbf59b No.5452

That's life buddy.

Just ask a question about their lives and move on.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

fbf59b No.5453

>>5373

Yup, they're definitely talking behind your back

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5d5307 No.5462

>>3753

Reverse engineering.

It's a highly coveted contract job that pays probably the most money of any other computer science topic and you absolutely don't have to talk to anybody except "where is my paycheck".

If you're already doing low level, you can do reverse engineering, you can esp do abstract reverse engineering which is what GrammaTech does, using lisp to split up the program logic and any kind of source you want, to produce highly obfuscated binaries the kinds of which nation state malware uses.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c2c3b3 No.5470

test

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

13de20 No.5504

>work in low-level kernel/driver development

>I'm a motivated self-learner

How'd you get a low level programming job? I can't get shit without a degree. Any tips?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 1441181852069.jpg (66.74 KB,573x459,191:153,heart.jpg)

5ff8c9 No.3182 [Open Thread][Last 50 Posts]

>C without pointers

>Haskell without monads

>Java without exceptions

>Python without whitespace

78 posts and 3 image replies omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f415bd No.5492

>>4361

!!value

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

9d8d81 No.5493

>>3628

Yeah it has although the name eludes me.

>RPN Lisp

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

000000 No.5495

Haskell without currying

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

422155 No.5496

File: 18b5a3e98d74269⋯.jpg (35.12 KB,640x459,640:459,e1.jpg)

>Lisp without cons cells,lambdas and macros

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

662804 No.5497

low hanging fruit: java without semicolons

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



2ffa67 No.5137 [Open Thread]

Discuss and share Fortran related talks here.

This includes all variations (for now), but specify which one you're referring to.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

faf784 No.5234

How to RICH with FORTRAN?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

b2273b No.5237

>>5234

sell tutorials to hipsters

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

35137d No.5491

>>5237

Don't forget the gaudy html

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



ad0a20 No.5469 [Open Thread]

dead board

5 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4fe0f1 No.5485

lolz

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4fe0f1 No.5486

lolzes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4fe0f1 No.5487

ha

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4897eb No.5488

ha

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

8c0c69 No.5490

Just found it. Looks like here is another place to shit post.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 55271e1daa3654f⋯.jpg (19.37 KB,334x302,167:151,Morpheus2.jpg)

4a40e5 No.5313 [Open Thread]

What if i told you you can have a programming language that's simpler than Python and faster than C?

30 posts and 3 image replies omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

470cf9 No.5432

>>5425

In order to make use of domain specific features as matters of convenience and productivity. The theory of Turing completeness means that the functionality will be equivalent in the end. That doesn't mean that the programming effort to reach that point is equivalent.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

dacacb No.5443

>>5432

that's a fallacy.

as i already said same can be achieved with a library.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

3429c3 No.5444

>>5315

>C's compiler technology is probably the most advanced of all

LOL. Fortran has been far ahead of C forever. They just finally got a major optimization into C compilers on par with Fortran and there are others.

IIRC they also got Common Lisp (CMUCL?) on par with Fortran for some numerical compilations ages ago and kept it for a little while.

No specific memory but I bet Java got up there pretty good.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

f3bc26 No.5456

File: 610d1b36249c183⋯.png (501.14 KB,9611x2167,9611:2167,static_graph.png)

next milestone is first step in automatic concurrency

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

80ef2f No.5489

File: 666471a32e92c87⋯.gif (777.57 KB,300x100,3:1,4311mj.gif)

I would be happy

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: befc86f94e2f0e0⋯.png (143.37 KB,600x600,1:1,thonk.png)

ca80ef No.5396 [Open Thread]

is it wise to write a password manager in an high level language like python?

1 post omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c509e6 No.5399

I would say it's less safe because of the popularity of Python.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a4684a No.5400

>>5399

Explain.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

c509e6 No.5411

>>5400

I didn't give it much thought to be honest. Consider it a shitpost

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4b0393 No.5474

>>5396

>not writing down your password

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

5e9637 No.5479

If you're writing a production-grade (what that means is up to you) password manager, you're going to want a rock-solid crypto library and a stack that you can ultimately trust. If Python provides that for you, then sure. You also have to consider the vulnerabilities and limitations of the programming language itself. You might also write a front-end in Python to a more secure (read: low-level) back-end, but then you have to deal with vulnerabilities at the language barrier and in any kind of RPC system you might use if you're not doing everything locally. I'd just stick with a low-level language like C, C++, or Rust. Something like Go should be relatively fine too for a personal-use password manager.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: 83526d4560c2a80⋯.jpg (109.08 KB,394x600,197:300,manga_mutiny_cover_yt_BL9l….jpg)

File: 17c6c3503e2fe5a⋯.jpg (48.34 KB,259x400,259:400,6525081.jpg)

File: 2f65d23d757959a⋯.jpg (41.57 KB,300x446,150:223,30284832.jpg)

61a2b9 No.5475 [Open Thread]

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.


0211b1 No.4336 [Open Thread]

whats a good first programming launguage

and is codeacademy any good

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0211b1 No.4349

java

yes

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0211b1 No.4350

>>4349

>java

It's shit. Start with something like Python, Ruby or Scheme/Racket instead. After that, try C/C++ to get a slightly better understanding of how the machine works.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ee6c1d No.5471

I would learn Java, though getting old. It's easy to learn and the main bulding blocks of the language are found in any other programming language. Furthermore it's quite similar to C#. But If you want to get a job you have to dive deeper in the ecosystem. Learn Frameworks, stuff like gradle, maybe kotlin. Do some research if you want to find a job. But Java is a good startibg point.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

ee6c1d No.5472

>>4350

Yeah it isn't the best. But the learning curve is high. And Python has a more distinct syntax which makes the transition between languages harder if you're a beginner. Ruby. Is good for web programming. If you want to go into that field, but then sure go for Ruby. C++ in my opinion is just too much if you're starting out. The language has too much to offer. As i said above. Start with Java, do some Job research and then make transition.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

4cf897 No.5473

>>4350

>java is shit

>try python, ruby

modern languages with the beginners charm fall apart quickly when you move to advanced stuff.

start with c/c++ , then java.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



e7a4dc No.5212 [Open Thread]

Is there anything about x86 ASM? I want resources on x86 ASM. Does anyone here have any good books or have experienced programming in it.

8 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

93a413 No.5457

what are some comfy systems to learn assembly for if you want to start from nothing like Terry and build something akin to an os? like easy basic graphics/hardware interfaces in assembly. i guess i could go for a ti-84 but i want something more featured, preferably better than a c64 but that's probably getting into graphics accelerators and i have no idea what i'm doing.

again i have no idea what i'm doing or what i want since i'd also want a system with a good emulator so i dont have to pay an arm and a leg. i guess i'm stuck with a ti-84 in reality. the c64 emulators i tried wouldnt even run BASIC commands so i dont think that's the way to go. just jumping into x86 or A64 (i have a rpi) seems like trying to learn to swim by diving in lava.

should i just focus on C and not give a shit about assembly?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

0bbc07 No.5458

>>5457

MIPS is popular for learning, it's relatively simple but had actual hardware.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

93a413 No.5459

>>5458

thanks, i'll take a look

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

7cf907 No.5466

>>5457

Learn RISC-V.

MIT's entire 6.004 class is open sourced, including the lectures which are all on YouTube https://6004.mit.edu/web/spring19/resources/lectures

You can buy these chips for next to nothing, and program them from the ground up yourself. A hardware hacker's dream. India and some other countries are working on a total replacement for ARM using RISC-V. Learn it now and get in on that action if it ever happens.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

49771d No.5467

File: 4f6b0f846dcc977⋯.png (347.1 KB,734x734,1:1,ClipboardImage.png)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



99af03 No.5454 [Open Thread]

There is a resurgence in programming languages and compilers that target native binaries. Go is already popular. Rust enjoys a lot of hype. D and Haskell seem to be making a bit of a comeback. New compilers are being worked on for existing languages, like Kotlin Native and Scala Native, and entire new languages are being developed, like Zig, Swift, Pony, Nim, Crystal and V. Which are you betting on? Which do you find interesting?

Do you think WASM will overturn the trend? There is certainly a lot of people trying to make "write once, run everywhere" happen with WASM for some reason.

____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

214004 No.5461

>>5454

WASM right now is just a MVP, meaning minimal viable product so it's missing tons of features. You need to jerryrig a lot of things to get it to work.

That said, when it finally is a real prototype, you will be able to compile WASM binaries in any language and yes it will likely eat the world as we know it where your browser merely pushes a binary and all those web app stores are obsolete. In fact almost everything will be obsolete because they want native resource access in the final prototype meaning an application that is just pushed through your browser and has native access to everything including your video card in order to render graphics. Programs like Windows Word or whatever will be this type of binary, fully owned by a remote company and just lended to you through a binary push. We're entering a radically different style of computation where RMS was essentially correct, the bulk of computation will be done remotely on closed source ecosystems and just pushed to you through a dumb terminal.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



33e233 No.5138 [Open Thread]

Discuss and share Python related talks here.

This includes all versions just be explicit about it.

2 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

97f363 No.5378

Hey, I'm learning Python, specifically Python 3.6. I came across an issue involving tuples, specifically with:

tuple.index(x)

Whenever x is a variable defined by an input, it gives me a value error saying it is not in the tuple. Is there some work-around?

I can provide the original code and error message as needed.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

43df32 No.5379

>>50378

if i remember then input is a string and needs to be convertet to an int if you want to use it with index

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

475d53 No.5391

>>5378

https://docs.python.org/3/library/stdtypes.html#index-19

"""8. index raises ValueError when x is not found in s. Not all implementations support passing the additional arguments i and j. These arguments allow efficient searching of subsections of the sequence. Passing the extra arguments is roughly equivalent to using s[i:j].index(x), only without copying any data and with the returned index being relative to the start of the sequence rather than the start of the slice."""

While this is poor design, it is documented behavior. The workaround is:


>>> import operator
>>> import functools
>>> def seqindex (seq, item):
... return next (
... map (operator.itemgetter (0),
... filter (operator.itemgetter (1),
... enumerate (
... map (functools.partial (operator.eq, item),
... seq)))), -1)
...
>>> seqindex ((1, 2, 3), 3)
2
>>> seqindex ((1, 2, 3), 4)
-1
>>>

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

97f363 No.5393

>>5378

OP here, fixed the code, works fine now. I appreciate the help.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

791c13 No.5445

>>5378

Was it a type thing? Did you have a tuple with integers in it, nad were trying to find the index using a string variable?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



File: dd70dffa3355902⋯.jpg (29.19 KB,680x383,680:383,1513536086815.jpg)

05f746 No.5259 [Open Thread]

Having a million stickies and meta threads was annoying so I claimed the board and cleaned it up a bit. If you have any desires in regards to this board I'd like to hear them; what rules should we have, what settings to change (e.g. should we have images or not?), should we have banners, should we have a dedicated newbie/QTDDTOT thread, what do you think in regards to the board CSS, etc.

In case you encounter a thread that gives 404, you can fix it by logging in at https://sys.8ch.net/mod.php with the username "Anyone" and password "0", and then posting in the thread through mod.php. You can also post in this thread if you want me to fix it.

In case the board goes up for claims or there's an unresolved problem, I'd like to hear about it in this thread first. Since this board is not fast I may not feel the need to log in too often, but that doesn't mean I'm not active here.

--

/prog/ rules:

1. Common sense rules; no spam, stay on the topic of programming, don't bait for more specific rules, etc.

2. Don't start shit about the languages other people use if there's no good reason to, especially if you just plan to shill another language in it's place. You don't need to be a supreme gentleman or avoid arguments but basically don't shit up the board and derail threads needlessly.

3. Meta is only allowed in this thread.

4. Making new threads for your projects is allowed, but don't beg for people to do things for you, this includes "do my homework" type posts.

2 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at

c20c33 No.5311

It would be nice if this place was more active, since the start of this year /tech/ has been filled with /g/-types who can't program and instead shit up the board with consumerist shit.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

9fabca No.5312

>>5311

I feel you. /tech/ was already filled with idiots beforehand, but it's gotten really bad recently. For what it's worth, I'm monitoring this board. Just start a thread about something you want to talk about.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

05f746 No.5436

>>5434

>Can we just get the standard board font here? This is unreadable.

--

Deleted meta thread. Any other opinions on the above? I can change the font to something else or let it be the default if it's annoying. Would a monospace font be interesting?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

a56dc1 No.5439

I find the font easy to read. However, could it be possible to wrap each post around a square or a line that separates from the post above? it would make reading a lot easier.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

05f746 No.5440

>>5439

Sounds straightforward enough, I added a faint line above replies.

8chan is a piece of shit though so the change may not be visible yet.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
Post last edited at



File: ce71e181dd0efc2⋯.png (29.77 KB,600x315,40:21,4130ADA2-3703-4A6F-985A-B7….png)

be7806 No.5417 [Open Thread]

Hi, i am with the Haiku project here.

If you never heard about it: “Haiku is an open-source operating system that specifically targets personal computing. Inspired by the BeOS, Haiku is fast, simple to use, easy to learn and yet very powerful.”

The project have serious lack of manpower, this is why am i here.

Haiku and the HaikuPorts project searching for devs and experts for the following areas:

- CPP developers

- Go port developers

- Python experts

- driver developers

- marketing magicians

- media related developers

- infrastructure operators

- translators

And many more!

Join today!

https://www.haiku-os.org/ and

https://github.com/haikuports/haikuports

Sorry if this unrelated here.

I stay hete to answer your eventually questions.

Thank you guys!

6 posts omitted. Click [Open Thread] to view. ____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1623e6 No.5431

>>5430

Then GNU is not Unix-derived because it is an independent implementation of Unix that wasn't derived from any Unix heritage.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

29bbf3 No.5433

>>5431

"Unix-derived" referred to the design, not the source.

>GNU

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1623e6 No.5437

>>5433

To be Unix means having a lineage from the old versions of Unix which was actually built from the source code. To be Unix-like is to reimplement the Unix system in a clean room implementation.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

29bbf3 No.5438

>>5437

Thanks for lecturing me on what my own words meant, clearly I wouldn't know that myself.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

1623e6 No.5442

>>5438

No worries friend, happy to be of help.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



Delete Post [ ]
[]
[1] [2] [3] [4] [5] [6] [7] [8] [9]
| Catalog | Nerve Center | Random
[ / / / / / / / / / / / / / ] [ r8k / ck / wooo / fit / random / doomer / f1 / foodism / harmony / lathe / lewd / warroom / wtp ]