• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:27
CET 11:27
KST 19:27
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
2026 KongFu Cup Announcement3BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains15Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18
StarCraft 2
General
BGE Stara Zagora 2026 cancelled Blizzard Classic Cup - Tastosis announced as captains BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement
Tourneys
RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament 2026 KongFu Cup Announcement [GSL CK] Team Maru vs. Team herO
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ BSL 22 Map Contest — Submissions OPEN to March 10 ASL21 General Discussion Are you ready for ASL 21? Hype VIDEO Gypsy to Korea
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2536 users

The Big Programming Thread - Page 277

Forum Index > General Forum
Post a Reply
Prev 1 275 276 277 278 279 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 22 2013 21:55 GMT
#5521
On March 23 2013 06:13 Holy_AT wrote:
Show nested quote +
On March 23 2013 06:11 heishe wrote:
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.


Just wait until you learn a functional language.


I'd skip them and start directly with OO


Big mistake.

Functional languages (not to be confused with procedural languages) can teach you a lot and can change the way you program even in OO languages.
Ilintar
Profile Joined October 2002
Poland794 Posts
March 22 2013 22:10 GMT
#5522
On March 23 2013 06:55 Morfildur wrote:
Big mistake.

Functional languages (not to be confused with procedural languages) can teach you a lot and can change the way you program even in OO languages.


Yes, but functional languages rely on pretty difficult logical principles that not everyone needs to understand in order to do decent OO programming.

I mean, I wrote my MSc's coding part in Ocaml, but it's not like I'd force every programmer to learn Haskell before Java. Probably only a very narrow subset of programmers actually need to learn functional programming.
Former webmaster @ WGTour.com / BWLauncher developer
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
March 22 2013 22:10 GMT
#5523
That is not a mistake, it's okay.

He will learn right from the bat to think how to solve problems with OO, and that's a good thing. Learning new paradigms is important though, it will give you different ways to think how to solve a specific problem.

But yea, learning functional languages (or at least get in touch with them) is very important. (Scheme syntax (is a (pain in the ass)) though)
"When the geyser died, a probe came out" - SirJolt
Ilintar
Profile Joined October 2002
Poland794 Posts
March 22 2013 22:22 GMT
#5524
On March 23 2013 07:10 fabiano wrote:
That is not a mistake, it's okay.

He will learn right from the bat to think how to solve problems with OO, and that's a good thing. Learning new paradigms is important though, it will give you different ways to think how to solve a specific problem.

But yea, learning functional languages (or at least get in touch with them) is very important. (Scheme syntax (is a (pain in the ass)) though)


This reminds me of a running joke back in my programming fundamentals course (we had an experimental course teaching us fundamentals in Scheme, the other group had C), goes something like this:

+ Show Spoiler +
A hacker manages to break into the Pentagon and modify the page to display a big lambda. The FBI are unable to catch him, but stumble onto one of his mailboxes, so they decide to play nice and ask him to disclose the exploit. The hacker says that he cannot do that, but he can send them the last 500 characters of the exploit code, written in Scheme. The FBI agrees, then he sends them the code...

... 500 closing parentheses.


(obviously one of those jokes that's only funny if you've been doing nothing but programming in Scheme for the past year)
Former webmaster @ WGTour.com / BWLauncher developer
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
March 22 2013 22:30 GMT
#5525
You'll be learning basic logic structures for a while before you even understand what styles and organizational paradigms mean beyond buzzwords being argued over all over the intertubes. Hell, if you want to, create your own paradigm better than the alternatives!

This comment generated by an AbstractWindowFactorySingletonFactorySingletonCommentFactory.
Any sufficiently advanced technology is indistinguishable from magic
Athos
Profile Blog Joined February 2008
United States2484 Posts
Last Edited: 2013-03-23 18:13:58
March 23 2013 00:44 GMT
#5526
On March 23 2013 07:22 Ilintar wrote:
Show nested quote +
On March 23 2013 07:10 fabiano wrote:
That is not a mistake, it's okay.

He will learn right from the bat to think how to solve problems with OO, and that's a good thing. Learning new paradigms is important though, it will give you different ways to think how to solve a specific problem.

But yea, learning functional languages (or at least get in touch with them) is very important. (Scheme syntax (is a (pain in the ass)) though)


This reminds me of a running joke back in my programming fundamentals course (we had an experimental course teaching us fundamentals in Scheme, the other group had C), goes something like this:

+ Show Spoiler +
A hacker manages to break into the Pentagon and modify the page to display a big lambda. The FBI are unable to catch him, but stumble onto one of his mailboxes, so they decide to play nice and ask him to disclose the exploit. The hacker says that he cannot do that, but he can send them the last 500 characters of the exploit code, written in Scheme. The FBI agrees, then he sends them the code...

... 500 closing parentheses.


(obviously one of those jokes that's only funny if you've been doing nothing but programming in Scheme for the past year)


This is a great joke. I'm learning scheme from SICP now and it really does change the way you think about programming. Definitely shouldn't be an intro level class though.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
March 23 2013 19:08 GMT
#5527
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.

Project Euler really experienced this explosion in popularity recently.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Frigo
Profile Joined August 2009
Hungary1023 Posts
March 24 2013 00:24 GMT
#5528
On March 23 2013 06:09 Recognizable wrote:
Man. I just had a very weird experienced. I'm new to programming and I was doing this exercise on Euler and as I got stuck I sat back and looked at my code. Then it hit me. My variable names actually have meaning as in, they have meaning in the English language. When I program they lose all the meaning they had beforehand, the variable names will have become a number or a string. I can have a variable named: "Hello" and during my programming my brain doesn't register its meaning as "Hello" because it has become something entirely different. Made me question meaning, my life and everything for a moment. Then I got mad because my code wouldn't work.


Be sure to name your variables and functions in a way that reflects their meaning

Also get familiar with the concept of unit testing and Test Driven Development, Clean Code is an excellent starting point, it changes everyone's perspective on programming.
http://www.fimfiction.net/user/Treasure_Chest
Moxi
Profile Blog Joined December 2010
708 Posts
March 24 2013 23:41 GMT
#5529
Hey Teamliquid users. I must ask, I want to learn before I go to sleep than just listen to music. Is there a way to listen to some kind of programming person who explains how different things work. Like how to create a database of members and how to make it secure? Would be very nice!
phar
Profile Joined August 2011
United States1080 Posts
March 25 2013 00:41 GMT
#5530
you could probably find lectures online. There's a large swath of online courses with free lectures (coursera, khan academy, etc... and also straight from Unis - MIT, stanford, etc).
Who after all is today speaking about the destruction of the Armenians?
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
March 25 2013 00:44 GMT
#5531
On March 25 2013 08:41 Moxi wrote:
Hey Teamliquid users. I must ask, I want to learn before I go to sleep than just listen to music. Is there a way to listen to some kind of programming person who explains how different things work. Like how to create a database of members and how to make it secure? Would be very nice!

If it were me I'd just google both topics.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Fyodor
Profile Blog Joined September 2010
Canada971 Posts
March 25 2013 01:10 GMT
#5532
On March 25 2013 08:41 Moxi wrote:
Hey Teamliquid users. I must ask, I want to learn before I go to sleep than just listen to music. Is there a way to listen to some kind of programming person who explains how different things work. Like how to create a database of members and how to make it secure? Would be very nice!

Programming stuff is hard to follow without visual aids.

otherwise there's database lectures on coursera. best bet I think.
llllllllllllllllllllllllllllllllllllllllllll
kollin
Profile Blog Joined March 2011
United Kingdom8380 Posts
March 28 2013 13:17 GMT
#5533
I'm pretty new to programming, and I'm currently in the process of learning C through the use of various online guides. I was wondering, is there any resource out there that has a good collection of challenges so I can make sure I understand each concept I learn before I move on?
DertoQq
Profile Joined October 2010
France906 Posts
March 28 2013 13:21 GMT
#5534
On March 28 2013 22:17 kollin wrote:
I'm pretty new to programming, and I'm currently in the process of learning C through the use of various online guides. I was wondering, is there any resource out there that has a good collection of challenges so I can make sure I understand each concept I learn before I move on?


My advice would be to start doing a "big" but simple project, and everytime you learn something new you can find a way to use it in your project.
"i've made some empty promises in my life, but hands down that was the most generous" - Michael Scott
Abominous
Profile Joined March 2013
Croatia1625 Posts
Last Edited: 2013-03-28 13:48:06
March 28 2013 13:45 GMT
#5535
Anyone studying Machine Learning and Data Mining in Aalto university or have some feedback? I'm looking to going there for my Masters in 2 years time. On my second year or bachelor studies, computer science.

Taking many courses on coursera and hoping to have 90%+ on most of them, which might help my CV and up my first year grades which were terrible, but now that second year has come, with more programming related subjects, I upped the ante.
(Judge yourself if the phrase was correctly used )

Anyways, thanks in advance.

EDIT: Any info on abroad Masters in the field of Computer science is relevant. I'm totally clueless as to the whole applying, evaluation, housing and was hoping to learn it by asking around and taking things one step at a time...
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-03-28 17:27:41
March 28 2013 17:27 GMT
#5536
By code convention, the correct try-catch should look like:


try {
statements;
} catch (ExceptionClass e) {
statements
}


However, I think this is more readable:


try {
statements;
}
catch (ExceptionClass e) {
statements
}


Sure, they may want to emphasise that catch is "part of" try{}, but it looks better if it's on a new line imho. Comments?

Source: http://www.oracle.com/technetwork/java/codeconventions-150003.pdf (7.9)
tofucake
Profile Blog Joined October 2009
Hyrule19194 Posts
March 28 2013 17:37 GMT
#5537
The first way is proper

The way you prefer is the root of all evil
Liquipediaasante sana squash banana
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2013-03-28 17:43:53
March 28 2013 17:43 GMT
#5538
On March 29 2013 02:37 tofucake wrote:
The first way is proper

The way you prefer is the root of all evil

Indeed. Plus, it looks ugly :D
zeru
Profile Blog Joined September 2010
8156 Posts
March 28 2013 17:45 GMT
#5539
--- Nuked ---
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 28 2013 17:53 GMT
#5540
On March 29 2013 02:37 tofucake wrote:
The first way is proper

The way you prefer is the root of all evil


Erm, what's so evil? You're just trying to copy a popular phrase.
Prev 1 275 276 277 278 279 1032 Next
Please log in or register to reply.
Live Events Refresh
RSL Revival
10:00
Season 4: Group D
ByuN vs SHIN
Maru vs Krystianer
Tasteless828
IndyStarCraft 113
Rex62
LiquipediaDiscussion
Sparkling Tuna Cup
10:00
Weekly #123
CranKy Ducklings39
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Tasteless 828
IndyStarCraft 113
Rex 62
StarCraft: Brood War
Sea 41666
Calm 12681
Horang2 1652
GuemChi 1599
BeSt 775
actioN 468
Jaedong 364
Soma 240
sorry 102
EffOrt 99
[ Show more ]
Last 87
ToSsGirL 81
Mini 71
Hm[arnc] 60
Rush 58
Backho 46
ZerO 45
Barracks 41
NaDa 38
JulyZerg 33
IntoTheRainbow 31
GoRush 24
HiyA 21
ivOry 14
SilentControl 8
Dota 2
XaKoH 520
Gorgc221
League of Legends
JimRising 490
Counter-Strike
zeus259
Super Smash Bros
Mew2King108
Heroes of the Storm
Khaldor254
MindelVK13
Other Games
Fuzer 124
ZerO(Twitch)9
Organizations
Dota 2
PGL Dota 2 - Main Stream22367
Other Games
gamesdonequick812
ComeBackTV 298
StarCraft: Brood War
lovetv 19
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• LUISG 61
• 3DClanTV 59
• CranKy Ducklings SOOP2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1849
Upcoming Events
WardiTV Team League
1h 33m
Patches Events
6h 33m
BSL
9h 33m
GSL
21h 33m
Wardi Open
1d 1h
Monday Night Weeklies
1d 6h
WardiTV Team League
2 days
PiGosaur Cup
2 days
Kung Fu Cup
3 days
OSC
3 days
[ Show More ]
The PondCast
3 days
KCM Race Survival
3 days
WardiTV Team League
4 days
Replay Cast
4 days
KCM Race Survival
4 days
WardiTV Team League
5 days
Korean StarCraft League
5 days
uThermal 2v2 Circuit
6 days
BSL
6 days
Liquipedia Results

Completed

Proleague 2026-03-13
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Disclosure: This page contains affiliate marketing links that support TLnet.

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.