• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 20:11
CEST 02:11
KST 09:11
  • 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
[ASL20] Ro24 Preview Pt2: Take-Off0[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy9uThermal's 2v2 Tour: $15,000 Main Event18
Community News
Maestros of The Game—$20k event w/ live finals in Paris28Weekly Cups (Aug 11-17): MaxPax triples again!13Weekly Cups (Aug 4-10): MaxPax wins a triple6SC2's Safe House 2 - October 18 & 195Weekly Cups (Jul 28-Aug 3): herO doubles up6
StarCraft 2
General
What mix of new and old maps do you want in the next 1v1 ladder pool? (SC2) : 2v2 & SC: Evo Complete: Weekend Double Feature Geoff 'iNcontroL' Robinson has passed away The GOAT ranking of GOAT rankings RSL Revival patreon money discussion thread
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament Monday Nights Weeklies Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
External Content
Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies Mutation # 485 Death from Below
Brood War
General
No Rain in ASL20? BW General Discussion [ASL20] Ro24 Preview Pt2: Take-Off Flash On His 2010 "God" Form, Mind Games, vs JD BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Ro24 Group B [ASL20] Ro24 Group C BWCL Season 63 Announcement [CSLPRO] It's CSLAN Season! - Last Chance
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates [G] Mineral Boosting Muta micro map competition
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread General RTS Discussion Thread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine The year 2050 European Politico-economics QA Mega-thread
Fan Clubs
INnoVation Fan Club SKT1 Classic Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
High temperatures on bridge(s) Gtx660 graphics card replacement Installation of Windows 10 suck at "just a moment"
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Evil Gacha Games and the…
ffswowsucks
Breaking the Meta: Non-Stand…
TrAiDoS
INDEPENDIENTE LA CTM
XenOsky
[Girl blog} My fema…
artosisisthebest
Sharpening the Filtration…
frozenclaw
ASL S20 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 3609 users

The Big Programming Thread - Page 134

Forum Index > General Forum
Post a Reply
Prev 1 132 133 134 135 136 1031 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.
snively
Profile Blog Joined August 2011
United States1159 Posts
April 24 2012 21:08 GMT
#2661
On April 24 2012 08:43 RoTaNiMoD wrote:
snively:

When you declare variables without pointers in c++, they are indeed analogous to being "chunks of space in memory, in a line". These variables are stored on the stack. However, dynamic arrays, allocated with the new keyword, are stored in the heap. The heap can be viewed as a vast chunk of available memory, whereas the stack is comparatively limited. Compilers handle the details of heap storage differently, but when you declare an array of 120 items, the metadata of that memory is stored somewhere. The new keyword returns a pointer to the start of the array, but the compiler maintains information about how many elements that array contains, such that when you delete[], everything ends up fine and dandy.

For more information, google/wiki stack vs heap memory.


wow.

thanks a lot :D
My religion is Starcraft
mindspike
Profile Blog Joined December 2002
Canada1902 Posts
April 24 2012 21:24 GMT
#2662
On April 12 2012 17:29 Morfildur wrote:

Somehow reading this post made me angry...

Programming is no "get rich fast" scheme, it requires a lot of dedication, hard work and _experience_. Yes, you can become a web designer by copy-pasting a lot of stuff together, a child could do that. However, you will need a lot more time for everything than an experienced programmer, which means in the end you will have to provide your services either for more money than your competitors or work around minimum wage (or below) anyways.



Mark Zuckerberg would beg to differ

Don't take me literally, I'm just saying that its possible to get rich fast - especially if you have other programmers to leech off of.
zerg/human - vancouver, canada
holdthephone
Profile Blog Joined August 2010
United States523 Posts
Last Edited: 2012-04-24 21:39:12
April 24 2012 21:36 GMT
#2663
So I'm wrapping up the design of my first website, and so far it's functional for what it needs to do.It will be a while before I actually launch it, as I still have much to learn, but where to from here? Primarily, for a blog site (say, like Joystiq.com), how would I go about integrating a form submission for new articles, letting me add my new content automatically instead of more or less hardcoding new pages? Does this require database integration?

I'm curious about Comment and message board features as well. I'd rather learn how to do this myself rather than pay extra.
Nick3
Profile Joined March 2011
513 Posts
April 25 2012 07:35 GMT
#2664
On April 25 2012 06:36 holdthephone wrote:
So I'm wrapping up the design of my first website, and so far it's functional for what it needs to do.It will be a while before I actually launch it, as I still have much to learn, but where to from here? Primarily, for a blog site (say, like Joystiq.com), how would I go about integrating a form submission for new articles, letting me add my new content automatically instead of more or less hardcoding new pages? Does this require database integration?

I'm curious about Comment and message board features as well. I'd rather learn how to do this myself rather than pay extra.


Yes you will need a database for storing purposes and some server-side language such as PHP to be able to actually make the site dynamic. It is all very dependent on what you actually want to do, you could probably use JavaScript for the server side part if it isn't to complicated.
Clearout
Profile Blog Joined April 2010
Norway1060 Posts
Last Edited: 2012-04-27 08:07:59
April 27 2012 08:07 GMT
#2665
On March 28 2012 04:54 CecilSunkure wrote:
Show nested quote +
On March 27 2012 10:57 berated- wrote:
On March 27 2012 10:27 teamamerica wrote:
Hey guys, I'm a pretty noob cs guy (2nd year of B.S) but I was wondering what you guys thought of this list of what every cs major should know. It pretty comprehensive and something I'd like to refer to from time to time as a kind of checkoff list of things to learn.


If you know all of those things I doubt there is a company in the world that wouldn't hire you. We ask the people we are trying to hire to have about 1/4 of those requirements and still can't find them.

Pretty interesting. I read the K & R book and luckily I know and have experience with everything there except hash lookups, which I'll be writing this summer for use in projects next term. I'm also solid on the mathematics (take a ton at my college). Also taking multiple years of C++ and doing many large projects from scratch in C++. Have experience writing in Assembly as well, but not a whole lot. Would love to learn more but have to wait until 3rd year where we program an 8-bit microprocessor to run a game on a hand-held device. Going to be so fun! Hopefully I can apply what I learn on a side-project of creating a SNES game. Always been interesting in coding something for the SNES. Also have classes on operating systems and will be creating networking for game projects in C++. Many classes on graphics programming, AI, databases and data structures, there's a machine learning class though it's not on the required course sequence.

Looks like I'm in a good position

https://www.digipen.edu/academics/degree-programs/real-time-interactive-simulation/course-sequence/
https://www.digipen.edu/academics/course-catalog/course-descriptions/computer-science-cs/
I read through that list, and I wonder, is that considered good for 3 years of study? I've always felt I don't learn anything near enough in my computer engineering degree to be properly useful for a company, but reading that list I know most of those, and the others I don't know I will have courses on soon (finishing up my 4th semester now). Though we focus heavily on Java as a language, only some tidbits of SQL, html, xml, assembly and so on. Generally, is whats on that list really that comprehensive and useful?
really?
heroyi
Profile Blog Joined March 2009
United States1064 Posts
April 29 2012 16:16 GMT
#2666
I was wondering if anyone can recommend some good ol textbooks to read that will sufficiently educate me in w.e programming language I wish to learn. A book that has enough knowledge and sufficient enough to make me to have skills to make me competitive in the..."software employment market?"
I was looking for c++, python, and java for starters.

Any specific recommendations?
wat wat in my pants
Anacletus
Profile Blog Joined April 2012
United States733 Posts
April 29 2012 16:20 GMT
#2667
On April 30 2012 01:16 heroyi wrote:
I was wondering if anyone can recommend some good ol textbooks to read that will sufficiently educate me in w.e programming language I wish to learn. A book that has enough knowledge and sufficient enough to make me to have skills to make me competitive in the..."software employment market?"
I was looking for c++, python, and java for starters.

Any specific recommendations?


Check this site out, it has a lot of books that are highly recommended.

http://hn-books.com/

Scroll through until you find books that peak your interests.
http://talk-to-stimey-please.1324083.n2.nabble.com/
heroyi
Profile Blog Joined March 2009
United States1064 Posts
April 29 2012 16:38 GMT
#2668
On April 30 2012 01:20 Anacletus wrote:
Show nested quote +
On April 30 2012 01:16 heroyi wrote:
I was wondering if anyone can recommend some good ol textbooks to read that will sufficiently educate me in w.e programming language I wish to learn. A book that has enough knowledge and sufficient enough to make me to have skills to make me competitive in the..."software employment market?"
I was looking for c++, python, and java for starters.

Any specific recommendations?


Check this site out, it has a lot of books that are highly recommended.

http://hn-books.com/

Scroll through until you find books that peak your interests.

Sweet thanks.

Also (to everyone): Has anyone heard of antiRTFM user on youtube? He does videos on c++ and I was wondering what you guys thought about him?

this is him on doing pointers and arrays
wat wat in my pants
Anacletus
Profile Blog Joined April 2012
United States733 Posts
April 29 2012 16:47 GMT
#2669
On April 30 2012 01:38 heroyi wrote:
Show nested quote +
On April 30 2012 01:20 Anacletus wrote:
On April 30 2012 01:16 heroyi wrote:
I was wondering if anyone can recommend some good ol textbooks to read that will sufficiently educate me in w.e programming language I wish to learn. A book that has enough knowledge and sufficient enough to make me to have skills to make me competitive in the..."software employment market?"
I was looking for c++, python, and java for starters.

Any specific recommendations?


Check this site out, it has a lot of books that are highly recommended.

http://hn-books.com/

Scroll through until you find books that peak your interests.

+ Show Spoiler +
Sweet thanks.

Also (to everyone): Has anyone heard of antiRTFM user on youtube? He does videos on c++ and I was wondering what you guys thought about him?
http://www.youtube.com/watch?v=8nHYYWAA2e8&feature=channel&list=UL
this is him on doing pointers and arrays


I found the video quite boring so I only watched about 4 minutes into it. That being said from what I did see he is correct and informative, he seems to have left out some tangentially related material like passing by reference and other small tidbits, but maybe I wasn't far enough in the video to get to the part that he talks about that. I would recommend experimenting with some of these things yourself to get a better idea of what they do and how they can be useful.
http://talk-to-stimey-please.1324083.n2.nabble.com/
svi
Profile Joined October 2010
405 Posts
Last Edited: 2012-04-29 21:22:28
April 29 2012 21:12 GMT
#2670
what are some good books that teaches you some advanced programming?

i've read a bit (not entirely) of 'introduction to algorithms', 'sicp', 'the c programming language', etc so i pretty much understand the basics of programming, but i wanna dive into making some 'larger' programs, so to speak.

ie programs that don't just spit out a few lines of data, but something like a text editor or a emulator, or w/e that can be used for real world value.
Hinanawi
Profile Blog Joined July 2009
United States2250 Posts
April 29 2012 21:22 GMT
#2671
Hey folks, I'm looking to toy around with an Android web browser RPG (text based). It's not a professional project or anything, I just want to get some coding practice done. The Android app will be written in Java using the Eclipse IDE plugin for Android and I'm plenty familiar with it, but I haven't worked with web servers much.

Does anyone have a suggestion for a good webhost? It doesn't need to be free, but cheap would be nice. I don't need much bandwidth, I just want no ads, and support for MySQL and whatever else I'll need to make a browser RPG (storing unique users and player characters, stats, equipment, dungeons, etc.).
Favorite progamers (in order): Flash, Stork, Violet, Sea. ||| Get better soon, Violet!
powerbygood
Profile Blog Joined December 2008
United States54 Posts
April 30 2012 18:29 GMT
#2672
Hey guys, I am doing my project and I am running into a compiler error I can't seem to fix. My error is 'ofstream' has not been declared, but when I included it in my header file it still gets the same error in the .cpp file.
Kaiwa
Profile Blog Joined August 2010
Netherlands2209 Posts
Last Edited: 2012-04-30 18:34:36
April 30 2012 18:30 GMT
#2673
On May 01 2012 03:29 powerbygood wrote:
Hey guys, I am doing my project and I am running into a compiler error I can't seem to fix. My error is 'ofstream' has not been declared, but when I included it in my header file it still gets the same error in the .cpp file.


Have u included a "using namespace std;" at the top or the std:: prefix? (Making it std::ofstream)
시크릿 / 씨스타 / 에이핑크 / 윤하 / 가비앤제이
powerbygood
Profile Blog Joined December 2008
United States54 Posts
Last Edited: 2012-04-30 19:26:04
April 30 2012 18:56 GMT
#2674
Yes, I did. I am still getting the same error. Been googling and to no avail x.x

edit: solved it. thanks for the help. I made a super newbie mistake
lungic
Profile Joined January 2012
Sweden123 Posts
April 30 2012 19:06 GMT
#2675
@svi.
Not to sound condescending, but advanced programming is in a perfect world the simple stuff on a larger scale. Otherwise someone has fucked up. One usually does.

The best way I've found is to simply decide that this is what I want to do and then do it. If you have a lack of imagination then copy a program and try to remake it better. Start out really simple (think bronze or silver league) and work from there. Just so that you can complete the project and not get fatigued. If you finish early then you can go ahead and rewrite it again properly, using all the lessons you've learned.

If you've got a talent for graphics, go that way. If you're a musician play with sounds. Organizational skills play with a database. Statistics or math, play with that kind a stuff. Just make sure you find it fun. If the time flies by, then you're doing it right.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
April 30 2012 22:53 GMT
#2676
If I were to try to find the best hand in a group of 7 cards, do I need to specifically account for the 2 extra cards?

I'm trying to do this.

Right now I just throw everything into a vector of each suit of size 13 from A to K, and then start comparing the vectors at Straight Flush and working my way down. Is there a difference between having 7 cards and 5 cards this way?
There is no one like you in the universe.
powerbygood
Profile Blog Joined December 2008
United States54 Posts
May 01 2012 00:53 GMT
#2677
Is there anyone here avaible to help? i have a lot of questions to ask. If it's possible through a instant messenger
Abductedonut
Profile Blog Joined December 2010
United States324 Posts
May 01 2012 00:59 GMT
#2678
I can help you if you need help with C/C++/Assembly/Java/General Comp stuff.

I use AIM. Screenname: blackflame121212
Pawsom
Profile Blog Joined February 2009
United States928 Posts
May 01 2012 01:05 GMT
#2679
On May 01 2012 07:53 Blisse wrote:
If I were to try to find the best hand in a group of 7 cards, do I need to specifically account for the 2 extra cards?

I'm trying to do this.

Right now I just throw everything into a vector of each suit of size 13 from A to K, and then start comparing the vectors at Straight Flush and working my way down. Is there a difference between having 7 cards and 5 cards this way?



If you're just referring to poker rules, and not programming, having 7 cards doesn't affect this. You would play the best 5 cards in your hand.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-05-01 01:31:54
May 01 2012 01:31 GMT
#2680
On May 01 2012 10:05 Pawsom wrote:
Show nested quote +
On May 01 2012 07:53 Blisse wrote:
If I were to try to find the best hand in a group of 7 cards, do I need to specifically account for the 2 extra cards?

I'm trying to do this.

Right now I just throw everything into a vector of each suit of size 13 from A to K, and then start comparing the vectors at Straight Flush and working my way down. Is there a difference between having 7 cards and 5 cards this way?



If you're just referring to poker rules, and not programming, having 7 cards doesn't affect this. You would play the best 5 cards in your hand.


I understand Poker rules, but I am unsure of how you would account for 7 choose 5 possibilities of hand combinations without running all those possibilities through a function.
There is no one like you in the universe.
Prev 1 132 133 134 135 136 1031 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
SEL S2 Championship: Ro16
CranKy Ducklings19
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ketroc 25
StarCraft: Brood War
Artosis 979
Shuttle 412
ggaemo 45
NaDa 20
Dota 2
capcasts378
NeuroSwarm98
monkeys_forever42
Counter-Strike
Foxcn365
semphis_24
Heroes of the Storm
Khaldor165
Other Games
tarik_tv25773
gofns14496
summit1g10930
C9.Mang0681
fl0m649
JimRising 492
shahzam481
ViBE187
Maynarde126
Organizations
Other Games
gamesdonequick1376
BasetradeTV73
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota22635
League of Legends
• Doublelift5375
Counter-Strike
• imaqtpie1152
• Shiphtur218
Upcoming Events
Afreeca Starleague
9h 49m
Queen vs HyuN
EffOrt vs Calm
Wardi Open
10h 49m
RotterdaM Event
14h 49m
Replay Cast
23h 49m
Afreeca Starleague
1d 9h
Rush vs TBD
Jaedong vs Mong
WardiTV Summer Champion…
1d 10h
Cure vs Classic
ByuN vs TBD
herO vs TBD
TBD vs NightMare
TBD vs MaxPax
OSC
1d 11h
PiGosaur Monday
1d 23h
Afreeca Starleague
2 days
herO vs TBD
Royal vs Barracks
Replay Cast
2 days
[ Show More ]
The PondCast
3 days
WardiTV Summer Champion…
3 days
Replay Cast
3 days
LiuLi Cup
4 days
MaxPax vs TriGGeR
ByuN vs herO
Cure vs Rogue
Classic vs HeRoMaRinE
Cosmonarchy
4 days
OyAji vs Sziky
Sziky vs WolFix
WolFix vs OyAji
BSL Team Wars
4 days
Team Hawk vs Team Dewalt
BSL Team Wars
4 days
Team Hawk vs Team Bonyth
SC Evo League
5 days
TaeJa vs Cure
Rogue vs threepoint
ByuN vs Creator
MaNa vs Classic
[BSL 2025] Weekly
5 days
SC Evo League
6 days
BSL Team Wars
6 days
Team Bonyth vs Team Sziky
BSL Team Wars
6 days
Team Dewalt vs Team Sziky
Liquipedia Results

Completed

CSLAN 3
uThermal 2v2 Main Event
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL Season 18: Qualifier 1
Acropolis #4 - TS1
SEL Season 2 Championship
WardiTV Summer 2025
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

CSL Season 18: Qualifier 2
CSL 2025 AUTUMN (S18)
LASL Season 20
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
RSL Revival: Season 2
Maestros of the Game
EC S1
Sisters' Call Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
Roobet Cup 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
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...

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.