• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 22:00
CET 04:00
KST 12:00
  • 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
TL.net Map Contest #21: Winners10Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!41$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
StarCraft, SC2, HotS, WC3, Returning to Blizzcon! Mech is the composition that needs teleportation t TL.net Map Contest #21: Winners Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win RotterdaM "Serral is the GOAT, and it's not close"
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
BW General Discussion [ASL20] Ask the mapmakers — Drop your questions [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[BSL21] RO32 Group A - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Should offensive tower rushing be viable in RTS games? Dawn of War IV
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Learning my new SC2 hotkey…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 991 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
Netherlands678 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
Poland17421 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
Poland17421 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
Netherlands678 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
Spain18111 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
Poland17421 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
Poland17421 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
Hyrule19151 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
Spain18111 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
Replay Cast
23:00
PiGosaur Cup #55
Liquipedia
BSL 21
20:00
ProLeague - RO32 Group A
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 129
StarCraft: Brood War
Britney 20637
Sea 1806
NaDa 68
Noble 45
Dota 2
monkeys_forever460
NeuroSwarm96
League of Legends
JimRising 604
Heroes of the Storm
Khaldor141
Other Games
tarik_tv10367
summit1g9517
ViBE44
goatrope34
Models1
Organizations
Other Games
gamesdonequick617
Counter-Strike
PGL119
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Hupsaiya 171
• davetesta9
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21604
Upcoming Events
Sparkling Tuna Cup
7h
WardiTV Korean Royale
9h
LAN Event
12h
ByuN vs Zoun
TBD vs TriGGeR
Clem vs TBD
IPSL
15h
JDConan vs WIZARD
WolFix vs Cross
BSL 21
17h
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
1d 6h
Wardi Open
1d 9h
WardiTV Korean Royale
2 days
Replay Cast
3 days
Kung Fu Cup
3 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
[ Show More ]
Tenacious Turtle Tussle
3 days
The PondCast
4 days
RSL Revival
4 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
RSL Revival
5 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
5 days
CranKy Ducklings
6 days
RSL Revival
6 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
6 days
BSL 21
6 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
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.