• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:07
CEST 03:07
KST 10:07
  • 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
[ASL19] Finals Recap: Standing Tall10HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Weekly Cups (June 30 - July 6): Classic Doubles2[BSL20] Non-Korean Championship 4x BSL + 4x China9Flash Announces Hiatus From ASL66Weekly Cups (June 23-29): Reynor in world title form?14FEL Cracov 2025 (July 27) - $8000 live event22
StarCraft 2
General
The GOAT ranking of GOAT rankings The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? Weekly Cups (June 30 - July 6): Classic Doubles Program: SC2 / XSplit / OBS Scene Switcher
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL20 Preliminary Maps [ASL19] Finals Recap: Standing Tall SC uni coach streams logging into betting site Flash Announces Hiatus From ASL
Tourneys
[BSL20] Non-Korean Championship 4x BSL + 4x China [BSL20] Grand Finals - Sunday 20:00 CET CSL Xiamen International Invitational The Casual Games of the Week Thread
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Path of Exile What do you want from future RTS games? Beyond All Reason
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
US Politics Mega-thread Summer Games Done Quick 2025! Russo-Ukrainian War Thread Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2024!
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 704 users

The Big Programming Thread - Page 57

Forum Index > General Forum
Post a Reply
Prev 1 55 56 57 58 59 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.
Kambing
Profile Joined May 2010
United States1176 Posts
May 30 2011 15:33 GMT
#1121
On May 30 2011 20:09 Tili_us wrote:
Hey guys, I love C++, but I can't ignore the handy stuff that C# gives.

Is there stuff like reflection c++? (maybe in the new version?)

Also, I've being working with Unity3D, and they use Coroutines using the yield command. Is this available in normal C# too ? (or even c++?)


C++ allows you to inspect the type of objects at runtime with typeid. However, this is all you can do with C++ without resorting to other machinery. In particular, you can't natively inspect methods and fields of a C++ class like you can with C# at runtime. See this stackoverflow Q&A for some of the available options if you need this sort of functionality.

C# supports yield in the context of iterator blocks which you can use to develop co-routine like behavior. In C++, there is no innate language support for coroutines but they can be built into a library without much problem. You can check out yet another stack overflow post for more information (in particular, links to boost.coroutine which you can use).
RoTaNiMoD
Profile Blog Joined January 2004
United States558 Posts
Last Edited: 2011-05-30 15:42:20
May 30 2011 15:42 GMT
#1122
C++ is where my heart's at, but that didn't stop me from applying for a PHP Developer position. Nor did it stop me from getting it! Woot!

First real job, what up bitchezzz.
VIB
Profile Blog Joined November 2007
Brazil3567 Posts
May 30 2011 15:56 GMT
#1123
On May 31 2011 00:42 RoTaNiMoD wrote:
C++ is where my heart's at, but that didn't stop me from applying for a PHP Developer position. Nor did it stop me from getting it! Woot!

First real job, what up bitchezzz.
How can you call working as a PHP dev as a real job?

+ Show Spoiler +
lol jk, grats on your job man, and good luck
Great people talk about ideas. Average people talk about things. Small people talk about other people.
xarthaz
Profile Blog Joined August 2010
1704 Posts
May 30 2011 15:57 GMT
#1124
On May 31 2011 00:33 Kambing wrote:
Show nested quote +
On May 30 2011 20:09 Tili_us wrote:
Hey guys, I love C++, but I can't ignore the handy stuff that C# gives.

Is there stuff like reflection c++? (maybe in the new version?)

Also, I've being working with Unity3D, and they use Coroutines using the yield command. Is this available in normal C# too ? (or even c++?)


C++ allows you to inspect the type of objects at runtime with typeid. However, this is all you can do with C++ without resorting to other machinery. In particular, you can't natively inspect methods and fields of a C++ class like you can with C# at runtime. See this stackoverflow Q&A for some of the available options if you need this sort of functionality.

C# supports yield in the context of iterator blocks which you can use to develop co-routine like behavior. In C++, there is no innate language support for coroutines but they can be built into a library without much problem. You can check out yet another stack overflow post for more information (in particular, links to boost.coroutine which you can use).

IMO C++ is kind of obsolete - at least on the windows platform. Basically it has no advantages over C# if youre gonna use the .net environment, just takes more developer time to do things.
Aah thats the stuff..
RoTaNiMoD
Profile Blog Joined January 2004
United States558 Posts
May 30 2011 16:04 GMT
#1125
On May 31 2011 00:56 VIB wrote:
Show nested quote +
On May 31 2011 00:42 RoTaNiMoD wrote:
C++ is where my heart's at, but that didn't stop me from applying for a PHP Developer position. Nor did it stop me from getting it! Woot!

First real job, what up bitchezzz.
How can you call working as a PHP dev as a real job?

+ Show Spoiler +
lol jk, grats on your job man, and good luck


Hah! I kind of agree with you; I mean like I said, C++ is my bread and butter. My company's sweet though and their PHP codebase is mature and very object-oriented, so it's still pretty neat. Plus, to be honest, I was at a point where I probably would've taken an "HTML Developer" position -- money may have been a factor.
Kambing
Profile Joined May 2010
United States1176 Posts
Last Edited: 2011-05-30 18:02:25
May 30 2011 18:00 GMT
#1126
On May 31 2011 00:57 xarthaz wrote:
Show nested quote +
On May 31 2011 00:33 Kambing wrote:
On May 30 2011 20:09 Tili_us wrote:
Hey guys, I love C++, but I can't ignore the handy stuff that C# gives.

Is there stuff like reflection c++? (maybe in the new version?)

Also, I've being working with Unity3D, and they use Coroutines using the yield command. Is this available in normal C# too ? (or even c++?)


C++ allows you to inspect the type of objects at runtime with typeid. However, this is all you can do with C++ without resorting to other machinery. In particular, you can't natively inspect methods and fields of a C++ class like you can with C# at runtime. See this stackoverflow Q&A for some of the available options if you need this sort of functionality.

C# supports yield in the context of iterator blocks which you can use to develop co-routine like behavior. In C++, there is no innate language support for coroutines but they can be built into a library without much problem. You can check out yet another stack overflow post for more information (in particular, links to boost.coroutine which you can use).

IMO C++ is kind of obsolete - at least on the windows platform. Basically it has no advantages over C# if youre gonna use the .net environment, just takes more developer time to do things.


Actually, C++ on Windows is seeing a resurgence of importance that has been brewing since Visual Studio 2008 (e.g., see this zdnet piece on the recent stb re-org and visualc re-branding). There's a clearer distinction now by Microsoft to use C++ for full-fledged desktop apps and .NET for lob and mobile apps.

As for why you would use C++ over C#, there are a variety of reasons including legacy, performance, and interoperability. Many of these reasons are why the developer base has stuck with C++ over the last decade while Microsoft tried to push .NET as the way to do all development on Windows.

(And oddly enough, the resurgence of the importance of C++ isn't just on Windows. Apple is putting a lot of effort into LLVM and it's companion C/C++/Objective-C front-end, Clang, to facilitate native OS X development.)
Tili_us
Profile Joined July 2010
Belgium44 Posts
Last Edited: 2011-05-30 22:36:06
May 30 2011 22:34 GMT
#1127
I really like both languages to be honest. To do get some results as fast as possible I use C#.
But I love C++ when I need to take control.

I honestly don't get all the hate C++ is getting versus C#. Every time this discussion starts is about the JIT compiler stuff for C# and how its faster than C++ (in some cases), etc ... But there is still too much happening behind the scenes with C# that bothers me as a C++ developer.

I for one, really don't like structs is C#, they are just silly. I know why they made them value types, to make sure nothing iffy happens. But why is it then that when you know what you are doing in C++ it's no problem at all to pass these structs by const ref. It's just silly to keep copying them each time you pass them to a function. I'm sure Sutter wrote about this ... "gratuitous pessimization" it was called.

/rant
FinestHour
Profile Joined August 2010
United States18466 Posts
Last Edited: 2011-06-01 03:21:33
June 01 2011 03:19 GMT
#1128
Anyone know anything about Huffman coding? Like a general breakdown of it or anything. My friend is having a hard time with HW and maybe theres someone here I could refer them to
thug life.                                                       MVP/ex-
GrapeD
Profile Blog Joined August 2010
Canada679 Posts
June 01 2011 03:22 GMT
#1129
So yeah my computer science class wrote the Iversons exam today. Did any other alberta highschool people write that?
Some people hurt people. I defenestrate those people.
mafiameower
Profile Blog Joined May 2011
United States61 Posts
June 01 2011 03:24 GMT
#1130
Hey everyone, I would like a tutorial place to go for Net beans begging to intermediate. Thanks and sorry if I broke a rule, Pretty sure I didn't :D
Youtube.com/mafiameower
RoTaNiMoD
Profile Blog Joined January 2004
United States558 Posts
June 01 2011 03:29 GMT
#1131
On June 01 2011 12:19 FinestHour wrote:
Anyone know anything about Huffman coding? Like a general breakdown of it or anything. My friend is having a hard time with HW and maybe theres someone here I could refer them to


This looks helpful:
and


Though if your friend knows of this website called "google" he's probably already come across them. There's a wealth of information out there that I can see. What's his problem with Huffman coding?
xHassassin
Profile Joined November 2010
United States270 Posts
June 01 2011 03:30 GMT
#1132
Anyone here have experience with Apache POI for java?

I'm having a few problems with formatting and other small bugs.
omG.[RaYnE]
Profile Joined October 2007
Philippines100 Posts
June 01 2011 07:36 GMT
#1133
is anyone here has an experiece in xml and php? cause I've been trying to layout all the data of the xml file, been doing this 3 days straight now(18hrs/day) and no effin improvement and it's due is on friday 9AM +8 GMT or my wife and kids would be stoned
omG.[RaYnE] ---> rayne_ph :D
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
June 01 2011 07:39 GMT
#1134
On June 01 2011 16:36 omG.[RaYnE] wrote:
is anyone here has an experiece in xml and php? cause I've been trying to layout all the data of the xml file, been doing this 3 days straight now(18hrs/day) and no effin improvement and it's due is on friday 9AM +8 GMT or my wife and kids would be stoned


You should give information about:
- How the input looks like
- How the output should look like
- The code you currently have (minus unrelated parts)
- The current output

Then we might help you.

Usually parsing XML is as simple as using any of the many XML parsers out there...
Cambium
Profile Blog Joined June 2004
United States16368 Posts
June 01 2011 07:41 GMT
#1135
On June 01 2011 16:36 omG.[RaYnE] wrote:
is anyone here has an experiece in xml and php? cause I've been trying to layout all the data of the xml file, been doing this 3 days straight now(18hrs/day) and no effin improvement and it's due is on friday 9AM +8 GMT or my wife and kids would be stoned

xpath is probably what you are looking for
When you want something, all the universe conspires in helping you to achieve it.
omG.[RaYnE]
Profile Joined October 2007
Philippines100 Posts
June 01 2011 07:48 GMT
#1136
Here's the xml file:
http://www.mediafire.com/?et069f43vzzwssx

..I didn't include my own coding of showing the data cause it effed up
-i did try xpath but with my lil ol brains couldn't handle to make it work
omG.[RaYnE] ---> rayne_ph :D
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
June 01 2011 07:52 GMT
#1137
On June 01 2011 16:48 omG.[RaYnE] wrote:
Here's the xml file:
http://www.mediafire.com/?et069f43vzzwssx

..I didn't include my own coding of showing the data cause it effed up
-i did try xpath but with my lil ol brains couldn't handle to make it work


It's very simple XML, so you can simply use a parser like simplexml:

PHP Manual SimpleXML

The example should give enough information.
omG.[RaYnE]
Profile Joined October 2007
Philippines100 Posts
June 01 2011 08:02 GMT
#1138
I did try that too, I know it's a lot to ask but can you show me an example code showing all the data that are listed in the xml file? I would really appreciate it
omG.[RaYnE] ---> rayne_ph :D
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
Last Edited: 2011-06-01 08:13:08
June 01 2011 08:12 GMT
#1139
On June 01 2011 17:02 omG.[RaYnE] wrote:
I did try that too, I know it's a lot to ask but can you show me an example code showing all the data that are listed in the xml file? I would really appreciate it


Sorry, i don't do "gimme teh codez". If you can't get from the examples to a working solution, you should get another job. It's not even namespace stuff or anything complicated.

Another (untested) example:

$xml = new SimpleXMLElement('YourXmlFile.xml', null, true);
foreach ($xml->xpath('//Sport') as $sport)
{
foreach ($sport->xpath('/Texts/Text') as $text)
{
echo $text['Language'] . ':' . $text->Value . "\n";
}
}
omG.[RaYnE]
Profile Joined October 2007
Philippines100 Posts
June 01 2011 08:40 GMT
#1140
well that didn't work, thanks for the help though...ot's time for me to die now
omG.[RaYnE] ---> rayne_ph :D
Prev 1 55 56 57 58 59 1031 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
00:00
Korean StarCraft League #77
CranKy Ducklings119
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft417
Livibee 121
ProTech67
RuFF_SC2 40
Vindicta 14
StarCraft: Brood War
MaD[AoV]34
Bale 25
Icarus 4
Dota 2
monkeys_forever369
NeuroSwarm116
League of Legends
JimRising 609
Counter-Strike
summit1g10964
tarik_tv5145
taco 505
Super Smash Bros
Mew2King179
Other Games
shahzam891
Maynarde150
ToD96
JuggernautJason95
Day[9].tv82
Organizations
Other Games
gamesdonequick49546
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 22 non-featured ]
StarCraft 2
• HeavenSC 26
• davetesta25
• Berry_CruncH23
• Mapu3
• Kozan
• sooper7s
• Migwel
• AfreecaTV YouTube
• LaughNgamezSOOP
• intothetv
• IndyKCrew
StarCraft: Brood War
• Pr0nogo 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota2583
League of Legends
• Jankos1463
• TFBlade511
• Stunt233
Other Games
• Scarra1481
• WagamamaTV189
• Day9tv82
Upcoming Events
Sparkling Tuna Cup
8h 53m
WardiTV European League
14h 53m
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
22h 53m
The PondCast
1d 8h
WardiTV European League
1d 10h
Jumy vs NightPhoenix
Percival vs Nicoract
ArT vs HiGhDrA
MaxPax vs Harstem
Scarlett vs Shameless
SKillous vs uThermal
uThermal 2v2 Circuit
1d 14h
Replay Cast
1d 22h
RSL Revival
2 days
ByuN vs SHIN
Clem vs Reynor
Replay Cast
2 days
RSL Revival
3 days
Classic vs Cure
[ Show More ]
FEL
3 days
RSL Revival
4 days
FEL
4 days
FEL
4 days
CSO Cup
4 days
BSL20 Non-Korean Champi…
4 days
Bonyth vs QiaoGege
Dewalt vs Fengzi
Hawk vs Zhanhun
Sziky vs Mihu
Mihu vs QiaoGege
Zhanhun vs Sziky
Fengzi vs Hawk
Sparkling Tuna Cup
5 days
RSL Revival
5 days
FEL
5 days
BSL20 Non-Korean Champi…
5 days
Bonyth vs Dewalt
QiaoGege vs Dewalt
Hawk vs Bonyth
Sziky vs Fengzi
Mihu vs Zhanhun
QiaoGege vs Zhanhun
Fengzi vs Mihu
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
CSL Xiamen Invitational
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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.