• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 14:31
CET 20:31
KST 04:31
  • 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
Intel X Team Liquid Seoul event: Showmatches and Meet the Pros9[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3
Community News
Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win62025 RSL Offline Finals Dates + Ticket Sales!10BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION3Crank Gathers Season 2: SC II Pro Teams12Merivale 8 Open - LAN - Stellar Fest5
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win Weekly Cups (Oct 13-19): Clem Goes for Four DreamHack Open 2013 revealed Intel X Team Liquid Seoul event: Showmatches and Meet the Pros
Tourneys
Crank Gathers Season 2: SC II Pro Teams Merivale 8 Open - LAN - Stellar Fest SC4ALL $6,000 Open LAN in Philadelphia Kirktown Chat Brawl #9 $50 8:30PM EST 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
What's going on with b.net? Map pack for 3v3/4v4/FFA games BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion Ladder Map Matchup Stats
Tourneys
BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION [ASL20] Grand Finals Small VOD Thread 2.0 The Casual Games of the Week Thread
Strategy
How to stay on top of macro? PvZ map balance Current Meta Soma's 9 hatch build from ASL Game 2
Other Games
General Games
General RTS Discussion Thread Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread The Perfect Game
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Canadian Politics Mega-thread The Big Programming Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion 2024 - 2026 Football Thread NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Challenge: Maths isn't all…
Hildegard
more word salad -- pay no h…
Peanutsc
Career Paths and Skills for …
TrAiDoS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1778 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
Hyrule19150 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
BSL 21
19:00
Open Quali #4
LiquipediaDiscussion
SC4ALL
15:00
Day 2
Artosis973
LiquipediaDiscussion
SC4ALL
15:00
SC4ALL - Day 2
TriGGeR vs Mixu
Percival vs TBD
RotterdaM1020
ComeBackTV 697
IndyStarCraft 208
CranKy Ducklings148
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 1020
IndyStarCraft 208
BRAT_OK 49
JuggernautJason42
Railgan 30
MindelVK 13
StarCraft: Brood War
ZZZero.O 63
Dota 2
qojqva3593
Fuzer 322
Counter-Strike
fl0m1177
byalli428
Heroes of the Storm
Khaldor261
Liquid`Hasu231
Other Games
Artosis973
B2W.Neo853
Beastyqt747
mouzStarbuck186
Grubby155
QueenE86
Organizations
Other Games
gamesdonequick1766
Counter-Strike
PGL423
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• StrangeGG 40
• Adnapsc2 20
• Legendk 2
• Kozan
• Migwel
• AfreecaTV YouTube
• intothetv
• sooper7s
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Azhi_Dahaki23
• HerbMon 15
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• Ler102
Other Games
• imaqtpie1466
• WagamamaTV366
• Shiphtur272
Upcoming Events
Replay Cast
13h 29m
Wardi Open
16h 29m
Monday Night Weeklies
21h 29m
Replay Cast
1d 3h
Sparkling Tuna Cup
1d 14h
WardiTV Korean Royale
1d 16h
LAN Event
1d 19h
Replay Cast
2 days
WardiTV Korean Royale
2 days
LAN Event
2 days
[ Show More ]
OSC
3 days
The PondCast
3 days
LAN Event
3 days
Replay Cast
4 days
LAN Event
4 days
Korean StarCraft League
5 days
CranKy Ducklings
5 days
WardiTV Korean Royale
5 days
LAN Event
5 days
IPSL
5 days
dxtr13 vs OldBoy
Napoleon vs Doodle
Replay Cast
6 days
Sparkling Tuna Cup
6 days
WardiTV Korean Royale
6 days
LAN Event
6 days
IPSL
6 days
JDConan vs WIZARD
WolFix vs Cross
Liquipedia Results

Completed

CSL 2025 AUTUMN (S18)
CranK Gathers Season 2: SC II Pro Teams
Eternal Conflict S1

Ongoing

BSL 21 Points
BSL 21 Team A
C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
SC4ALL: Brood War
SC4ALL: StarCraft II
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025

Upcoming

YSL S2
BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
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 © 2025 TLnet. All Rights Reserved.