• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 12:28
CEST 18:28
KST 01:28
  • 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
Serral wins HomeStory Cup 2914Serral wins Maestros of the Game 243ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12
Community News
Clem: "I don't have that much hope in Blizzard"2ZeroSpace Early Access is Now Live!20Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters2Balance hotfix patch 5.0.16b (July 16)88Reynor: GSL Loss Wasn't About Preparation Format17
StarCraft 2
General
Reynor: GSL Loss Wasn't About Preparation Format Balance hotfix patch 5.0.16b (July 16) How would you feel about frequent/monthly balance patches for SC2? Clem: "I don't have that much hope in Blizzard" Weekly Cups (July 13-19): Terran & Protoss rise; Zerg falters
Tourneys
IntoTheTV X SOOP SC2 League : Weekly & Monthly INu's Battles#18 - Cure, herO, Rogue & ByuN RSL Revival: Season 6 - Qualifiers and Main Event Master Swan Open (Global Bronze-Master 2) WardiTV Summer Cup 2026
Strategy
[G] Having the right mentality to improve
Custom Maps
[M] (2) Industrial Park New Map Maker - Looking for Advice - Love or Hate
External Content
Mutation # 535 Assembly of Vengeance The PondCast: SC2 News & Results Mutation # 534 Burning Evacuation Mutation # 533 Die Together
Brood War
General
BW General Discussion Animated Gateway BGH Auto Balance -> http://bghmmr.eu/ HORROR STARCRAFT MOVIE How Famous was FlaSh before his Debut?
Tourneys
Escore Tournament - Season 3 [Megathread] Daily Proleagues [IPSL] Spring 2026 Grand Finals - This Weekend! Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers PvT advise for noobs Fighting Spirit mining rates Creating a full chart of Zerg builds
Other Games
General Games
ZeroSpace Early Access is Now Live! Path of Exile Nintendo Switch Thread General RTS Discussion Thread Diablo IV
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Artificial Intelligence Thread Russo-Ukrainian War Thread How to buy a book - shipping from Korea to Europe The Games Industry And ATVI
Fan Clubs
The IdrA Fan Club The HerO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion MLB/Baseball 2023 McBoner: A hockey love story
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread Simple Questions Simple Answers FPS when play League Of Legend on laptop
TL Community
Northern Ireland Global Starcraft The Automated Ban List
Blogs
How Games can Help with Majo…
TrAiDoS
Hello guys!
LIN1s
ASL S22 English Commentary…
namkraft
Poker (part 2)
Nebuchad
An Exploration of th…
waywardstrategy
Customize Sidebar...

Website Feedback

Closed Threads



Active: 4217 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
Poland17799 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
Poland17799 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
Poland17799 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
Poland17799 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 7h 32m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ByuN 569
mouzHeroMarine 98
BRAT_OK 58
FoxeR 40
RushiSC 34
StarCraft: Brood War
Calm 4115
Bisu 2022
Rain 1793
Shuttle 1039
BeSt 598
EffOrt 569
Mini 541
Soulkey 460
Light 383
firebathero 355
[ Show more ]
Stork 334
Larva 316
Zeus 227
Snow 168
ggaemo 160
actioN 145
hero 126
Dewaltoss 112
Mong 104
Rush 100
Hyun 83
Sea.KH 56
Movie 43
Sexy 41
ToSsGirL 37
JYJ 36
Barracks 28
Bale 26
Shine 19
yabsab 18
sorry 18
Terrorterran 18
HiyA 17
ajuk12(nOOB) 15
Noble 12
zelot 9
Sacsri 9
Dota 2
qojqva1773
Counter-Strike
fl0m3033
x6flipin1066
byalli429
Super Smash Bros
C9.Mang094
Other Games
singsing1964
hiko779
Mlord512
DeMusliM297
Grubby229
ArmadaUGS215
Liquid`VortiX91
JuggernautJason77
KnowMe63
Trikslyr50
Rex42
Livibee30
ODPixel24
Organizations
StarCraft 2
TaKeTV 240
Other Games
BasetradeTV211
StarCraft: Brood War
lovetv 9
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• mYiSmile122
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV403
League of Legends
• TFBlade937
Other Games
• Shiphtur305
Upcoming Events
Replay Cast
7h 32m
Escore
17h 32m
CrankTV Team League
18h 32m
WardiTV Summer Champion…
19h 32m
Big Brain Bouts
23h 32m
Soulspirit vs goblin
TriGGeR vs Bunny
OSC
1d 5h
Korean StarCraft League
1d 10h
Afreeca Starleague
1d 11h
RSL Revival
1d 16h
Serral vs SHIN
herO vs Solar
Online Event
1d 22h
[ Show More ]
Replay Cast
2 days
RSL Revival
2 days
Clem vs ByuN
Rogue vs Lambo
OSC
2 days
WardiTV Weekly
3 days
Sparkling Tuna Cup
4 days
INu's Battles
4 days
Cure vs herO
ByuN vs Rogue
PiGosaur Cup
5 days
The PondCast
5 days
Kung Fu Cup
5 days
Patches Events
5 days
Replay Cast
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-07-22
HSC XXIX
Eternal Conflict S2 E3

Ongoing

CSL 2026 Summer (S21)
KCM Race Survival 2026 Season 3
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
SCTL 2026 Spring
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026

Upcoming

Escore Tournament S3: W4
ASL S22 SEASON OPEN Day 2
Escore Tournament S3: W5
ASL Season 22: Qualifier #1
ASL Season 22: Qualifier #2
CSLAN 4
ASL Season 22
HSC XXX
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
Light Tournament 2026
Eternal Conflict S2 Finale
ESL Pro League Season 24
Stake Ranked Episode 4
Logitech G Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 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.