• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:58
CET 00:58
KST 08:58
  • 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
ByuL: The Forgotten Master of ZvT25Behind the Blue - Team Liquid History Book18Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0241LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2Nexon's StarCraft game could be FPS, led by UMS maker16
StarCraft 2
General
How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Behind the Blue - Team Liquid History Book ByuL: The Forgotten Master of ZvT Liquipedia WCS Portal Launched Kaelaris on the futue of SC2 and much more...
Tourneys
PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament StarCraft Evolution League (SC Evo Biweekly) How do the "codes" work in GSL? LiuLi Cup: 2025 Grand Finals (Feb 10-16)
Strategy
Custom Maps
Map Editor closed ? [A] Starcraft Sound Mod
External Content
Mutation # 514 Ulnar New Year The PondCast: SC2 News & Results Mutation # 513 Attrition Warfare Mutation # 512 Overclocked
Brood War
General
CasterMuse Youtube A cwal.gg Extension - Easily keep track of anyone A new season just kicks off Recent recommended BW games BGH Auto Balance -> http://bghmmr.eu/
Tourneys
Escore Tournament StarCraft Season 1 [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1 Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Zealot bombing is no longer popular? Fighting Spirit mining rates Current Meta
Other Games
General Games
Nintendo Switch Thread Battle Aces/David Kim RTS Megathread New broswer game : STG-World Diablo 2 thread ZeroSpace Megathread
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Mexico's Drug War Canadian Politics Mega-thread Ask and answer stupid questions here!
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
Formula 1 Discussion 2024 - 2026 Football Thread TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
My 2025 Magic: The Gathering…
DARKING
Life Update and thoughts.
FuDDx
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2123 users

The Big Programming Thread - Page 668

Forum Index > General Forum
Post a Reply
Prev 1 666 667 668 669 670 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.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 12 2015 06:36 GMT
#13341
Basically that's my understanding. There's also some state about gc patterns that Java uses to size its heap parts, beyond just min and max size. I think the counter can be reset more than just when program restarted as it can deoptimoze code and clear it from code cache, I think to support dynamic reloading of classes. The compiled code isnt stored in the Java heap but a special section of non heap memory (although I assume it is still a heap allocation).

I'm sure there's reasons not to use Java if you wanted the highest performance but I was just curious about this, not actually a problem I'm running into ^°
RIP GOMTV. RIP PROLEAGUE.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
October 12 2015 06:41 GMT
#13342
On October 10 2015 16:56 phar wrote:
Show nested quote +
On October 05 2015 11:01 Itsmedudeman wrote:
Why are so many java class objects immutable? Really annoying sometimes when I want to change fields later.

Above answers are good. For more detail, get a copy of this:

http://www.amazon.com/gp/product/0321356683/ (which you should do if you're going to be programming a significant amount of Java)

then read item 15


Show nested quote +
On October 10 2015 00:28 obesechicken13 wrote:
When writing integration tests for a web service (people will be hitting a REST endpoint) how many integration tests should there be?


I need to populate the database with data before running the integration tests.

Do I just proceed with pretending it's a black box and making all my business tests at the integration level? Like should I just test that the integration hooks are in place or should I test the logic of the service from end to end?

Concrete example:
Starcraft 2 releases an API giving you access to player data.
Do I test that given X parameters(tier,region) I get Y(winrate,game length) output for Z(20) test cases?
Or do I write one test for the endpoint just making sure it's connected all the way through?

There's no hard & fast rule here. end-to-end tests are always good to have. Separate tests for bits in the middle are good, especially if you can get them to run more quickly.

I'm not clear on what you're getting at, but these are two distinct types of tests to have, and both are good:

1) A test which hits a real, live endpoint, just to see if it's alive. This should be pretty low qps, and resilient to flakes - especially considering whatever the SLA of the endpoint is

2) Tests which stand up the whole stack inside the test, with fake test data, and verify that endpoints return expected results (populate a database with test data, clean up after you're done).

Both are good to have.

Thanks, that's what I expected.
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Entranceist
Profile Joined October 2015
4 Posts
October 13 2015 17:33 GMT
#13343
Hello everyone! I've been lurking TL for a few years now, used to have an account but I can't remember the log in details at this point and figured I might as well just create a new account.

So anyway, I'm a relatively new developer. I started learning about a year ago now, although I've always had an ongoing interest. I was always dissuaded into getting into programming by people saying stuff like, "You will never amount to anything since you didn't start when you were 12" and stuff like that. I know better now. For the record, I'm 21 now. I do not have a degree nor am I enrolled in college (although I may very well do so at a later time) and I have no "formal" development experience.

More to the point (I apologize that this is turning out to be a drawn-out post, but I felt like background information was necessary), I do have one friend of mine who has been programming for many years who has been helping/mentoring me. Basically he just gave me some ideas and resources to study, and I was able to ask him questions on anything that was unclear.

In my current job, I end up having massive amounts of down time, which I've almost exclusively used to study and practice. With the knowledge I've accumulated I was able to write a few applications for different projects in the company to help the front-line staff do their job more effectively. I was praised extremely highly from both our clients and upper-management, and they essentially promised me a junior level development position, which they are not following through with, so I've decided to leave and attempt to find a job as a software developer.

Now, the main point of my post: I have my first interview coming up in a few days. It is for C#.NET related application development, and I'm very nervous. Although I do feel confident in my ability to actually program, or to learn things as needed, I do not feel confident that I will do well on an interview at this point. I feel like I have to do well on this interview, since my assumption is the interviews will be few and far between (especially in my area). So I'm reaching out for any advice, example interview questions etc. to help me prepare. I would very much appreciate it. I've actually been managing people for a few years now (non-IT related) so I'm going to play off that experience being my strength, and hope they are looking for a more long-term person they can groom into a senior development/team lead type role, since I already have part of the experience that would be required for that.

Also of course any other advice for a new programmer or for me specifically to develop myself, again, would be appreciated.
_fool
Profile Joined February 2011
Netherlands681 Posts
October 13 2015 20:00 GMT
#13344
On October 14 2015 02:33 Entranceist wrote:
Hello everyone! I've been lurking TL for a few years now, used to have an account but I can't remember the log in details at this point and figured I might as well just create a new account.

So anyway, I'm a relatively new developer. I started learning about a year ago now, although I've always had an ongoing interest. I was always dissuaded into getting into programming by people saying stuff like, "You will never amount to anything since you didn't start when you were 12" and stuff like that. I know better now. For the record, I'm 21 now. I do not have a degree nor am I enrolled in college (although I may very well do so at a later time) and I have no "formal" development experience.

More to the point (I apologize that this is turning out to be a drawn-out post, but I felt like background information was necessary), I do have one friend of mine who has been programming for many years who has been helping/mentoring me. Basically he just gave me some ideas and resources to study, and I was able to ask him questions on anything that was unclear.

In my current job, I end up having massive amounts of down time, which I've almost exclusively used to study and practice. With the knowledge I've accumulated I was able to write a few applications for different projects in the company to help the front-line staff do their job more effectively. I was praised extremely highly from both our clients and upper-management, and they essentially promised me a junior level development position, which they are not following through with, so I've decided to leave and attempt to find a job as a software developer.

Now, the main point of my post: I have my first interview coming up in a few days. It is for C#.NET related application development, and I'm very nervous. Although I do feel confident in my ability to actually program, or to learn things as needed, I do not feel confident that I will do well on an interview at this point. I feel like I have to do well on this interview, since my assumption is the interviews will be few and far between (especially in my area). So I'm reaching out for any advice, example interview questions etc. to help me prepare. I would very much appreciate it. I've actually been managing people for a few years now (non-IT related) so I'm going to play off that experience being my strength, and hope they are looking for a more long-term person they can groom into a senior development/team lead type role, since I already have part of the experience that would be required for that.

Also of course any other advice for a new programmer or for me specifically to develop myself, again, would be appreciated.


I don't know where you're located? There might be curtural differences between USA, SEA and Europe. My advice (Europe-based) would be to be honest about what you do know and what you don't know. Don't try to give "the correct answer" because half of the times there is none. A good employer will always prefer a smart guy how wants to learn over a stubborn guy who "knows his stuff already" (because most of the time it isn't the right stuff anyway).

So go in there, show em who you are. If they don't like you, you don't want to work there
"News is to the mind what sugar is to the body"
Manit0u
Profile Blog Joined August 2004
Poland17667 Posts
Last Edited: 2015-10-13 20:50:30
October 13 2015 20:47 GMT
#13345
Also, I'd rather rehash some of the basics and take my time to chill before the interview. If you overdo with preparation you'll just get confused and screw up (also, most people really get sidestriked by simple stuff like FizzBuzz and what not, you'd be surprised how many people have trouble with that).

Another good advice would be to actually go to the website of the company you're applying for (and do other research if you can) so that you can be ready for questions like "Do you know what we do here?" or "Why do you want to work for us?/What can we gain by hiring you?". Yet another area where many applicants fail to deliver.

If you applied for the job and there were requirements listed this can also be a pretty good hint of what might be expected of you and what their developers are doing. Just don't try to learn all the technologies you don't know, it's OK if you're not familiar with everything as long as you're honest about it and you actually did look it up beforehand so you know if you at least worked with something similar (even things like GitLab/Jira/Redmine/ReviewBoard).
Time is precious. Waste it wisely.
Entranceist
Profile Joined October 2015
4 Posts
Last Edited: 2015-10-13 21:30:07
October 13 2015 21:26 GMT
#13346
Thank you both so much for your responses!

The skills/qualifications for the job don't seem to be too heavy:

Experience with multi-threading and observer model design patterns.
Experience with .NET framework.
C# or similar languages such as Java
Some knowledge of C++ and MFC would be helpful.
Strong attention to detail.
Strong organizational and planning skills.
Strong problem solving skills.
Comfortable using Microsoft Windows and Microsoft Office and Word.

Most of this I think I do display, but when they say "Experience" and not a certain amount or other descriptors such as "Strong knowledge" or something like that makes it seem very subjective, so I'm not really sure what to expect.

Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.

As far as research on the company, I've got my bases covered there I believe. But I do appreciate the reminder, and I'm sure other people looking at this thread will find that piece of information valuable. I'm personally mostly concerned with technical questions.

Again, I appreciate your response very much!

Forgot to add, I'm in the USA. Although I'm not sure there will be much significant cultural difference as far as interviews go.
Birdie
Profile Blog Joined August 2007
New Zealand4438 Posts
October 14 2015 06:07 GMT
#13347
Is working in embedded systems particularly difficult to pick up for someone without experience in the field, but who knows how to code fairly well in C and other languages?
Red classic | A butterfly dreamed he was Zhuangzi | 4.5k, heading to 5k as support!
Manit0u
Profile Blog Joined August 2004
Poland17667 Posts
Last Edited: 2015-10-14 09:52:15
October 14 2015 09:50 GMT
#13348
On October 14 2015 06:26 Entranceist wrote:
Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.


If you had anything to do with event listeners and such you should be OK

https://msdn.microsoft.com/en-us/library/aa645739(v=vs.71).aspx
Time is precious. Waste it wisely.
RoomOfMush
Profile Joined March 2015
1296 Posts
October 14 2015 10:16 GMT
#13349
On October 12 2015 13:33 teamamerica wrote:
Hey can anyone point me toward some resources into learning why it's not possible (or is it?) to save state of a warmed up JVM? I've seen stuff about lowing JIT compilation threshold but that isn't quite what I don't want everything compiled, just what was compiled after running my program through normal workload.

From my understanding, there are lisps where you can basically save image of application state and run it later?

First of all, if your application is not time sensitive (real-time systems or huge workload that needs to be processed very quicky) then you are just wasting your time on premature optimization.
However, if you need that speed desperately you can still compile java code to native code directly using one of the many tools that are out there on the web. You can then have a select few classes compiled to native code for extra speed and have them communicate with the rest of the Java application through JNI. Please keep in mind that this would not be platform independent anymore unless you compile separate versions of these classes for each operating system.
waffelz
Profile Blog Joined June 2012
Germany711 Posts
October 14 2015 13:06 GMT
#13350
On October 14 2015 15:07 Birdie wrote:
Is working in embedded systems particularly difficult to pick up for someone without experience in the field, but who knows how to code fairly well in C and other languages?


Good C knowledge is a pretty good start, but you most likely need some technical knowledge. Memoryarchitecture and organisation, being able to read circuit diagrams. And it is one of the rare occacions where being able to work with binaries/hexvalues quickly without any assistance(means calculating that stuff in your head) is very useful. Yep, its that one time your professors told you about . Having experience in C, especially in terms of memory-manipulation is a really good start though.
RIP "The big travis CS degree thread", taken from us too soon | Honourable forum princess, defended by Rebs-approved white knights
Entranceist
Profile Joined October 2015
4 Posts
October 14 2015 18:05 GMT
#13351
On October 14 2015 18:50 Manit0u wrote:
Show nested quote +
On October 14 2015 06:26 Entranceist wrote:
Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.


If you had anything to do with event listeners and such you should be OK

https://msdn.microsoft.com/en-us/library/aa645739(v=vs.71).aspx



Ah, I see. That certainly makes it more familiar.

Another thought on that job description is, this could certainly turn out to be a bit more basic compared to other interviews for Software Developers.

As I stated previously I have a friend who is a very experienced software engineer, and he gave me some example questions such as:

Design an LRU cache
Print a binary tree level by level
Find the minimum path through a two dimensional matrix

Questions like these certainly seem to me like they are aimed at a more mid to senior level software engineer - but maybe I'm wrong about that. Would anybody be able to put these questions into perspective as far as generally how much education/experience somebody would be expected to know stuff like that?

Like you said previously, a lot of people get tripped up writing FizzBuzz, so how would they be expected to for instance, design an LRU cahce?

Another thought/question about this - I always thought Software Engineer and Software Developer are the same thing, but is a Software Engineer somebody more geared towards the computer science side of things, where a software developer would be more geared towards the actual programming?

Again, I can't thank you enough for your responses
_fool
Profile Joined February 2011
Netherlands681 Posts
Last Edited: 2015-10-14 18:26:46
October 14 2015 18:19 GMT
#13352
On October 15 2015 03:05 Entranceist wrote:
Show nested quote +
On October 14 2015 18:50 Manit0u wrote:
On October 14 2015 06:26 Entranceist wrote:
Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.


If you had anything to do with event listeners and such you should be OK

https://msdn.microsoft.com/en-us/library/aa645739(v=vs.71).aspx



Ah, I see. That certainly makes it more familiar.

Another thought on that job description is, this could certainly turn out to be a bit more basic compared to other interviews for Software Developers.

As I stated previously I have a friend who is a very experienced software engineer, and he gave me some example questions such as:

Design an LRU cache
Print a binary tree level by level
Find the minimum path through a two dimensional matrix

Questions like these certainly seem to me like they are aimed at a more mid to senior level software engineer - but maybe I'm wrong about that. Would anybody be able to put these questions into perspective as far as generally how much education/experience somebody would be expected to know stuff like that?

Like you said previously, a lot of people get tripped up writing FizzBuzz, so how would they be expected to for instance, design an LRU cahce?

Another thought/question about this - I always thought Software Engineer and Software Developer are the same thing, but is a Software Engineer somebody more geared towards the computer science side of things, where a software developer would be more geared towards the actual programming?

Again, I can't thank you enough for your responses


In all the interviews I had, the employer was mostly interested in my train of thought. You're not expected to write a production level LRU cache on the spot. He wants you to ask if you don't know what LRU is. And once he tells you that LRU is Least Recently Used, he'll be perfectly happy when you make up some basic implementation that keeps a map with -say- 10 items. The keys will be the items you have cached, and the value might be a timestamp. When you encounter an 11th item, you remove the oldest item in your cache, and add the new item to your cache. Whenever you read an existing item, you update its timestamp to now(). Voila, LRU cache. It does not need to be very elegant.

They want to see how you dissect a problem into parts, and find solutions for those parts. They want to see that you can extract domain concept from their specifications (in the LRU example, you might decide to have a CachedItem that holds an Object and a timestamp). Also, they will probably have a question for you that you don't know the answer to, because they want to see how you respond to that.
"News is to the mind what sugar is to the body"
Entranceist
Profile Joined October 2015
4 Posts
October 14 2015 21:50 GMT
#13353
On October 15 2015 03:19 _fool wrote:
Show nested quote +
On October 15 2015 03:05 Entranceist wrote:
On October 14 2015 18:50 Manit0u wrote:
On October 14 2015 06:26 Entranceist wrote:
Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.


If you had anything to do with event listeners and such you should be OK

https://msdn.microsoft.com/en-us/library/aa645739(v=vs.71).aspx



Ah, I see. That certainly makes it more familiar.

Another thought on that job description is, this could certainly turn out to be a bit more basic compared to other interviews for Software Developers.

As I stated previously I have a friend who is a very experienced software engineer, and he gave me some example questions such as:

Design an LRU cache
Print a binary tree level by level
Find the minimum path through a two dimensional matrix

Questions like these certainly seem to me like they are aimed at a more mid to senior level software engineer - but maybe I'm wrong about that. Would anybody be able to put these questions into perspective as far as generally how much education/experience somebody would be expected to know stuff like that?

Like you said previously, a lot of people get tripped up writing FizzBuzz, so how would they be expected to for instance, design an LRU cahce?

Another thought/question about this - I always thought Software Engineer and Software Developer are the same thing, but is a Software Engineer somebody more geared towards the computer science side of things, where a software developer would be more geared towards the actual programming?

Again, I can't thank you enough for your responses


In all the interviews I had, the employer was mostly interested in my train of thought. You're not expected to write a production level LRU cache on the spot. He wants you to ask if you don't know what LRU is. And once he tells you that LRU is Least Recently Used, he'll be perfectly happy when you make up some basic implementation that keeps a map with -say- 10 items. The keys will be the items you have cached, and the value might be a timestamp. When you encounter an 11th item, you remove the oldest item in your cache, and add the new item to your cache. Whenever you read an existing item, you update its timestamp to now(). Voila, LRU cache. It does not need to be very elegant.

They want to see how you dissect a problem into parts, and find solutions for those parts. They want to see that you can extract domain concept from their specifications (in the LRU example, you might decide to have a CachedItem that holds an Object and a timestamp). Also, they will probably have a question for you that you don't know the answer to, because they want to see how you respond to that.



Thanks _fool! You've given me a lot of confidence with your responses.

My hope is that I will be a bit surprised with how much I know, and be able to show enough problem solving ability to demonstrate competence then.

Coincidentally, the job has been posted for 30+ days and they got back to me within a day of my application submission. In your (or anybody else's) opinion, do you think that is a sign of desperation for additional software developers? Not that I expect it to effect their decision to hire me either way, but I just like to speculate.



Acrofales
Profile Joined August 2010
Spain18219 Posts
October 14 2015 22:40 GMT
#13354
On October 15 2015 06:50 Entranceist wrote:
Show nested quote +
On October 15 2015 03:19 _fool wrote:
On October 15 2015 03:05 Entranceist wrote:
On October 14 2015 18:50 Manit0u wrote:
On October 14 2015 06:26 Entranceist wrote:
Also, observer model design patterns seems completely foreign to me. So maybe I missed something huge in my self-study.


If you had anything to do with event listeners and such you should be OK

https://msdn.microsoft.com/en-us/library/aa645739(v=vs.71).aspx



Ah, I see. That certainly makes it more familiar.

Another thought on that job description is, this could certainly turn out to be a bit more basic compared to other interviews for Software Developers.

As I stated previously I have a friend who is a very experienced software engineer, and he gave me some example questions such as:

Design an LRU cache
Print a binary tree level by level
Find the minimum path through a two dimensional matrix

Questions like these certainly seem to me like they are aimed at a more mid to senior level software engineer - but maybe I'm wrong about that. Would anybody be able to put these questions into perspective as far as generally how much education/experience somebody would be expected to know stuff like that?

Like you said previously, a lot of people get tripped up writing FizzBuzz, so how would they be expected to for instance, design an LRU cahce?

Another thought/question about this - I always thought Software Engineer and Software Developer are the same thing, but is a Software Engineer somebody more geared towards the computer science side of things, where a software developer would be more geared towards the actual programming?

Again, I can't thank you enough for your responses


In all the interviews I had, the employer was mostly interested in my train of thought. You're not expected to write a production level LRU cache on the spot. He wants you to ask if you don't know what LRU is. And once he tells you that LRU is Least Recently Used, he'll be perfectly happy when you make up some basic implementation that keeps a map with -say- 10 items. The keys will be the items you have cached, and the value might be a timestamp. When you encounter an 11th item, you remove the oldest item in your cache, and add the new item to your cache. Whenever you read an existing item, you update its timestamp to now(). Voila, LRU cache. It does not need to be very elegant.

They want to see how you dissect a problem into parts, and find solutions for those parts. They want to see that you can extract domain concept from their specifications (in the LRU example, you might decide to have a CachedItem that holds an Object and a timestamp). Also, they will probably have a question for you that you don't know the answer to, because they want to see how you respond to that.



Thanks _fool! You've given me a lot of confidence with your responses.

My hope is that I will be a bit surprised with how much I know, and be able to show enough problem solving ability to demonstrate competence then.

Coincidentally, the job has been posted for 30+ days and they got back to me within a day of my application submission. In your (or anybody else's) opinion, do you think that is a sign of desperation for additional software developers? Not that I expect it to effect their decision to hire me either way, but I just like to speculate.





As someone who has had to sort through applications on occasion, I would definitely not try to speculate any which way on the matter. Different people do this stuff differently.

What you should focus on is that your application got picked out of the stack, which means you made the shortlist
Of people worth looking in to and inviting for an interview. Your next job is to show them that you will be an asset, and.evaluate them to see if you actually want to work there. Let THEM worry about how many applications they got and whether their recruitment policy is working.
Manit0u
Profile Blog Joined August 2004
Poland17667 Posts
October 14 2015 23:20 GMT
#13355
Sometimes it's not about recruitment policy. At times there simply are no people worthy of hiring despite plenty of them applying for a job.
Time is precious. Waste it wisely.
Manit0u
Profile Blog Joined August 2004
Poland17667 Posts
October 15 2015 09:51 GMT
#13356
Intern asks me for some help. I come over, look at his editor and he's using freaking Indie Flower font. Why would anyone do such a thing? T_T

True story.
Time is precious. Waste it wisely.
Ropid
Profile Joined March 2009
Germany3557 Posts
October 15 2015 14:42 GMT
#13357
I heard that fonts like that help people with dyslexia. If the guy is using that weird font because he couldn't find a monospace font with a "fun" look, he should check out Fantasque Sans Mono: https://github.com/belluzj/fantasque-sans
"My goal is to replace my soul with coffee and become immortal."
tofucake
Profile Blog Joined October 2009
Hyrule19193 Posts
October 15 2015 15:16 GMT
#13358
Oddly, Comic Sans is also really good for dyslexic comprehension
Liquipediaasante sana squash banana
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
October 15 2015 20:43 GMT
#13359
On October 15 2015 18:51 Manit0u wrote:
Intern asks me for some help. I come over, look at his editor and he's using freaking Indie Flower font. Why would anyone do such a thing? T_T

True story.


It doesn't look bad, but it'll be distracting for me when I have to focus. I don't mind it on websites though.
Acrofales
Profile Joined August 2010
Spain18219 Posts
October 16 2015 00:01 GMT
#13360
On October 15 2015 18:51 Manit0u wrote:
Intern asks me for some help. I come over, look at his editor and he's using freaking Indie Flower font. Why would anyone do such a thing? T_T

True story.


Reading code in that font is insanely more awesome than in courier or whatever other standard fonts are used in ides.

I wouldn't be able to concentrate, or code, but it is more awesome.
Prev 1 666 667 668 669 670 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 223
Temp0 58
StarCraft: Brood War
Artosis 641
NaDa 17
Dota 2
syndereN546
canceldota395
Super Smash Bros
PPMD32
Liquid`Ken13
Other Games
summit1g11496
FrodaN2332
shahzam701
C9.Mang0185
Maynarde92
Trikslyr64
ZombieGrub59
ArmadaUGS13
Organizations
Counter-Strike
PGL804
Other Games
gamesdonequick172
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• Hupsaiya 80
• intothetv
• Kozan
• sooper7s
• Migwel
• LaughNgamezSOOP
• IndyKCrew
• AfreecaTV YouTube
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21114
• lizZardDota257
League of Legends
• TFBlade1658
• Scarra1495
• Stunt195
Other Games
• imaqtpie1590
• Shiphtur234
Upcoming Events
OSC
3m
CranKy Ducklings1
WardiTV Winter Champion…
12h 3m
Replay Cast
1d 9h
WardiTV Winter Champion…
1d 12h
The PondCast
2 days
Replay Cast
3 days
Korean StarCraft League
4 days
CranKy Ducklings
4 days
SC Evo Complete
4 days
Replay Cast
5 days
[ Show More ]
Sparkling Tuna Cup
5 days
uThermal 2v2 Circuit
5 days
Replay Cast
6 days
Wardi Open
6 days
Liquipedia Results

Completed

Proleague 2026-02-22
LiuLi Cup: 2025 Grand Finals
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Acropolis #4 - TS5
WardiTV Winter 2026
PiG Sty Festival 7.0
Nations Cup 2026
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025

Upcoming

Jeongseon Sooper Cup
Spring Cup 2026
[S:21] ASL SEASON OPEN 2nd Round
[S:21] ASL SEASON OPEN 2nd Round Qualifier
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League Season 23
ESL Pro League Season 23
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Disclosure: This page contains affiliate marketing links that support TLnet.

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.