• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:23
CEST 03:23
KST 10:23
  • 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: 617 users

The Big Programming Thread - Page 604

Forum Index > General Forum
Post a Reply
Prev 1 602 603 604 605 606 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.
SpiZe
Profile Joined December 2010
Canada3640 Posts
March 11 2015 23:09 GMT
#12061
Hi guys, I have a time period (lets call it A), that goes from say February 1st to April 1st. I also have multiple others smaller time periods (lets call them B) and I have to make sure that my A is always covered by a B period. So at any given time, there is an overlap between A and a B period. Thing is, I have absolutely no idea how one should proceed to do this. Anyone has ideas ?
Acrofales
Profile Joined August 2010
Spain17970 Posts
March 11 2015 23:25 GMT
#12062
On March 12 2015 07:05 enigmaticcam wrote:
Ok, so I have a programming problem I'm trying to solve. Any help would be appreciated.

I'm scheduling users to daily jobs for a given month. I have a specific set of users and a specific set of jobs. However, one day might not have the same set of jobs as another. There are various hard rules, such as not allowing one user to be scheduled more than twice in a day - hard rules can't be broken. There are various soft rules, such as scheduling the same user to the same job two days in a row - soft rules can be broken. I want to write a program that will give me the best combination for a given month - one combination is better than another if it breaks less soft rules (no combination is good if it breaks any hard rule). I also want to be able to add or remove rules easily, so there's no dependency on the rules themselves, only that they are either hard or soft.

The difficulty I'm having is that you can't really put a score on a user to a job unless you've accounted for all other jobs due to the nature of the rules. For example, I can't say that adding John to job 2 on day3 is good or bad unless I know if he was already added on that same day. So it seems to me then that dynamic programming is out because you can't break the problem down into smaller components to solve. Also, I don't think brute forcing will work if you have a large amount of job types, users, and jobs per day. Too many variations.

Any help you can offer would be appreciated!

It sounds like a Constraint Optimization problem, as opposed to Constraint Satisfaction.

Branch and bound is probably your best bet. It's not a simple algorithm, and seeing as the problem is NP complete, there are plenty of problem-specific heuristics that may or may not help you. Most good books on advanced algorithms have a chapter on branch and bound. Alternatively, start with the wiki page, which has a boatload of references.
Acrofales
Profile Joined August 2010
Spain17970 Posts
March 11 2015 23:28 GMT
#12063
On March 12 2015 08:09 SpiZe wrote:
Hi guys, I have a time period (lets call it A), that goes from say February 1st to April 1st. I also have multiple others smaller time periods (lets call them B) and I have to make sure that my A is always covered by a B period. So at any given time, there is an overlap between A and a B period. Thing is, I have absolutely no idea how one should proceed to do this. Anyone has ideas ?

Just some overlap? Or completely covered?

Completely covered is pretty simple: just loop over your B periods and find any with a starting datetime earlier or equal to A's starting datetime and ending datetime later or equal to A's ending datetime. If you find one, break out of the loop and return it. If you don't, return false, throw an exception or whatever your solution calls for. Partial overlap requires 2 extra checks, but can be done with a similar approach.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 12 2015 12:32 GMT
#12064

protected function getIndexRedirectParams($date)
{
return "?make_sale_filter%5Btype%5D="
. "&make_sale_filter%5BdocumentNumber%5D="
. "&make_sale_filter%5Bcustomer%5D="
. "&make_sale_filter%5BcustomerName%5D="
. "&make_sale_filter%5BcustomerCity%5D="
. "&make_sale_filter%5BissuedAt%5D%5Bleft_month%5D={$date}"
. "&make_sale_filter%5BissuedAt%5D%5Bright_month%5D={$date}"
. "&filter_action=apply"
. "&make_sale_filter%5BvalueGross%5D%5Bleft_number%5D="
. "&make_sale_filter%5BvalueGross%5D%5Bright_number%5D="
. "&make_sale_filter%5BremainingValue%5D%5Bleft_number%5D="
. "&make_sale_filter%5BremainingValue%5D%5Bright_number%5D="
. "&make_sale_filter%5BshouldBePaidAt%5D%5Bleft_month%5D="
. "&make_sale_filter%5BshouldBePaidAt%5D%5Bright_month%5D="
. "&make_sale_filter%5BdaysAfterPayDate%5D="
. "&make_sale_filter%5BisPaid%5D="
. "&make_sale_filter%5BcustomerIsIndividual%5D=";
}


T_T

And that's after I've refactored it a bit to see what's going on, previously it was just this uber-long string being appended to the path. Funny thing is, if you remove the empty filters all the others stop working too...

So much for pretty urls...
Time is precious. Waste it wisely.
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
March 12 2015 15:23 GMT
#12065
On March 12 2015 08:02 Zocat wrote:
Do you need to find the best solution (global optima) or a "good enough" solution (local optima)?

What is the rough user/job size? Hundreds, thousands, millions, unlimited?

Adding / removing rules depends on your rule complexity. Changing a rule can be easy (not working 3 days in a row), but adding a completely new rule might be complicated (user X doesn't like to do job Y, but he can do it if necessary).

If you don't need the global optima I would look into genetic algorithms. The fitness function sounds easy enough to implement with your set of rules and hard-rule breaking offspring can die off immediately.

"Good enough" is certainly good enough. In fact, if a solution is found that doesn't break any rules, it can stop there. For a given month, there are 40 possible jobs to fill on average, with 8 users on average to fill each job. So the number of possibilities is about 8^40.

I had forgotten about genetic algorithms! I've got some experience with those, I might go that route. Thank you!

On March 12 2015 08:25 Acrofales wrote:Branch and bound is probably your best bet. It's not a simple algorithm, and seeing as the problem is NP complete, there are plenty of problem-specific heuristics that may or may not help you. Most good books on advanced algorithms have a chapter on branch and bound. Alternatively, start with the wiki page, which has a boatload of references.

I looked this up. The description on wiki is practically exactly the solution I'm looking for. But as you say, it doesn't look easy to implement. I'll try the genetic algorithm first, but if for some reason that doesn't work, I'll give this a try. Thanks!
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 13 2015 01:24 GMT
#12066
What is the difference between an empty array and a null array? How do you have an empty array that is not null?
Acrofales
Profile Joined August 2010
Spain17970 Posts
Last Edited: 2015-03-13 01:36:32
March 13 2015 01:33 GMT
#12067
On March 13 2015 10:24 travis wrote:
What is the difference between an empty array and a null array? How do you have an empty array that is not null?

Depends on the language, but generally, a null array will be a variable that has been declared, but not instantiated, whereas an empty array is an array of length 0 that has been instantiated.

To put it in java terms, lets say you have declared an int[] foo without instantiating it. Calling foo[0] will throw a NullPointerException, because java does not know where to even start looking for foo (memory has not been allocated). On the other hand, if you have declared int[] foo = new int[0], and then you call foo[0], it will throw an ArrayIndexOutOfBoundsException, because foo has been allocated, but there is no 0th element in the array.

PS. I didn't actually try this code, and it is entirely possible that the Java compiler catches these situations and does not even allow you to do this stuff, but it is meant more as an illustration than a coding example.

PS2. I said it depends on the language, because in some languages it's possible there is no difference.
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2015-03-13 01:54:50
March 13 2015 01:35 GMT
#12068
On March 13 2015 10:24 travis wrote:
What is the difference between an empty array and a null array? How do you have an empty array that is not null?


A null array would mean you declared a reference to an array, but didn't initialize an array to place in that reference. An empty array would be what you get when you initialize it.

int[] numbers;

versus
int[] numbers = new int[];


It makes more sense if it's a collection like an arraylist rather than an array I imagine.
I'll always be your shadow and veil your eyes from states of ain soph aur.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2015-03-13 01:45:25
March 13 2015 01:44 GMT
#12069
gah i have to work in a file where people don't unlock the synclock before calling eventhandler and firing async events... 1 day debugging a deadlock...sad i can't just refactor stuff without a care
There is no one like you in the universe.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2015-03-13 22:28:49
March 13 2015 22:27 GMT
#12070
On March 13 2015 10:44 Blisse wrote:
gah i have to work in a file where people don't unlock the synclock before calling eventhandler and firing async events... 1 day debugging a deadlock...sad i can't just refactor stuff without a care


I feel your pain. Right now I'm doing some refactoring on the legacy code... Entities in the model don't match the database, relations that are declared aren't there (there are no columns like that in the database for example) etc. etc.

2 days debugging and fixing it, just to do something that shouldn't take more than 15 minutes. For the first 3 hours me and other developers were wondering why the hell stuff doesn't work when it clearly should. Scouring the 400 tables of the db revealed our issues. To our horror though, this 400 tables are just for the system skeleton to work, it's using 5 different databases, each on a different server and some of them are really huge. Now we have to somehow fix this mess without breaking it (since the system is being used by several companies). The worst part of it is that each new registered user in any of those companies gets his own DB instance, which is being populated with entries that don't match the model.
Time is precious. Waste it wisely.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2015-03-14 01:05:29
March 14 2015 00:50 GMT
#12071
On March 13 2015 10:24 travis wrote:
What is the difference between an empty array and a null array? How do you have an empty array that is not null?


Google is very useful. Why don't you search for simple questions there? http://stackoverflow.com/questions/27476845/difference-between-a-null-array-and-empty-array-in-java

On March 10 2015 03:01 Ropid wrote:
Show nested quote +
On March 10 2015 01:01 sabas123 wrote:
Currently im writing alot of structs and giving them an unique id to identify them later.

constantly looking up the latest id I putted in/looking up the id of the struct is a bit of an pain. any way I can do this automatically with something like an enum?

The OOP way is using "virtual" functions. Behind the scenes, those are basically a pointer to a function getting added to the data structure. When you then have a base class and derive a bunch of specialized classes from it, and you then have a collection of elements of that base class, you can call that virtual function on any element of your collection, and what will run is the function from the specialized class without any type casting needed.

No idea if that's better or worse than doing things manually like what you're doing right now with your IDs.


If I have to be picky, there's no "virtual function". Function is not part of a class. Function which belongs to a class is called a method. Anyway, virtual methods are resolved at runtime and that is their difference compared to "regular" methods. If you have derived classes in C++ and want to have different behaviour from base class, then you should better declare them virtual. I'm not sure if C# works in the same way although it has 'virtual', but I guess it should. I've just not tested it.

Edit: I know Java has no virtual methods but are they all virtual by default/implicitly? I remember overriding a method is done by the @Override attribute.

Edit2: I should follow my own advice. Yes, methods are virtual by default.
Lascero
Profile Joined July 2010
United States59 Posts
March 15 2015 20:07 GMT
#12072
Career optimization questions!

1. My first job has me in the deep end. Some people enjoy this, but code reviews stopped for all new hires after the first two months and we have no automated testing or any real coding standards besides "don't break prod". I feel like I'm only learning how to code for this particular job and product and platform. Would this affect me negatively if I explained this situation to other employers? Would I be a dick for leaving a job for the same reason? (phrased along the lines of "I didn't feel like I could grow" or "I wanted a new challenge")

2. Coding after work seems to suck. I'm mentally drained and don't really feel excited about starting anything, although it's still fun to read about things and do hand-holding tutorials. Is this a mental block that I can overcome by just brute forcing or will it go away on its own once my day job feels more routine and is easier? It feels routine now, but there is still some struggling to fix/build things. This is how I would fix the skill gaps that my job won't directly teach me but I don't want to completely burn out and just hate everything.

3. Is there a grunt-like position for security? Maybe a bit underpaid but still rewarding? I know that's aiming a bit low, but I'm trying a few different areas and I'm trying to get a feel for the time investment of being good at it and when you can first start being useful to someone. Does anyone really care if you start at the bottom, or is it better to just acquire more than the minimum skills, say 1 or 2 years of practice and learning, and first enter the industry at a higher level?

Thanks
LaNague
Profile Blog Joined April 2010
Germany9118 Posts
March 15 2015 23:29 GMT
#12073
1. you can never be a dick for changing workplaces, in my oppinion. Employer and employee all know what ttheir professional relationship is.

2. I have the same problem, i rather play games than be productive when im at my home PC, no idea how to "fix".
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 16 2015 17:38 GMT
#12074
I have phases where I can be productive at home, and then phases where I just don't have enough motivation. These phases last anywhere from a week to several months...
If you have a good reason to disagree with the above, please tell me. Thank you.
r3dox
Profile Blog Joined May 2003
Germany261 Posts
March 16 2015 18:49 GMT
#12075
1) if you were to apply at my company and say that, I would ask you what you tried to improve your situation...
did you ask for continued code reviews to improve quality?
did you look into areas that could be tested automatically?
did you suggest deciding coding standards?

2) basically the same for me, i rather Play games or read about stuff than code as a Hobby. It would be different if i had a Project to work on with others... anyone wanna hack on some 2d game code together?
BisuDagger
Profile Blog Joined October 2009
Bisutopia19229 Posts
Last Edited: 2015-03-16 19:36:38
March 16 2015 19:36 GMT
#12076
Anyone know how to change the wallpaper to color black from the terminal/a makefile in KDE4? Additionally, how would I apply it to more then one screen?

Thanks in advance!
edit: this is on RHEL7 if that makes any differences.
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
nunez
Profile Blog Joined February 2011
Norway4003 Posts
March 16 2015 20:33 GMT
#12077
On March 17 2015 02:38 spinesheath wrote:
I have phases where I can be productive at home, and then phases where I just don't have enough motivation. These phases last anywhere from a week to several months...

producing what?
pet projects or work?
conspired against by a confederacy of dunces.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 16 2015 21:25 GMT
#12078
On March 17 2015 05:33 nunez wrote:
Show nested quote +
On March 17 2015 02:38 spinesheath wrote:
I have phases where I can be productive at home, and then phases where I just don't have enough motivation. These phases last anywhere from a week to several months...

producing what?
pet projects or work?

Pet projects. I have a regular full time job which usually exhausts my desire to write code for one day. Well, unless I have one of my productive phases.
If you have a good reason to disagree with the above, please tell me. Thank you.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
March 16 2015 21:35 GMT
#12079
ah, i have found that my job not only exhaust, but also perverts my desires.
i find it difficult to decouple from whatever problem i am facing at work,
and my pet projects end up being solving the same problems, except
phrased more comfortably.
conspired against by a confederacy of dunces.
Acrofales
Profile Joined August 2010
Spain17970 Posts
March 16 2015 22:21 GMT
#12080
I have to say that that is a pretty normal reaction in my experience. When studying, I had fun with some pet projects. Nowadays unless it serves a serious purpose (work or a course), I don't program anything at home.
Prev 1 602 603 604 605 606 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 37m
[ 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 37m
CranKy Ducklings
8h 37m
RSL Revival
8h 37m
ByuN vs Cham
herO vs Reynor
FEL
14h 37m
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...

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.