Donations to the archive would be appreciated to help fund our server hardware & storage drives. We are looking for developers to help build new software and archives, discuss here.

Threads by latest ghost replies - Page 140

No.88288579 View ViewReplyOriginalReport
how do you find the motivation to code everyday?
43 posts and 10 images omitted

No.88292554 View ViewReplyOriginalReport
Why is /g/ so transphobic?
4 posts and 2 images omitted

No.88231474 View ViewReplyLast 50OriginalReport
The last bastion of the free internet
88 posts and 13 images omitted

gpg thread

No.86518983 View ViewReplyLast 50OriginalReport
This is a thread to test out your gpg encryption, especially if want to learn or are new to this to make sure you are doing everything right.

Here are some useful commands to get started:

Create new key:
gpg --full-generate-key
Delete public key:
gpg --delete-keys [name/fingerprint]
Delete private key:
gpg --delete-secret-keys [name/fingerprint]
Delete private and public key:
gpg --delete-secret-and-public-keys [name/fingerprint]

List private keys:
gpg -K
List public keys:
gpg -k

Export key to file:
gpg --armor --export [name/fingerprint] > [file].asc
Import key from file:
gpg --import [file].asc

Encrypt a file:
gpg --encrypt --armor --recipient [recipient name/fingerprint] [file]
Decrypt a file:
gpg --decrypt [file]

Verify signature:
gpg --verify [file].asc

Edit key:
gpg --edit-key [name/fingerprint]
Change passphrase:
gpg --passwd [name/fingerprint]

Here's my public key if you want to test it out:
https://pastebin.com/raw/3rXnC22L
268 posts and 28 images omitted

Mac Support Dropped.

No.88271954 View ViewReplyOriginalReport
1 post and 1 image omitted

No.76315220 View ViewReplyOriginalReport
thinking of making an interactive text adventure and posting it to github. does anyone here enjoy interactive text adventures?
13 posts omitted

No.82109806 View ViewReplyOriginalReport
I wrote my first interactive program in Pyton today! It's a text adventure and took me a couple days.

Programming is fun!
40 posts and 9 images omitted

No.68797262 View ViewReplyOriginalReport
I'm involved in a research project at university to create a programming language designed for women. One of the problems with women entering the field is that programming languages today are all designed around how men think. Our research involves taking existing programs, asking women what they think it does, and find ways to make it more clear to women's way of thinking. We started with the Python language since it's considered easy for beginners. Participants in the study were in the 14-20 age group with no previous programming experience.

The first thing we noticed was that the print function was confusing. Participants were turning on the printers and waiting for the paper to come out with text on it. We found that changing the vocabulary to something they were more familiar with greatly helped. Well over 90% identified the verb "tweet" as the sending of text, eliminating the confusion about the print function.

Before: print("Hello World!")
After: tweet "Hello World!"

Variables were the next challenge. Participants were confused about how the first and second lines were related in the following program. Many believed the program would simply print "x" to the terminal and wondered why the first line was there.
x = 5
tweet x

Despite being slightly more verbose, adding additional keywords proved more helpful. First, we added the "pretend" keyword and we changed the equal sign to "is".
pretend x is 5
tweet x
9 posts and 1 image omitted

The worst programming language

No.65833111 View ViewReplyLast 50OriginalReport
Is there a worst language than LSL ?
74 posts and 11 images omitted

No.88251908 View ViewReplyOriginalReport
real talk. how can you not get hard from this? they will call you a pedophile for liking this
5 posts and 2 images omitted