• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:33
CET 23:33
KST 07:33
  • 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
Team Liquid Map Contest #22 - Presented by Monster Energy4ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13
Community News
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool18Weekly Cups (March 9-15): herO, Clem, ByuN win32026 KungFu Cup Announcement6BGE Stara Zagora 2026 cancelled12Blizzard Classic Cup - Tastosis announced as captains18
StarCraft 2
General
Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Serral: 24’ EWC form was hurt by military service Weekly Cups (March 9-15): herO, Clem, ByuN win Team Liquid Map Contest #22 - Presented by Monster Energy Weekly Cups (August 25-31): Clem's Last Straw?
Tourneys
2026 KungFu Cup Announcement [GSL CK] #2: Team Classic vs. Team Solar [GSL CK] #1: Team Maru vs. Team herO RSL Season 4 announced for March-April PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 517 Distant Threat Mutation # 516 Specter of Death Mutation # 515 Together Forever
Brood War
General
JaeDong's form before ASL Gypsy to Korea BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion BSL Season 22
Tourneys
Small VOD Thread 2.0 [Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here!
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Path of Exile Nintendo Switch Thread General RTS Discussion Thread Stormgate/Frost Giant Megathread Dawn of War IV
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Mexico's Drug War Canadian Politics Mega-thread Russo-Ukrainian War Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Formula 1 Discussion Tokyo Olympics 2021 Thread General nutrition recommendations Cricket [SPORT]
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Funny Nicknames
LUCKY_NOOB
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2608 users

The Big Programming Thread - Page 813

Forum Index > General Forum
Post a Reply
Prev 1 811 812 813 814 815 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Manit0u
Profile Blog Joined August 2004
Poland17695 Posts
Last Edited: 2016-12-08 03:32:49
December 08 2016 03:32 GMT
#16241
Yeah. Quite a lot of time is being spent on thinking and research. On a good day you can spend about half your time in work actually writing code.

Speaking of thinking and research, I've had an interesting problem to tackle yesterday:
1. Have uploaded files stored in a secure location
2. Make it possible for them to be served directly by the server (serving large files through your application is not good)
3. Make it impossible to discover where the files are through crawling

So basically, pretty much implement the equivalent of an S3 bucket on your own server.

It took me some time to figure out a sensible solution. What most people do nowadays is that they store the files in the public directory (the only way to really have them served directly), in hashed folders. Then you create a service that periodically rehashes folder and/or file names and moves them around. This is pretty clunky and a total bitch to work with if you store the links in your database (since you have to update all the links whenever you move the files around).

I've managed to discover a nice solution to that from the 90's mp3 sharing websites. Then it was just a matter of making it better

Basically, files are uploaded to a secure location on the server (not accessible from the outside). Then, when the link to a file is requested, it generates a random folder in the public asset directory (SecureRandom.hex(64)) and creates a symlink to the file inside it. There's a cron set up on the server that scans this directory and removes all folders older than 30min. This way I get public assets served directly by the server with expiring links. I don't have to move the files around, store and update the links etc. Works like a charm.
Time is precious. Waste it wisely.
Craton
Profile Blog Joined December 2009
United States17281 Posts
December 08 2016 07:43 GMT
#16242
On December 08 2016 06:54 tofucake wrote:
I do about 5 hours of coding most days out of an 8.5 hour day. There's an hour for lunch, 15 minute standup, maybe another meeting, and a bunch of googling

Mines pretty similar, but probably less time spent on code and more on either pointless mandatory meeting(s) or research/design discussions. Research in my case often involves finding Waldo so he can give you some obscure documentation about a system you're going to be interfacing with.

I'm a government contractor currently on a bad project, if you hadn't guessed.

Last project was much closer to your day, with more time spent on actual coding and less on time wasters. It's hard to get a feel for an "average" day, since some days you'll be heads down coding all day and others you'll be in and out of meetings or doing a lot of research/googling.
twitch.tv/cratonz
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-12-08 22:14:44
December 08 2016 22:14 GMT
#16243
Could you recommend a good geometry book? I come across some software problems which require geometry and I'm having a hard time.
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
December 08 2016 22:24 GMT
#16244
I stumbled across a spring project, http://projects.spring.io/spring-cloud/

among the features it says:

- Distributed/versioned configuration
- Service registration and discovery
- Routing
- Service-to-service calls
- Load balancing
- Circuit Breakers
- Global locks
- Leadership election and cluster state
- Distributed messaging

my question is to what field those things are related to? don't say cloud computing because it's the vaguest term ever Are they about "parallel computing" ?

which books on what topic should I read to have an idea about these concepts?
Age of Mythology forever!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-12-08 22:54:56
December 08 2016 22:53 GMT
#16245
It reminds me of distributed systems, so it could be that. Here is a link to Wikipedia: https://en.wikipedia.org/wiki/Distributed_computing

I'm not sure what books to recommend though. I'm not an expert. Distributed systems do not have a specific field exactly. They're a popular topic in Computer Science and in industry.
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
December 08 2016 23:25 GMT
#16246
On December 09 2016 07:53 Shield wrote:
It reminds me of distributed systems, so it could be that. Here is a link to Wikipedia: https://en.wikipedia.org/wiki/Distributed_computing

I'm not sure what books to recommend though. I'm not an expert. Distributed systems do not have a specific field exactly. They're a popular topic in Computer Science and in industry.



just the topic name is very enough thanks


On December 09 2016 07:14 Shield wrote:
Could you recommend a good geometry book? I come across some software problems which require geometry and I'm having a hard time.


is high school euclidean geometry enough or something advanced like linear geometry needed?
Age of Mythology forever!
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-12-08 23:53:32
December 08 2016 23:46 GMT
#16247
On December 09 2016 08:25 mantequilla wrote:
Show nested quote +
On December 09 2016 07:53 Shield wrote:
It reminds me of distributed systems, so it could be that. Here is a link to Wikipedia: https://en.wikipedia.org/wiki/Distributed_computing

I'm not sure what books to recommend though. I'm not an expert. Distributed systems do not have a specific field exactly. They're a popular topic in Computer Science and in industry.



just the topic name is very enough thanks


Show nested quote +
On December 09 2016 07:14 Shield wrote:
Could you recommend a good geometry book? I come across some software problems which require geometry and I'm having a hard time.


is high school euclidean geometry enough or something advanced like linear geometry needed?


I think I should start with something simple like high school geometry. It will refresh my memory and it will be a good foundation before more advanced topics. Do you know any good books or online reading material?

Edit: I have found my Distributed Systems lectures. Lecturer recommended the following book back then, but note that I didn't read it. I just depended on lectures' content.

Andrew S. Tanenbaum, Maarten van Steen
Distributed Systems: Principles and Paradigms
Amazon: https://www.amazon.co.uk/Distributed-Systems-Principles-Andrew-Tanenbaum/dp/153028175X/ref=sr_1_1?ie=UTF8&qid=1481241043&sr=8-1&keywords=Distributed systems: principles and paradigms

Actually, comments suggest that it is outdated now. Maybe someone could suggest a more modern book.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-12-09 05:18:48
December 09 2016 01:23 GMT
#16248
--- Nuked ---
phar
Profile Joined August 2011
United States1080 Posts
December 09 2016 04:38 GMT
#16249
That Tanenbaum book is good.

Can also find a lot of random stuff online, e.g.
http://highscalability.com/blog/category/facebook
http://highscalability.com/google-architecture
http://book.mixu.net/distsys/single-page.html

etc etc

If you really want to learn how to do it, get a job at a big company and get paid to do it... you'll learn the hard way.
Who after all is today speaking about the destruction of the Armenians?
Manit0u
Profile Blog Joined August 2004
Poland17695 Posts
December 09 2016 07:26 GMT
#16250
Any book recommendations for Ruby and/or Rails?
Time is precious. Waste it wisely.
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
December 09 2016 09:47 GMT
#16251
On December 09 2016 10:23 Nesserev wrote:
Amazon seems to have a lot of good reviews for:
Distributed Systems: Concepts and Design - George F. Coulouris, Jean Dollimore, Gordon Blair, Tim Kindberg

EDIT:
Speaking of books, just finished 'Expert Python Programming (Second Edition)' by Michal Jaworski and Tarek Ziadé. I would recommend it to anyone who's familiar with Python, but feels like he/she's not fully up-to-snuff with common practices, features, etc. Gonna keep it as a reference book in my desk stack.


Great. Thanks.
Pathetic Greta hater.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-12-09 18:24:36
December 09 2016 18:09 GMT
#16252
On December 09 2016 08:46 Shield wrote:
Show nested quote +
On December 09 2016 08:25 mantequilla wrote:
On December 09 2016 07:53 Shield wrote:
It reminds me of distributed systems, so it could be that. Here is a link to Wikipedia: https://en.wikipedia.org/wiki/Distributed_computing

I'm not sure what books to recommend though. I'm not an expert. Distributed systems do not have a specific field exactly. They're a popular topic in Computer Science and in industry.



just the topic name is very enough thanks


On December 09 2016 07:14 Shield wrote:
Could you recommend a good geometry book? I come across some software problems which require geometry and I'm having a hard time.


is high school euclidean geometry enough or something advanced like linear geometry needed?


I think I should start with something simple like high school geometry. It will refresh my memory and it will be a good foundation before more advanced topics. Do you know any good books or online reading material?

Edit: I have found my Distributed Systems lectures. Lecturer recommended the following book back then, but note that I didn't read it. I just depended on lectures' content.

Andrew S. Tanenbaum, Maarten van Steen
Distributed Systems: Principles and Paradigms
Amazon: https://www.amazon.co.uk/Distributed-Systems-Principles-Andrew-Tanenbaum/dp/153028175X/ref=sr_1_1?ie=UTF8&qid=1481241043&sr=8-1&keywords=Distributed systems: principles and paradigms

Actually, comments suggest that it is outdated now. Maybe someone could suggest a more modern book.


My Distributed Systems lecturer taught things outside of the book but the recommended text was also Tanenbaum, I remember the name.

On December 08 2016 04:07 BluzMan wrote:
Quick question to those already in the industry: do you really (the truth now!) write comments in your code? All the open source libraries have these docstrings and fancy annotations, but does your actual production code not meant for public eyes have any?


Every workplace has different standards, but the sanest reason I can recall to always have comments is that all public interfaces have to be documented. Our system relied on a lot of dependency injection, which meant that you could use a service anywhere in the code. So to make sure anyone who used the service would know what you intended it to do, you would document it. This meant documenting expected events to listen for on the event bus, supported range of inputs to the method, what exactly was starting or stopping or connecting or disconnecting, how that lifecycle was intended to be used, what the class was used for, etc. Implementing the interface would be a lot more self-documenting, AbstractBleConnection into ConcreteBleConnection, etc., but it was also expected to document some hairier parts, if only at the top of the file. Specific design decisions for the change should go in the git commit message if they didn't fit elsewhere.

On December 08 2016 06:45 Chocolate wrote:
What does a day at work look like for you guys? I'm interviewing at some places and trying to figure out what to expect or look for. I did see a prototypical intern schedule somewhere that was like "arrive at 8 am, brush up on work, eat breakfast" and then some more stuff and then "6pm, go to company event with mentors" and I knew to stay the fuck away.

But like what do you do in a day? How much coding (both in terms of time and amount of code written, not lines but functionality) actually gets done? This past summer I was more of a glorified sysadmin (and it was in a research setting too...) than anything so I didn't really get to write very much.


The prototypical intern schedule I've had was more like, arrive at 9-1030 before the first meeting or stand-up in the day, work on something until lunch, lunch, potentially a random meeting, work until end of day at 6-7 depending on when you showed up. And by work I mean like, coding, googling, talking to other interns, asking people for help, organizing your tasks. Granted I interned at Microsoft as well, and Microsoft a bit more than other big name companies don't expect interns to be productive until 6 months after they start, which is obviously more than the length of the internship, so intern expectations are lower, but that's why they also really love returning interns.
There is no one like you in the universe.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-12-10 20:15:32
December 10 2016 20:12 GMT
#16253
I think im confusing myself pretty hard right now

I have an array of linked lists

my linked lists have nodes, defined in an inner class. here is it's constructor


node(T data) {
this.data = data;
next = null;
tail = this;
}



When I add an element to an index I do:


if(array[index] == null) {
array[index] = new Node<T>(element);
} else {
array[index].tail.next = new Node<T>(element);
array[index].tail = array[index].tail.next;
}


I think this is working for putting 2 elements into an index. But I think when I put a 3rd element into an index, it overwrites the 2nd element. I don't understand why, though..




edit:

geeze, I type this out and instantly solve my problem. I wasn't doing array[index].tail = array[index].tail.next; when I was resizing my array (if it got too full).

Rubber ducky debugging or w/e it's called really works lol
RoomOfMush
Profile Joined March 2015
1296 Posts
December 10 2016 21:13 GMT
#16254
I hope that code is for an assignment, because if you write code like that for production then oh boy are you in trouble.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
December 10 2016 21:21 GMT
#16255
It's for an assignment and that's not the actual code anyways

like, that's not the naming and formatting
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
Last Edited: 2016-12-10 23:43:14
December 10 2016 23:16 GMT
#16256
always try to "push the logic down" and meditate on encapsulation...

like I hate the things:


if(product.price == null || product.price == 0)


say insted


if(product.isFree())



how do you guys preserve space (indentation) when posting code here??
Age of Mythology forever!
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
December 11 2016 00:05 GMT
#16257
On December 11 2016 08:16 mantequilla wrote:
how do you guys preserve space (indentation) when posting code here??


There are code tags in bulletin board code. [.code] [./code]
I'll always be your shadow and veil your eyes from states of ain soph aur.
Targe
Profile Blog Joined February 2012
United Kingdom14103 Posts
Last Edited: 2016-12-11 14:04:46
December 11 2016 13:57 GMT
#16258
im producing TAC from the C compiler im working on but im not sure whether the way ive implemented things is overly complicated compared to what it needs to be, does the following seem to be that way?

for my sample program im using :

void main() {
int x = 1;
return x;
}


and the output TAC i get is:

load t0 1
load x t0
load t1 x
ret t1


my implementation of TAC functions like this:
[OPCODE] [DESTINATION] [OPERAND1] [OPERAND2]

tX are temporary registers, 'x' is the variable x, load loads operand1 into destination, ret returns



distributed/parallel books i was recommended at the start of my parallel course:

+ Show Spoiler +
"Highly Parallel Programming", Almasi & Gottlieb, Benjamin Cummings
"Computer Architecture and Parallel Processing", Hwang & Briggs, McGraw-Hill
"Concurrent Programming Principles and Practice", Andrews, Benjamin Cummings
"Introduction to Parallel Computing", Kumar, Grama, Gupta, Karypis, Benjamin Cummings
"Concurrent Programming", Burns & Davies, Addison-Wesley
"Designing and Building Parallel Programs", Foster, Addison Wesley
"Distributed Algorithms", Lynch, Morgan Kaufmann
"Concurrency: State Models & Java Programs" Magee and Kramer, Wiley
"Introduction to High-Performance Scientific Computing" Eijkhout
"Principles of Concurrent and Distributed Programming", Ben-Ari, Prentice Hall
"Communicating Sequential Processes", Hoare, Prentice Hall


idk if that helps
11/5/14 CATACLYSM | The South West's worst Falco main
Acrofales
Profile Joined August 2010
Spain18239 Posts
December 11 2016 19:41 GMT
#16259
On December 11 2016 08:16 mantequilla wrote:
always try to "push the logic down" and meditate on encapsulation...

like I hate the things:

Show nested quote +

if(product.price == null || product.price == 0)


say insted


Show nested quote +
if(product.isFree())



how do you guys preserve space (indentation) when posting code here??


No. Those are two different things. You should then do:

if(!product.hasPrice() || product.isFree())


and that's just dumb. Perfectly okay to use actual logic clauses, as long as it is a fairly clear case.

And for code, use code tags. It says so in the header of this thread...
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-12-11 21:50:24
December 11 2016 21:28 GMT
#16260
edit:

figured it out

rubber ducky debugging is the truth
Prev 1 811 812 813 814 815 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 27m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 509
PiGStarcraft221
JuggernautJason104
Livibee 42
Codebar 21
StarCraft: Brood War
Britney 15116
Horang2 465
Artosis 369
Backho 29
NotJumperer 14
IntoTheRainbow 12
LancerX 4
Dota 2
monkeys_forever531
League of Legends
JimRising 566
Counter-Strike
byalli530
taco 274
Super Smash Bros
AZ_Axe85
PPMD36
Heroes of the Storm
Liquid`Hasu368
Trikslyr51
Other Games
summit1g5567
Beastyqt549
B2W.Neo385
mouzStarbuck207
C9.Mang0147
ViBE45
minikerr2
Organizations
Dota 2
PGL Dota 2 - Main Stream120
Other Games
BasetradeTV84
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Hupsaiya 96
• musti20045 17
• Adnapsc2 8
• Reevou 2
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• RayReign 52
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21394
League of Legends
• TFBlade865
Other Games
• imaqtpie1386
• Scarra1142
• Shiphtur241
Upcoming Events
Replay Cast
1h 27m
KCM Race Survival
11h 27m
WardiTV Team League
13h 27m
Big Brain Bouts
18h 27m
Korean StarCraft League
1d 4h
RSL Revival
1d 11h
Maru vs Zoun
Cure vs ByuN
uThermal 2v2 Circuit
1d 16h
BSL
1d 21h
RSL Revival
2 days
herO vs MaxPax
Rogue vs TriGGeR
BSL
2 days
[ Show More ]
Replay Cast
3 days
Replay Cast
3 days
Afreeca Starleague
3 days
Sharp vs Scan
Rain vs Mong
Wardi Open
3 days
Monday Night Weeklies
3 days
Sparkling Tuna Cup
4 days
Afreeca Starleague
4 days
Soulkey vs Ample
JyJ vs sSak
Replay Cast
5 days
Afreeca Starleague
5 days
hero vs YSC
Larva vs Shine
Kung Fu Cup
5 days
Replay Cast
6 days
The PondCast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-18
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
CSL Elite League 2026
RSL Revival: Season 4
Nations Cup 2026
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
CSL 2026 SPRING (S20)
CSL Season 20: Qualifier 1
Acropolis #4
IPSL Spring 2026
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 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 © 2026 TLnet. All Rights Reserved.