• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:22
CEST 03:22
KST 10:22
  • 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 ASL54Weekly Cups (June 23-29): Reynor in world title form?12FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
The SCII GOAT: A statistical Evaluation The GOAT ranking of GOAT rankings Statistics for vetoed/disliked maps How does the number of casters affect your enjoyment of esports? Esports World Cup 2025 - Final Player Roster
Tourneys
Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) RSL: Revival, a new crowdfunded tournament series [GSL 2025] Code S: Season 2 - Semi Finals & Finals $5,100+ SEL Season 2 Championship (SC: Evo)
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 BGH Auto Balance -> http://bghmmr.eu/ Player “Jedi” cheat on CSL Unit and Spell Similarities Help: rep cant save
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
Things Aren’t Peaceful in Palestine US Politics Mega-thread Trading/Investing Thread Russo-Ukrainian War Thread 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
Formula 1 Discussion 2024 - 2025 Football Thread 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: 618 users

The Big Programming Thread - Page 667

Forum Index > General Forum
Post a Reply
Prev 1 665 666 667 668 669 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.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
October 03 2015 10:31 GMT
#13321
On October 03 2015 18:34 Itsmedudeman wrote:
Show nested quote +
On October 03 2015 18:21 Manit0u wrote:
On October 03 2015 18:07 Itsmedudeman wrote:
Quick question, might be a meaningless one and I might be overthinking it but I feel like I'm not since I've heard different things about coding practices. Anyways, I'm working in java and I have a class that stores different information like strings, integers, and also a list of arrays that's of size 2. The array is supposed to store a time range. So if 6 is the first value, and 7 is the second value then that represents 6 am to 7 am. So I was just wondering if it's correct to code this way or should I define a separate class for time range that holds a value for start and end? I feel like that would make the code more readable and easy to understand, but it might be a bit "out of the way" to code in such a fashion.


First thing you should do in any language is do some research, so you don't end up reinventing the wheel...

https://docs.oracle.com/javase/tutorial/datetime/iso/datetime.html
https://docs.oracle.com/javase/tutorial/datetime/iso/period.html
http://joda-time.sourceforge.net/api-release/org/joda/time/Period.html
http://joda-time.sourceforge.net/api-release/org/joda/time/Interval.html

It's cool there's an existing class for this and all, but it doesn't really solve my problem/answer my question. My point being that I feel it would be best for me to hold my times as a set of 2 to represent a beginning and an end, my interest is not with the duration between those two time periods. I would still have to create 2 localtime objects for each set of values. So the essence of my question is how should I structure this in my class? Even if I use these APIs?

To explain a bit further on what I'm working on, I want to hold multiple time sets for each person object. Later on I'm going to use these time sets in an algorithm which, as far as I know, isn't covered by existing APIs. Also, I feel that the localtime class is overly complex for what I want to store which doesn't involve minutes or seconds.

edit: I guess the interval class structures it the way I'm thinking of now that I look at it. It still has a lot of fields that I find unnecessary so I might make my own class.

You're optimizing prematurely. If you want to store a time, use an existing time class. If you want to store a range, use an existing range class. Only if you have actual performance or memory problems and used a profiler to determine that this algorithm is part of the problem, consider using a custom implementation.
If you have a good reason to disagree with the above, please tell me. Thank you.
Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
October 03 2015 11:27 GMT
#13322
Hm, yeah. Also if I wanna add stuff in the future it would be good having the API already.
Acrofales
Profile Joined August 2010
Spain17970 Posts
October 03 2015 13:11 GMT
#13323
General rule of thumb. If there's a standard library that does what you want, use it.

Not only will it save you time programming, but standard libraries are usually debugged pretty thoroughly and optimized quite well. This is especially true for Java.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2015-10-03 17:18:22
October 03 2015 17:14 GMT
#13324
On October 03 2015 22:11 Acrofales wrote:
General rule of thumb. If there's a standard library that does what you want, use it.

Not only will it save you time programming, but standard libraries are usually debugged pretty thoroughly and optimized quite well. This is especially true for Java.


Not to mention interoperability with other libraries (possibly written by someone else entirely) if you have to do it somewhere down the line.

And of course debugging/refactoring by someone else if such need arises. It's much easier to understand what someone else's code does (or even your own if you have to return to it after a while) if it's using standard libraries and built-in functionality for the most part.
Time is precious. Waste it wisely.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 03 2015 20:57 GMT
#13325
On October 03 2015 17:03 SacredCoconut wrote:
I started internship 2 weeks ago, and using mainly python. I had no experience before, but it feels quit natural to use.

But i would be interested in reading some book/online guide on good practices. I have been reading python hitchhiker's guide little.

Commenting has been makeing me wonder for while already. Not only python, but in each lanquage i have no idea how, much should i comment. It feels like it would be stupid to comment on everything, but then again something clear to me might not be clear to the reader.


For signal/noise ratio I haven't found better Python guide then http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html.


On October 03 2015 18:07 Itsmedudeman wrote:
Quick question, might be a meaningless one and I might be overthinking it but I feel like I'm not since I've heard different things about coding practices. Anyways, I'm working in java and I have a class that stores different information like strings, integers, and also a list of arrays that's of size 2. The array is supposed to store a time range. So if 6 is the first value, and 7 is the second value then that represents 6 am to 7 am. So I was just wondering if it's correct to code this way or should I define a separate class for time range that holds a value for start and end? I feel like that would make the code more readable and easy to understand, but it might be a bit "out of the way" to code in such a fashion.


1) If you're determined not to use anything like Duration (java 8 date api basically Joda now I think), I'd go with a class with start/end LocalDate objects or something.



Say I have a service that downloads something every 5 minutes. How to set it up so I can run multiple nodes but only one goes does download? Do I use zookeeper and have shared lock?


RIP GOMTV. RIP PROLEAGUE.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2015-10-04 22:50:44
October 04 2015 22:46 GMT
#13326
On October 04 2015 05:57 teamamerica wrote:
Say I have a service that downloads something every 5 minutes. How to set it up so I can run multiple nodes but only one goes does download? Do I use zookeeper and have shared lock?


Only one can download at a time or only one can download ever?

In the first case, you may use the zookeeper with distributed lock, in the second case you should be fine with just a regular event listener.

Anyway, you may want to take a look at the Curator library for some ideas (or just use it).
Time is precious. Waste it wisely.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2015-10-05 00:18:53
October 05 2015 00:15 GMT
#13327
On October 04 2015 05:57 teamamerica wrote:

Say I have a service that downloads something every 5 minutes. How to set it up so I can run multiple nodes but only one goes does download? Do I use zookeeper and have shared lock?



Are you in java? You can also use quartz with a jdbc job store and DisallowConcurrentExecution.
Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
October 05 2015 02:01 GMT
#13328
Why are so many java class objects immutable? Really annoying sometimes when I want to change fields later.
phantomfive
Profile Joined April 2010
Korea (South)404 Posts
October 05 2015 02:37 GMT
#13329
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.

There are some languages where every variable is immutable. The reason is to make it easier to avoid bugs.

When programmers become more advanced, they stop thinking, "how can I make this work?" and start thinking, "How can I avoid bugs?"
To ease another's heartache is to forget one's own - Lincoln
r3dox
Profile Blog Joined May 2003
Germany261 Posts
October 05 2015 17:54 GMT
#13330
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.


immutable is great.
do you want to change a field within an immutable object? then you probably didnt understand the API correctly.

if you have a class of your own with an immutable object in a field, just assign a new value to the field.
Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
Last Edited: 2015-10-05 23:50:34
October 05 2015 23:44 GMT
#13331
On October 05 2015 11:37 phantomfive 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.

There are some languages where every variable is immutable. The reason is to make it easier to avoid bugs.

When programmers become more advanced, they stop thinking, "how can I make this work?" and start thinking, "How can I avoid bugs?"

So in the case of the Date class which is mutable and the DateTime class which is immutable is Date safe against changes that those who created DateTime wanted to prevent? Or is that just up to the programmer to take as a risk and hope that the user uses the library correctly? It just seems strange to me that there's no consistency in libraries and no concrete coding practice to make class objects mutable or immutable. For example, in the case of Strings, people clearly wanted a mutable variation for easier String manipulation so that's why StringBuffer exists. Does that mean String avoids bugs that StringBuffer doesn't?
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2015-10-07 07:39:06
October 06 2015 00:12 GMT
#13332
Are you talking about Joda or standard Java here? Because Date class has been deprecated ages ago in Java and is not present in Joda at all.

Edit: Come to think of it, Joda is being shelved for java.time too...
Time is precious. Waste it wisely.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
Last Edited: 2015-10-09 15:31:33
October 09 2015 15:28 GMT
#13333
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?
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.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2015-10-10 08:03:44
October 10 2015 07:56 GMT
#13334
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


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.
Who after all is today speaking about the destruction of the Armenians?
SpiZe
Profile Joined December 2010
Canada3640 Posts
October 10 2015 20:36 GMT
#13335
Hey guys, it's been a while since I've done C++ and I'm really confused about a problem I'm having.

I have a class ColonneCartes.h such as

#include <vector>
#include "Carte.h"
namespace solitaire
{
class ColonneCartes
{
...
public:
friend std::ostream operator<<(std::ostream& p_sortie, const ColonneCartes& p_colonneCartes);
...
}
}


and in ColonneCarte.cpp

#include "ColonneCarte.h"
using namespace std;
namespace solitaire
{
ostream& operator<<(ostream& p_sortie, const ColonneCartes& p_colonneCartes)
{
//some code
}
}


Now when attemping to compile I get "ambiguating new declaration of 'std::ostream& solitaire::operator<<(std::ostream&, const solitaire::ColonneCartes&)' on my implementation in my .cpp when I try to implement my operator<<.

Now I'm not sure what's going on here, I did not try to implement it twice, and I do not have another operator<< overload with the same parameters, although I do have another operator<< overload take a const Carte& as parameter in my namespace. I guess the problem stems from here but I have no idea why, or how to fix it ?

Is it wrong to include my operator overload in my namespace ?

Thanks
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2015-10-10 21:06:18
October 10 2015 20:47 GMT
#13336
--- Nuked ---
SpiZe
Profile Joined December 2010
Canada3640 Posts
October 10 2015 20:49 GMT
#13337
On October 11 2015 05:47 Nesserev wrote:
Show nested quote +
On October 11 2015 05:36 SpiZe wrote:
Hey guys, it's been a while since I've done C++ and I'm really confused about a problem I'm having.

I have a class ColonneCartes.h such as

#include <vector>
#include "Carte.h"
namespace solitaire
{
class ColonneCartes
{
...
public:
friend std::ostream operator<<(std::ostream& p_sortie, const ColonneCartes& p_colonneCartes);
...
}
}


and in ColonneCarte.cpp

#include "ColonneCarte.h"
using namespace std;
namespace solitaire
{
ostream& operator<<(ostream& p_sortie, const ColonneCartes& p_colonneCartes)
{
//some code
}
}


Now when attemping to compile I get "ambiguating new declaration of 'std::ostream& solitaire::operator<<(std::ostream&, const solitaire::ColonneCartes&)' on my implementation in my .cpp when I try to implement my operator<<.

Now I'm not sure what's going on here, I did not try to implement it twice, and I do not have another operator<< overload with the same parameters, although I do have another operator<< overload take a const Carte& as parameter in my namespace. I guess the problem stems from here but I have no idea why, or how to fix it ?

Is it wrong to include my operator overload in my namespace ?

Thanks

You return a std::ostream object in your function's friend declaration, but you return a reference to an std::ostream object in the function definition.


Oh well would you look at that I'm retarded, thanks a lot friend.
phar
Profile Joined August 2011
United States1080 Posts
October 10 2015 23:55 GMT
#13338
Don't sweat it. The number of hours you spend on single character mistakes during your career will keep on increasing roughly linearly.
Who after all is today speaking about the destruction of the Armenians?
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 12 2015 04:33 GMT
#13339
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?
RIP GOMTV. RIP PROLEAGUE.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
October 12 2015 05:47 GMT
#13340
--- Nuked ---
Prev 1 665 666 667 668 669 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 38m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 266
RuFF_SC2 137
Livibee 87
StarCraft: Brood War
Sea 1098
NaDa 40
Icarus 2
Dota 2
420jenkins668
capcasts134
NeuroSwarm92
febbydoto10
LuMiX1
League of Legends
JimRising 686
Counter-Strike
Stewie2K751
taco 608
Other Games
summit1g10365
tarik_tv4837
ViBE191
Organizations
Other Games
BasetradeTV70
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Berry_CruncH244
• Hupsaiya 108
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki16
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift4827
• Jankos1588
• masondota2974
Upcoming Events
Korean StarCraft League
1h 38m
CranKy Ducklings
8h 38m
RSL Revival
8h 38m
ByuN vs Cham
herO vs Reynor
FEL
14h 38m
RSL Revival
1d 8h
Clem vs Classic
SHIN vs Cure
FEL
1d 10h
BSL: ProLeague
1d 16h
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
3 days
The PondCast
4 days
[ Show More ]
Replay Cast
4 days
RSL Revival
5 days
Replay Cast
5 days
RSL Revival
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.