• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:09
CEST 03:09
KST 10:09
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL59Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event19Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher Statistics for vetoed/disliked maps The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event RSL: Revival, a new crowdfunded tournament series Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) [GSL 2025] Code S: Season 2 - Semi Finals & Finals
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Flash Announces Hiatus From ASL SC uni coach streams logging into betting site BGH Mineral Boosts Tutorial Video Player “Jedi” cheat on CSL Replays question
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Trading/Investing Thread Things Aren’t Peaceful in Palestine The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 704 users

The Big Programming Thread - Page 668

Forum Index > General Forum
Post a Reply
Prev 1 666 667 668 669 670 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
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
Netherlands676 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
Poland17243 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
Poland17243 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
Netherlands676 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
Spain17970 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
Poland17243 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
Poland17243 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
Hyrule19030 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
Spain17970 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 8h 51m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 245
NeuroSwarm 154
ProTech79
ROOTCatZ 55
RuFF_SC2 53
StarCraft: Brood War
NaDa 115
yabsab 42
Icarus 4
Dota 2
febbydoto12
Counter-Strike
Fnx 1570
Stewie2K809
Heroes of the Storm
Khaldor178
Other Games
summit1g9593
tarik_tv7615
JimRising 515
fl0m429
ViBE150
Organizations
Other Games
BasetradeTV15
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Berry_CruncH274
• davetesta35
• Hunta15 4
• Kozan
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Azhi_Dahaki36
• Pr0nogo 3
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21171
• Ler73
League of Legends
• Doublelift6374
• Jankos1704
Upcoming Events
RSL Revival
8h 51m
Clem vs Classic
SHIN vs Cure
FEL
10h 51m
WardiTV European League
10h 51m
BSL: ProLeague
16h 51m
Dewalt vs Bonyth
Replay Cast
1d 22h
Sparkling Tuna Cup
2 days
WardiTV European League
2 days
The PondCast
3 days
Replay Cast
3 days
RSL Revival
4 days
[ Show More ]
Replay Cast
4 days
RSL Revival
5 days
FEL
5 days
RSL Revival
6 days
FEL
6 days
FEL
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

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

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
TLPD

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

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 © 2025 TLnet. All Rights Reserved.