Programming, computers, etc. [Serious]
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
Awesome! Rubix cubes are wonderful things
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
Ikr. So very fun and relaxing.
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
well...i wouldn't go as far as calling them relaxing...
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Anonymously Famous
- JKL; Assassin
- Posts: 11413
- Joined: Thu Mar 03, 2011 6:52 pm
- Location: Area ???, under Bermuda Triangle
Re: Programming, computers, etc. [Serious]
I'm not sure what I'll make yet. Maybe something small to start out with.
BOTTOM TEXT
Proud poster of the 300kth post in GeneralThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
Make an alphabetizer
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
^^^That would be useful
I still like my hamburger idea...because if im ever hungry....
I still like my hamburger idea...because if im ever hungry....
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
Makes you even hungrier.
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
maybe...but the thought of a hamburger...
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
Makes everyone except vegitarians hungry.
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
that is very true
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
Might give McDonalds that idea.
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
haha make the app and sell it to McDonalds for money
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
I'm doing that.
- THEBOMB12321
- ASDFologist
- Posts: 593
- Joined: Sat Nov 19, 2011 4:21 am
Re: Programming, computers, etc. [Serious]
Good...and send some to me for giving you the idea
Notice: If you notice this notice you will notice that this notice is not worth noticing.
- Anonymously Famous
- JKL; Assassin
- Posts: 11413
- Joined: Thu Mar 03, 2011 6:52 pm
- Location: Area ???, under Bermuda Triangle
Re: Programming, computers, etc. [Serious]
An alphabatizer for Android? I'll see what I can do.
Or I can do one in Python. Then I don't even really need to look anything up.
Or I can do one in Python. Then I don't even really need to look anything up.
BOTTOM TEXT
Proud poster of the 300kth post in GeneralThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
Re: Programming, computers, etc. [Serious]
When I was in elementary school, we were doing a math project that dealt with how truly big the number 1 million is. I programmed our IBM x86 computer in BASIC to print out the numbers from 1 to 1 million on our dot matrix ribbon printer to see how many pages it would take. (The program printed the numbers horizontally to get something like 10 numbers per line.) The printhead overheated and the printer nearly broke and it only got to something like 50,000.
I never programmed anything else ever again.
I never programmed anything else ever again.
- atomtengeralattjaro
- Site Admin
- Posts: 37528
- Joined: Wed May 23, 2007 3:43 pm
- Location: green
- Pronouns: he / they / that submarine
- Contact:
- Anonymously Famous
- JKL; Assassin
- Posts: 11413
- Joined: Thu Mar 03, 2011 6:52 pm
- Location: Area ???, under Bermuda Triangle
Re: Programming, computers, etc. [Serious]
That sounds like quite the experience.
In Python, here's the code to do that (but on the screen, not on a printer)
Edit: It's printing about 100 a second, so it's going to take a while. Maybe I'll force it to quit.
Edit Edit: It wouldn't take long at all for it to go through a loop that didn't print, of course, but displaying things to the console takes some time.
In Python, here's the code to do that (but on the screen, not on a printer)
Code: Select all
for i in range(1, 1000001):
print i
Edit Edit: It wouldn't take long at all for it to go through a loop that didn't print, of course, but displaying things to the console takes some time.
BOTTOM TEXT
Proud poster of the 300kth post in GeneralThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.
- Dreams
- ASDF High Priest
- Posts: 2306
- Joined: Tue Nov 29, 2011 7:04 pm
- Location: STOP STALKING ME! I'M INSECURE!
- Contact:
Re: Programming, computers, etc. [Serious]
I rly need to learn python.
Sigh. 2 languages at the same time.
Sigh. 2 languages at the same time.
- Anonymously Famous
- JKL; Assassin
- Posts: 11413
- Joined: Thu Mar 03, 2011 6:52 pm
- Location: Area ???, under Bermuda Triangle
Re: Programming, computers, etc. [Serious]
When I graduated with my Masters degree in Translation and Localization Management, the staff wanted us to give them a list of the languages we knew, since knowing languages is good for translation.
Here's the list that I submitted, and it appears in the 2011 Alumni directory:
So... I'm going to write a quick alphabetizing program in Python now, and then I'm going to read my Android book. Depending on how far I get, I may write some Android code, too.
Here's the list that I submitted, and it appears in the 2011 Alumni directory:
They never said that they had to be non-computer languages...A: English
B: Spanish
C: C, C++, Java, HTML/CSS/Javascript, PHP, SQL, VB.net, Python
So... I'm going to write a quick alphabetizing program in Python now, and then I'm going to read my Android book. Depending on how far I get, I may write some Android code, too.
BOTTOM TEXT
Proud poster of the 300kth post in GeneralThingerDudes wrote:The only reasonable amount of Nutella is infinity. Everything else is too little.