• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:20
CEST 17:20
KST 00:20
  • 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
Code S Season 1 - RO8 Preview1[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10
Community News
Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event11Code S Season 1 (2026) - RO12 Results12026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced9
StarCraft 2
General
Code S Season 1 - RO8 Preview Behind the Blue - Team Liquid History Book Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results
Tourneys
GSL Code S Season 1 (2026) Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event StarCraft Evolution League (SC Evo Biweekly) 2026 GSL Season 2 Qualifiers
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 524 Death and Taxes The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ (Spoiler) Asl ro8 D winner interview BW General Discussion Do we have a pimpest plays list? AI Question
Tourneys
[ASL21] Ro8 Day 4 [ASL21] Ro8 Day 3 [Megathread] Daily Proleagues [ASL21] Ro8 Day 2
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Dawn of War IV Stormgate/Frost Giant Megathread OutLive 25 (RTS Game) Daigo vs Menard Best of 10 Nintendo Switch Thread
Dota 2
The Story of Wings Gaming
League of Legends
G2 just beat GenG in First stand
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
European Politico-economics QA Mega-thread US Politics Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Movie Stars In Video Games: …
TrAiDoS
ramps on octagon
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1325 users

The Big Programming Thread - Page 476

Forum Index > General Forum
Post a Reply
Prev 1 474 475 476 477 478 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.
Manit0u
Profile Blog Joined August 2004
Poland17743 Posts
May 10 2014 00:52 GMT
#9501
On May 10 2014 08:40 Nesserev wrote:
Show nested quote +
On May 10 2014 08:21 Ottoxlol wrote:
Have been googling and thinking for a couple of hours I can't crack whats wrong with my program. Would make my day if someone could help. Its a simple inventory system where I have to use heterogeneous collection, dynamic memory allocation and classes in C++. I am finished if not for the Save() function that I would use to write my objects out to a file the same way I read them.

For the parent I use:
virtual void Save(fstream &file) {file << thingsformattedinawayineedthem; } ,

for the children:
void Save(fstream &file){file << 'x' ; Camera::Save(file); file << otherthingsformattedinawayineedthem; }

the function that calls for every object to save itself is:
void Saveall(vector<Parent*> inventory,fstream &file){for (unsigned i=0; i<inventory.size(); i++){inventory[i]->Save(file);}

I did almost exactly the same for a Listall function that prints every objects variables and it worked so I think it has to do something with the way I handle the fstream(currently it does nothing to the file)
Bonus question: is there a clear command for files? if not is there an elegant solution to clearing it(txt in this case).

Well, your explanation isn't very clear to begin with, what's the problem that you have?

EDIT: For your bonus question, when you open a file, it's cleared from all its contents implicitly (unless you tell it to do otherwise). You can choose the mode in which you open it, by adding the right bitflags, like app to append to the file:
http://www.cplusplus.com/reference/fstream/fstream/open/

// fstream::open / fstream::close
#include <fstream> // std::fstream

int main () {

std::fstream fs;
fs.open ("test.txt", std::fstream::in | std::fstream::out | std::fstream::app);

fs << " more lorem ipsum";

fs.close();

return 0;
}


Doesn't C++ have a function that can save and restore an object? I know that most languages support a function that for example saves all of the global variables used by an object as a mapping and then you get the restore function to assign values stored in the file to this variable (kinda JSON like I guess).

I'm genuinely interested in this
Time is precious. Waste it wisely.
Cyx.
Profile Joined November 2010
Canada806 Posts
May 10 2014 02:05 GMT
#9502
On May 10 2014 09:52 Manit0u wrote:
Show nested quote +
On May 10 2014 08:40 Nesserev wrote:
On May 10 2014 08:21 Ottoxlol wrote:
Have been googling and thinking for a couple of hours I can't crack whats wrong with my program. Would make my day if someone could help. Its a simple inventory system where I have to use heterogeneous collection, dynamic memory allocation and classes in C++. I am finished if not for the Save() function that I would use to write my objects out to a file the same way I read them.

For the parent I use:
virtual void Save(fstream &file) {file << thingsformattedinawayineedthem; } ,

for the children:
void Save(fstream &file){file << 'x' ; Camera::Save(file); file << otherthingsformattedinawayineedthem; }

the function that calls for every object to save itself is:
void Saveall(vector<Parent*> inventory,fstream &file){for (unsigned i=0; i<inventory.size(); i++){inventory[i]->Save(file);}

I did almost exactly the same for a Listall function that prints every objects variables and it worked so I think it has to do something with the way I handle the fstream(currently it does nothing to the file)
Bonus question: is there a clear command for files? if not is there an elegant solution to clearing it(txt in this case).

Well, your explanation isn't very clear to begin with, what's the problem that you have?

EDIT: For your bonus question, when you open a file, it's cleared from all its contents implicitly (unless you tell it to do otherwise). You can choose the mode in which you open it, by adding the right bitflags, like app to append to the file:
http://www.cplusplus.com/reference/fstream/fstream/open/

// fstream::open / fstream::close
#include <fstream> // std::fstream

int main () {

std::fstream fs;
fs.open ("test.txt", std::fstream::in | std::fstream::out | std::fstream::app);

fs << " more lorem ipsum";

fs.close();

return 0;
}


Doesn't C++ have a function that can save and restore an object? I know that most languages support a function that for example saves all of the global variables used by an object as a mapping and then you get the restore function to assign values stored in the file to this variable (kinda JSON like I guess).

I'm genuinely interested in this


Not built in - there's boost::serialization which by all accounts is pretty nice though, otherwise mostly you're on your own
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
May 10 2014 03:31 GMT
#9503
On May 09 2014 19:24 Nesserev wrote:
Show nested quote +
On May 09 2014 10:24 Blisse wrote:
On May 08 2014 16:25 phar wrote:
Can you provide a bit more detail? Do you mean supporting multiple ways of logging into the same service?


Not supporting it, but what to do when you do have a user using multiple services and you want to combine them all into one person. Do you just treat all the different log-ins as different people? Then that means if that one person logs in to multiple accounts/services to do something, does the person appear as the same person or as different people?

You should probably use a Single Sign-on Authentication system, like google does.


Uh, I'm actually talking about merging multiple identities into one rather than a signing identity. More of a way of resolving the issue of people signing in using different identities, and into a single person.
There is no one like you in the universe.
phar
Profile Joined August 2011
United States1080 Posts
May 10 2014 03:41 GMT
#9504
Ahh I see what you're talking about now.

I've seen it both ways. I've seen systems that treat all separate ways of login as separate users. I've seen systems that try to merge them together into a single user, so you can use any of the login ways.

I must say as an end user I prefer the latter. On a new login type, you prompt for auth credentials of an existing login (redo oath from the original login if the third party supports that, or whatever), and merge that way. Though I have no idea how they treat revoking single logins vs whole account, how to detect if someone's lost access to one of their three login methods but not the other two, etc. I can imagine it'd be more of a headache.
Who after all is today speaking about the destruction of the Armenians?
Ottoxlol
Profile Blog Joined November 2010
735 Posts
May 10 2014 07:34 GMT
#9505
On May 10 2014 08:40 Nesserev wrote:
Show nested quote +
On May 10 2014 08:21 Ottoxlol wrote:
Have been googling and thinking for a couple of hours I can't crack whats wrong with my program. Would make my day if someone could help. Its a simple inventory system where I have to use heterogeneous collection, dynamic memory allocation and classes in C++. I am finished if not for the Save() function that I would use to write my objects out to a file the same way I read them.

For the parent I use:
virtual void Save(fstream &file) {file << thingsformattedinawayineedthem; } ,

for the children:
void Save(fstream &file){file << 'x' ; Camera::Save(file); file << otherthingsformattedinawayineedthem; }

the function that calls for every object to save itself is:
void Saveall(vector<Parent*> inventory,fstream &file){for (unsigned i=0; i<inventory.size(); i++){inventory[i]->Save(file);}

I did almost exactly the same for a Listall function that prints every objects variables and it worked so I think it has to do something with the way I handle the fstream(currently it does nothing to the file)
Bonus question: is there a clear command for files? if not is there an elegant solution to clearing it(txt in this case).

Well, your explanation isn't very clear to begin with, what's the problem that you have?

EDIT: For your bonus question, when you open a file, it's cleared from all its contents implicitly (unless you tell it to do otherwise). You can choose the mode in which you open it, by adding the right bitflags, like app to append to the file:
http://www.cplusplus.com/reference/fstream/fstream/open/

// fstream::open / fstream::close
#include <fstream> // std::fstream

int main () {

std::fstream fs;
fs.open ("test.txt", std::fstream::in | std::fstream::out | std::fstream::app);

fs << " more lorem ipsum";

fs.close();

return 0;
}


Yeah, this is how I use it but it doesn't work, thats why I asked if someone sees where could be the problem
bangsholt
Profile Joined June 2011
Denmark138 Posts
May 10 2014 09:09 GMT
#9506
On May 10 2014 16:34 Ottoxlol wrote:
Show nested quote +
On May 10 2014 08:40 Nesserev wrote:
On May 10 2014 08:21 Ottoxlol wrote:
Have been googling and thinking for a couple of hours I can't crack whats wrong with my program. Would make my day if someone could help. Its a simple inventory system where I have to use heterogeneous collection, dynamic memory allocation and classes in C++. I am finished if not for the Save() function that I would use to write my objects out to a file the same way I read them.

For the parent I use:
virtual void Save(fstream &file) {file << thingsformattedinawayineedthem; } ,

for the children:
void Save(fstream &file){file << 'x' ; Camera::Save(file); file << otherthingsformattedinawayineedthem; }

the function that calls for every object to save itself is:
void Saveall(vector<Parent*> inventory,fstream &file){for (unsigned i=0; i<inventory.size(); i++){inventory[i]->Save(file);}

I did almost exactly the same for a Listall function that prints every objects variables and it worked so I think it has to do something with the way I handle the fstream(currently it does nothing to the file)
Bonus question: is there a clear command for files? if not is there an elegant solution to clearing it(txt in this case).

Well, your explanation isn't very clear to begin with, what's the problem that you have?

EDIT: For your bonus question, when you open a file, it's cleared from all its contents implicitly (unless you tell it to do otherwise). You can choose the mode in which you open it, by adding the right bitflags, like app to append to the file:
http://www.cplusplus.com/reference/fstream/fstream/open/

// fstream::open / fstream::close
#include <fstream> // std::fstream

int main () {

std::fstream fs;
fs.open ("test.txt", std::fstream::in | std::fstream::out | std::fstream::app);

fs << " more lorem ipsum";

fs.close();

return 0;
}


Yeah, this is how I use it but it doesn't work, thats why I asked if someone sees where could be the problem


So this is where you post your code, so that we have a chance to help. Instead of just writing what's wrong.
Ottoxlol
Profile Blog Joined November 2010
735 Posts
May 10 2014 09:23 GMT
#9507
well I did post the relevant code, I figured it out anyway, I used fstream instead of using i/o separately probably that's what it didn't like, I divided it and now it works. thanks for the help big programmers
berated-
Profile Blog Joined February 2007
United States1134 Posts
May 10 2014 10:51 GMT
#9508
On May 10 2014 18:23 Ottoxlol wrote:
well I did post the relevant code, I figured it out anyway, I used fstream instead of using i/o separately probably that's what it didn't like, I divided it and now it works. thanks for the help big programmers


Arrrghh!!! This isn't only aimed directly at you -- that's like the number one quote in this thread that bothers me, "I posted the the relevant code", "here's the relevant section"...

If one can't figure something out, how does one assume that they know what the relevant piece of code is? Isn't that decision actually up to the person who fixes that problem?

/rant
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 10 2014 11:17 GMT
#9509
--- Nuked ---
Manit0u
Profile Blog Joined August 2004
Poland17743 Posts
May 10 2014 11:28 GMT
#9510
Could any of you suggest some learning material for embedded software development in ANSI C? You know, stuff like best practices for creating drivers and programming for devices running with 16K flash, 4K RAM and 8MHz CPU...
Time is precious. Waste it wisely.
Invictus
Profile Blog Joined September 2009
Singapore2697 Posts
May 10 2014 16:12 GMT
#9511
Hi guys, i'm about to enrol into university for a computer science degree and i have been interested in programming for a really long time. However, i'm just baffled at where to start cause there are just too many languages to learn. I read the OP but there isn't much C learning resources out there(I think?) so I want to try at least picking up C++ or C# first.

Is there any beginning knowledge that I should learn before starting on any language and is there any language that are better for beginners such as me to learn? Thanks very much!
Lee Jaedong Fighting!
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
May 10 2014 16:33 GMT
#9512
On May 11 2014 01:12 Invictus wrote:
Hi guys, i'm about to enrol into university for a computer science degree and i have been interested in programming for a really long time. However, i'm just baffled at where to start cause there are just too many languages to learn. I read the OP but there isn't much C learning resources out there(I think?) so I want to try at least picking up C++ or C# first.

Is there any beginning knowledge that I should learn before starting on any language and is there any language that are better for beginners such as me to learn? Thanks very much!

There should be plenty of resources for C. But neither C nor C++ are particularly great for beginners, at least imo. There's the argument that these languages teach you valuable things about the low level part of programming, but honestly, programming is all about abstraction. You'll be fine if you start with a more beginner-friedly language (like C# or Java; Python might be a good idea too but I don't know it well enough to recommend it) and just assume that the low level stuff works as it should.
If you have a good reason to disagree with the above, please tell me. Thank you.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
May 10 2014 16:51 GMT
#9513
--- Nuked ---
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
May 10 2014 16:57 GMT
#9514
Linux is nice and all, certainly worth exploring. But you should learn one thing at a time. That also happens to be an important mindset in programming: Tackle your problems one by one.
If you have a good reason to disagree with the above, please tell me. Thank you.
Zocat
Profile Joined April 2010
Germany2229 Posts
May 10 2014 17:01 GMT
#9515
Check your university's cs department. You can probably access the courses of earlier years and see what they use. Remember to not only look at the 1st semester stuff, since they often use special/stupid stuff.
Manit0u
Profile Blog Joined August 2004
Poland17743 Posts
Last Edited: 2014-05-10 17:08:25
May 10 2014 17:07 GMT
#9516
On May 11 2014 01:51 Nesserev wrote:
Show nested quote +
On May 11 2014 01:12 Invictus wrote:
Hi guys, i'm about to enrol into university for a computer science degree and i have been interested in programming for a really long time. However, i'm just baffled at where to start cause there are just too many languages to learn. I read the OP but there isn't much C learning resources out there(I think?) so I want to try at least picking up C++ or C# first.

Is there any beginning knowledge that I should learn before starting on any language and is there any language that are better for beginners such as me to learn? Thanks very much!

I'd recommend picking up Python as your first language instead of C++ or C#. Python is a great language, with a clean and simple look, a lot of support, but it's also as beginner friendly as it gets:
- you install python
- you write a script (which you can write in notepad)
- you execute the script with python

At our university, they use 'How to think like a computer scientist' to teach all the basics of programming in around 4-5 weeks, which is an 'open' free book that you can download in many places. It's a great introduction to all the core concepts of (imperative/object oriented) programming languages, and also introduces you to some important data structures.

You shouldn't be afraid of there being so many programming languages; All the differences basically come down to styles and a couple of features.

I assume you use windows; I recommend that you learn how to use the commandline and to get a virtual linux machine running to dip in the wonders of linux (if you haven't yet), and have some fun with that.


I think it depends on what you really do with Windows and there are basically 3 options here:
1. Do you play a lot of games? Dual-boot. (Note: we're talking latest AAA titles here for the most part, you can run most games via WINE in Linux and often they even work better than in Windows - Civilization IV & V would be an example of such a case)
2. Do you develop in .NET or otherwise need native Windows stuff (your employer requires MS Office for example)? Dual-boot.
3. Any other case? Get rid of Windows because apart from the above it's a useless piece of crap.

People are really too afraid of Linux. Migration might've been hard in the past but this days Linux is I think even more user-friendly than Windows. I've purged my wife's laptop of Windows (she's not very computer savvy) and installed Linux there some years ago, now she's extremely frustrated when she has to do anything on a computer with Windows and she got used to Linux in no more than a couple of days.

For starters you can either go newbie-friendly with Linux by picking a distro that has plenty of wizards and is popular (thus a lot of "how do I do xxx in dist yyy?" on the web) like Ubuntu, Crunchbang (for those who like minimalism), openSUSE or go anti-newbie but learn Linux inside-out by picking a distro where you get a very basic setup and have to do everything manually, including kernel recompilation. In the latter case it's important to pick a distro that's very well documented like Arch or Gentoo (Arch is easier since it uses a package manager so you don't have to compile from source).

I don't think VM is an option for anything past CLI programming since it can get incredibly slow and frustrating.
Time is precious. Waste it wisely.
bangsholt
Profile Joined June 2011
Denmark138 Posts
May 10 2014 17:50 GMT
#9517
On May 11 2014 02:07 Manit0u wrote:
I think it depends on what you really do with Windows and there are basically 3 options here:
1. Do you play a lot of games? Dual-boot. (Note: we're talking latest AAA titles here for the most part, you can run most games via WINE in Linux and often they even work better than in Windows - Civilization IV & V would be an example of such a case)
2. Do you develop in .NET or otherwise need native Windows stuff (your employer requires MS Office for example)? Dual-boot.
3. Any other case? Get rid of Windows because apart from the above it's a useless piece of crap.


So if you don't need Windows, don't use Windows? Obvious statement is obvious

Also, I never understood all the hate for Windows. Since Win 2k it's been a fine OS that just works.

On May 11 2014 02:07 Manit0u wrote:
For starters you can either go newbie-friendly with Linux by picking a distro that has plenty of wizards and is popular (thus a lot of "how do I do xxx in dist yyy?" on the web) like Ubuntu, Crunchbang (for those who like minimalism), openSUSE or go anti-newbie but learn Linux inside-out by picking a distro where you get a very basic setup and have to do everything manually, including kernel recompilation. In the latter case it's important to pick a distro that's very well documented like Arch or Gentoo (Arch is easier since it uses a package manager so you don't have to compile from source).


So you can use a lot of wizards like in Windows? ;o)
Or you can go all hardcore and do it yourself... Like you can in Windows ;o)
Or you can compile from sources, which for practical reasons serves no purpose, but is nice to learn how linux actually works. That you can't do on Windows, I'll give you that.

On May 11 2014 02:07 Manit0u wrote:
I don't think VM is an option for anything past CLI programming since it can get incredibly slow and frustrating.


Get a new i5 or i7 and VMWare Player - speed is so close to native you won't notice the difference anyway.

Instead of religious war which is quite normal in this business, be pragmatic. Pick the right tool for the right job. Learn new paradigms and ideas, and apply them where appropriate. That's what separates the good from the great.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
May 10 2014 19:45 GMT
#9518
Do you guys use Java reflection? Or is this only a Java EE thing?
Manit0u
Profile Blog Joined August 2004
Poland17743 Posts
May 10 2014 20:08 GMT
#9519
On May 11 2014 02:50 bangsholt wrote:
Show nested quote +
On May 11 2014 02:07 Manit0u wrote:
I think it depends on what you really do with Windows and there are basically 3 options here:
1. Do you play a lot of games? Dual-boot. (Note: we're talking latest AAA titles here for the most part, you can run most games via WINE in Linux and often they even work better than in Windows - Civilization IV & V would be an example of such a case)
2. Do you develop in .NET or otherwise need native Windows stuff (your employer requires MS Office for example)? Dual-boot.
3. Any other case? Get rid of Windows because apart from the above it's a useless piece of crap.


So if you don't need Windows, don't use Windows? Obvious statement is obvious

Also, I never understood all the hate for Windows. Since Win 2k it's been a fine OS that just works.

Show nested quote +
On May 11 2014 02:07 Manit0u wrote:
For starters you can either go newbie-friendly with Linux by picking a distro that has plenty of wizards and is popular (thus a lot of "how do I do xxx in dist yyy?" on the web) like Ubuntu, Crunchbang (for those who like minimalism), openSUSE or go anti-newbie but learn Linux inside-out by picking a distro where you get a very basic setup and have to do everything manually, including kernel recompilation. In the latter case it's important to pick a distro that's very well documented like Arch or Gentoo (Arch is easier since it uses a package manager so you don't have to compile from source).


So you can use a lot of wizards like in Windows? ;o)
Or you can go all hardcore and do it yourself... Like you can in Windows ;o)
Or you can compile from sources, which for practical reasons serves no purpose, but is nice to learn how linux actually works. That you can't do on Windows, I'll give you that.

Show nested quote +
On May 11 2014 02:07 Manit0u wrote:
I don't think VM is an option for anything past CLI programming since it can get incredibly slow and frustrating.


Get a new i5 or i7 and VMWare Player - speed is so close to native you won't notice the difference anyway.

Instead of religious war which is quite normal in this business, be pragmatic. Pick the right tool for the right job. Learn new paradigms and ideas, and apply them where appropriate. That's what separates the good from the great.


Ad.1 - Most people don't even realize that you may "not need" Windows, that was my point there. And it's not a fine OS that "just works"... Out of the box you can't do that much with it, unlike Linux, where you get a full office suite, image processing and editing software, a selection of web browsers that don't suck and media players that are actually good.

Ad. 2 - I mentioned the wizards because that's what people migrating from Windows might be more comfortable with as it makes the entire experience more familiar. Only later, when you're better acquainted with Linux do you forsake most, if not all, wizards for console (in my current setup I don't even have the desktop or much of a GUI, I do almost everything from console this days).

And as far as right tools for the job go, unless you're going to do Windows-specific development I see no reason sticking with Windows. Even though you can use VM having it native would still be preferable and if you're going to be spending 8-10 hours a day in this environment you might as well make it your primary and get comfortable with it.
Time is precious. Waste it wisely.
Invictus
Profile Blog Joined September 2009
Singapore2697 Posts
May 10 2014 20:16 GMT
#9520
wow thanks for all the advice! so i think i shall start on python instead then.

on a side note, is Linux really that good? everyone seems to be recommending it as the to go platform. And yes i'm using windows.
Lee Jaedong Fighting!
Prev 1 474 475 476 477 478 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 18h 10m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 711
trigger 126
StarCraft: Brood War
Britney 38192
Calm 6815
Horang2 1253
EffOrt 1030
Soma 798
Mini 503
ZerO 434
Stork 426
Hyuk 413
Larva 392
[ Show more ]
Snow 361
ggaemo 349
actioN 297
Rush 212
hero 131
Mind 120
Mong 104
Hyun 65
Killer 64
Shine 55
sSak 46
Pusan 37
Aegong 31
Bale 27
Barracks 26
Terrorterran 25
Sacsri 21
Rock 19
yabsab 18
GoRush 14
soO 11
ajuk12(nOOB) 11
IntoTheRainbow 11
Dota 2
qojqva3256
syndereN518
monkeys_forever304
XcaliburYe99
Counter-Strike
byalli715
Other Games
singsing2495
B2W.Neo1036
hiko794
Liquid`RaSZi522
Lowko359
Beastyqt318
DeMusliM317
mouzStarbuck247
FrodaN239
ArmadaUGS149
RotterdaM92
ZerO(Twitch)24
Trikslyr20
QueenE20
Livibee13
Organizations
StarCraft: Brood War
UltimateBattle 343
Dota 2
PGL Dota 2 - Main Stream23
StarCraft: Brood War
Kim Chul Min (afreeca) 11
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 16 non-featured ]
StarCraft 2
• StrangeGG 93
• poizon28 33
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota253
League of Legends
• Jankos1744
Other Games
• WagamamaTV394
• Shiphtur223
Upcoming Events
GSL
18h 10m
SHIN vs Zoun
ByuN vs herO
OSC
19h 40m
OSC
21h 40m
Replay Cast
1d 8h
Escore
1d 18h
The PondCast
1d 18h
WardiTV Invitational
1d 19h
Zoun vs Ryung
Lambo vs ShoWTimE
OSC
2 days
Replay Cast
2 days
CranKy Ducklings
2 days
[ Show More ]
RSL Revival
2 days
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
2 days
Krystianer vs TriGGeR
Cure vs Rogue
uThermal 2v2 Circuit
2 days
BSL
3 days
Replay Cast
3 days
Sparkling Tuna Cup
3 days
RSL Revival
3 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
3 days
BSL
4 days
GSL
4 days
Afreeca Starleague
4 days
Soma vs Leta
Monday Night Weeklies
5 days
CranKy Ducklings
5 days
Afreeca Starleague
5 days
Light vs Flash
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2026-05-05
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
YSL S3
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Escore Tournament S2: W6
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
Escore Tournament S2: W7
Escore Tournament S2: W8
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 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...

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.