• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 22:23
CEST 04:23
KST 11: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
HomeStory 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 Energy6Code S RO8 Preview: herO, Zoun, Bunny, Classic7
Community News
Weekly Cups (June 23-29): Reynor in world title form?12FEL Cracov 2025 (July 27) - $8000 live event16Esports World Cup 2025 - Final Player Roster14Weekly Cups (June 16-22): Clem strikes back1Weekly Cups (June 9-15): herO doubles on GSL week4
StarCraft 2
General
Weekly Cups (June 23-29): Reynor in world title form? StarCraft Mass Recall: SC1 campaigns on SC2 thread The SCII GOAT: A statistical Evaluation How does the number of casters affect your enjoyment of esports? Esports World Cup 2025 - Final Player Roster
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event HomeStory Cup 27 (June 27-29) WardiTV Mondays SOOPer7s Showmatches 2025 $200 Biweekly - StarCraft Evolution League #1
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers [G] Darkgrid Layout
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
ASL20 Preliminary Maps BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion StarCraft & BroodWar Campaign Speedrun Quest Unit and Spell Similarities
Tourneys
[Megathread] Daily Proleagues [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET The Casual Games of the Week Thread [BSL20] ProLeague LB Final - Saturday 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
Trading/Investing Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Stop Killing Games - European Citizens Initiative Russo-Ukrainian War Thread
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread Korean Music Discussion
Sports
2024 - 2025 Football Thread NBA General Discussion Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
Game Sound vs. Music: The Im…
TrAiDoS
StarCraft improvement
iopq
Heero Yuy & the Tax…
KrillinFromwales
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 528 users

The Big Programming Thread - Page 670

Forum Index > General Forum
Post a Reply
Prev 1 668 669 670 671 672 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.
Manit0u
Profile Blog Joined August 2004
Poland17242 Posts
Last Edited: 2015-10-19 15:17:52
October 19 2015 15:16 GMT
#13381

$str = explode(' ', $attributes);

foreach ($str as $string) {
if (strstr($string, 'something')) {
$service = explode('something', $string);
}
}

return substr($service[1], 0, -1);


I just love it when people write self-documenting code... It strikes the right strings.
Time is precious. Waste it wisely.
Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
Last Edited: 2015-10-20 18:40:22
October 20 2015 18:39 GMT
#13382
So it just so happens I'm taking a microcontroller class this quarter using AVR and our professor had code that counted using a modulo operator like so:


if((count % 64) == 0) {
//do something
}

His reasoning for this was so that you could avoid resetting the counter back to 0 every time the loop executes. Is that right? You lose one line of code but you end up using modulo which is probably a super expensive computation in comparison to a simple equality check and reset.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
October 20 2015 19:08 GMT
#13383
On October 21 2015 03:39 Itsmedudeman wrote:
So it just so happens I'm taking a microcontroller class this quarter using AVR and our professor had code that counted using a modulo operator like so:


if((count % 64) == 0) {
//do something
}

His reasoning for this was so that you could avoid resetting the counter back to 0 every time the loop executes. Is that right? You lose one line of code but you end up using modulo which is probably a super expensive computation in comparison to a simple equality check and reset.

Your compiler will (or at least should) turn a modulo of a (constant) power of 2 into a simple bitmask, which should be a lot faster than a conditional jump. In the general case modulo is slow though.

I suppose at microcontroller level this stuff might actually be relevant, but always remember that you should profile before you do something in the name of performance.
If you have a good reason to disagree with the above, please tell me. Thank you.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2015-10-21 01:15:49
October 21 2015 01:15 GMT
#13384
Basically my last week at work has been profiling stupid Bluetooth code, fml and f Bluetooth. The word profiling causes physical pain to me.



Going to take the hardest programming class at my university next term, real-time os or "trains" as we call it. A lot of embedded C :3 any tips for preparation? I feel like I should write some C utility libraries for linked lists and queues and unit tests.
There is no one like you in the universe.
MysteryMeat1
Profile Blog Joined June 2011
United States3291 Posts
Last Edited: 2015-10-21 07:43:30
October 21 2015 07:19 GMT
#13385
I had a quick jquery question. I'm making my table and i'm appending rows and stuff.

$('.table').append("<tr><td>Non-white</td><td>'nMen'</td><td>'nWomen'</td><</tr>'");

nMen and nWomen are both variables but I dont know how to reference them so they show up as numbers and not as nMen and nWomen in the cell.

EDIT: Solved my own question
"Cause ya know, Style before victory." -The greatest mafia player alive
windzor
Profile Joined October 2010
Denmark1013 Posts
October 21 2015 07:23 GMT
#13386
On October 21 2015 03:39 Itsmedudeman wrote:
So it just so happens I'm taking a microcontroller class this quarter using AVR and our professor had code that counted using a modulo operator like so:


if((count % 64) == 0) {
//do something
}

His reasoning for this was so that you could avoid resetting the counter back to 0 every time the loop executes. Is that right? You lose one line of code but you end up using modulo which is probably a super expensive computation in comparison to a simple equality check and reset.


It's properly a general rule he learned on a platform which had this feature. It might not be true in the general case.

In microcontrollers you sometimes do weird things. Today on several highly used platforms you should stay far away from switch statements and just use else if statements. It saves 40% power... Which is absurd to wrap ones head around but if you do a controlled test where you measure the used battery usage you will see that it is real..
Yeah
netherh
Profile Blog Joined November 2011
United Kingdom333 Posts
October 21 2015 15:19 GMT
#13387
On October 21 2015 16:23 windzor wrote:
In microcontrollers you sometimes do weird things. Today on several highly used platforms you should stay far away from switch statements and just use else if statements. It saves 40% power... Which is absurd to wrap ones head around but if you do a controlled test where you measure the used battery usage you will see that it is real..


Why? Compiler bugs or something?
Manit0u
Profile Blog Joined August 2004
Poland17242 Posts
Last Edited: 2015-10-21 15:45:59
October 21 2015 15:44 GMT
#13388
On October 22 2015 00:19 netherh wrote:
Show nested quote +
On October 21 2015 16:23 windzor wrote:
In microcontrollers you sometimes do weird things. Today on several highly used platforms you should stay far away from switch statements and just use else if statements. It saves 40% power... Which is absurd to wrap ones head around but if you do a controlled test where you measure the used battery usage you will see that it is real..


Why? Compiler bugs or something?


I guess it depends on the language (for microcontrollers it'll most likely be C) and its switch statement implementation.

Anyway, I don't think there should be that much difference. The compiler should turn if/elseif ladders into switches (jump tables) and vice versa if that would work better.

Here's some interesting reading on it (albeit a bit dated): http://embeddedgurus.com/stack-overflow/2010/04/efficient-c-tip-12-be-wary-of-switch-statements/

It seems that with switch statements you get good average performance but its best performance is worse than if-else and you can't optimize it (like you can if-else by evaluating the most common thing first).
Time is precious. Waste it wisely.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
October 23 2015 05:53 GMT
#13389
http://kamalmarhubi.com/blog/2015/09/15/eliminating-branches-in-rust-for-fun-but-not-much-profit/

^ this is super cool btw
There is no one like you in the universe.
Thaniri
Profile Blog Joined March 2011
1264 Posts
October 23 2015 19:29 GMT
#13390
+ Show Spoiler +

private void buttonStart_Click(object sender, EventArgs e)
{
int principal = 1000;
double rate = 0.05;
int count = 1;

while (count <= 5){
string someString = (Math.Round(principal * (Math.Pow(1 + rate, count)))).ToString();
listBoxOutputs.Items.Add(someString);
count = count + 1;
}
}


This is C#, how do I apply Math.Round() here to have 2 points after the decimal?

Google tells me that it should work like
a=1.333
Math.Round(a,2) = 1.33

In my example, where do I put that 2?
raNazUra
Profile Joined December 2012
United States10 Posts
October 23 2015 19:54 GMT
#13391
On October 24 2015 04:29 Thaniri wrote:
+ Show Spoiler +

private void buttonStart_Click(object sender, EventArgs e)
{
int principal = 1000;
double rate = 0.05;
int count = 1;

while (count <= 5){
string someString = (Math.Round(principal * (Math.Pow(1 + rate, count)))).ToString();
listBoxOutputs.Items.Add(someString);
count = count + 1;
}
}


This is C#, how do I apply Math.Round() here to have 2 points after the decimal?

Google tells me that it should work like
a=1.333
Math.Round(a,2) = 1.33

In my example, where do I put that 2?


Assuming your explanation is correct (don't have C# running on my machine to verify this), you'll want a ", 2" after the second close paren on that line. Something like this:


string someString = (Math.Round(principal * (Math.Pow(1 + rate, count)), 2)).ToString();


It's exactly the same as the example, except a is replaced with some expression whose value you're interested in printing.
Speak the truth, even if your voice shakes
Thaniri
Profile Blog Joined March 2011
1264 Posts
October 23 2015 21:00 GMT
#13392
It works, I have no idea why the 2 would be there and not one parenth left.
Prillan
Profile Joined August 2011
Sweden350 Posts
October 23 2015 21:17 GMT
#13393
On October 24 2015 06:00 Thaniri wrote:
It works, I have no idea why the 2 would be there and not one parenth left.

var a = principal * Math.Pow(1 + rate, count);
string someString = Math.Round(a, 2).ToString();


Is it clearer now?
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Thaniri
Profile Blog Joined March 2011
1264 Posts
October 23 2015 21:27 GMT
#13394
Ah the separation helped a lot, thank-you to both of you.
Wrath
Profile Blog Joined July 2014
3174 Posts
October 24 2015 08:35 GMT
#13395
Hello everyone. Thank you OP for making this thread and sharing the other posts on the first post about learning C first and stuff. I'd like to participate in this thread and learn more about programming. My issue is not learning the language as syntax or how things work in the stack or windows API or other stuff, but not finding anything to practice this learning process on. My imagination is closer to -9000. So I can't really come up with some ideas to make software and practice my learning on it.

My work field as an administrator does not give me problems to be solved by using stuff like "memory optimizing" and other stuff I'd like to see like testing performance on certain programs.

I'd love if anyone can point me where I can find "ideas" on programs to develop even if they were already developed. The goal here is not commercial to sell. But a practice area, out of college homeworks and projects. I never got anything to practice my knowledge on.

Thanks.
tofucake
Profile Blog Joined October 2009
Hyrule19029 Posts
October 24 2015 13:25 GMT
#13396
What I do is find something that I use and try to copy it. Battle.net bots are where I started, but anything will do really: IRC clients, websites, basic games (connect four or something), whatever.
Liquipediaasante sana squash banana
Acrofales
Profile Joined August 2010
Spain17967 Posts
October 24 2015 14:02 GMT
#13397
My girlfriend expressed an interest in learning to code (from absolutele zero), so I pointed her towards codecombat.com as a fun way to start. It is aimed at kids, but it looks pretty decent. Opinions?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
October 24 2015 16:01 GMT
#13398
--- Nuked ---
Wrath
Profile Blog Joined July 2014
3174 Posts
October 24 2015 17:55 GMT
#13399
On October 25 2015 01:01 Nesserev wrote:
Show nested quote +
On October 24 2015 17:35 WrathSCII wrote:
Hello everyone. Thank you OP for making this thread and sharing the other posts on the first post about learning C first and stuff. I'd like to participate in this thread and learn more about programming. My issue is not learning the language as syntax or how things work in the stack or windows API or other stuff, but not finding anything to practice this learning process on. My imagination is closer to -9000. So I can't really come up with some ideas to make software and practice my learning on it.

My work field as an administrator does not give me problems to be solved by using stuff like "memory optimizing" and other stuff I'd like to see like testing performance on certain programs.

I'd love if anyone can point me where I can find "ideas" on programs to develop even if they were already developed. The goal here is not commercial to sell. But a practice area, out of college homeworks and projects. I never got anything to practice my knowledge on.

Thanks.

Well, there's always Project Euler if small coding problems interests you:
https://projecteuler.net/

If you're interested in larger projects, you could do the following:
- When you use particular libraries, but find that they could be improved or they're not being supported/maintained anymore, feel free to contact the author(s) of that library and reach out a hand.

- Have you ever joined an AI contest, or any type of coding contest? Do you have a personal website with portfolio projects? Interested in pentesting and hacking?

- Also, maybe you can't think of anything to do, because your knowledge or field of attention is limited to certain areas. It might be a good idea to delve into fields that you've never delved into...


Thank you very much for sharing about projecteuler. I'll definitely check it out!
For now I'm only interested in smaller projects to strength my knowledge in the language and in certain parts of "things" like optimizing memory and strengthening my thinking and develop some background on things.

I have interest in emulator projects. I tried to get into one of them and talked with some of the developers there. They were really nice guys and willing to help. But the gap was just way too huge for me to fit in. I had to ask for many many things and I did not like that, even if they were always willing to answer any question no matter how trivial it was, I just couldn't keep asking.

It was not a syntax issue. It was more of a background issue on many topics like graphics / memory / system calls / and many other things that I have absolutely 0 knowledge about. So small projects that have defined goals would be the best for me.

About your questions, I never joined an AI contest or any type of coding contest before nor I have a website and I have no projects I have worked on. For now I need to "practice" my knowledge and upgrade it with experience. Since I have nearly zero experience(Who am I kidding I literally have zero experience). I need to work on that, for now, small projects would be perfect for me.

Although I am interested pentesting and hacking, it is still way too early for someone with my current experience

Thank you again for replying to my post!

Itsmedudeman
Profile Blog Joined March 2011
United States19229 Posts
Last Edited: 2015-10-24 18:10:22
October 24 2015 18:10 GMT
#13400
My tip would be don't be afraid to try and take on something a bit bigger than something you think you can handle. If you only do practice problems that you already know all that teaches you is memorization skills. When you work on a harder project you can learn so much more by being forced to branch out of your comfort zone and learn things you can't learn from a textbook by encountering your own unique problems and problem solving your way through them with whatever resource available.
Prev 1 668 669 670 671 672 1031 Next
Please log in or register to reply.
Live Events Refresh
PiGosaur Monday
00:00
#38
PiGStarcraft689
rockletztv 40
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft689
RuFF_SC2 139
Livibee 105
StarCraft: Brood War
Artosis 753
MaD[AoV]21
Icarus 6
Dota 2
monkeys_forever616
febbydoto21
League of Legends
JimRising 740
Counter-Strike
summit1g9031
taco 308
PGG 100
Super Smash Bros
hungrybox523
Heroes of the Storm
Khaldor110
Other Games
tarik_tv7922
Fnx 3080
shahzam776
Maynarde201
CosmosSc2 29
Organizations
Other Games
gamesdonequick1019
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• Hupsaiya 111
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• Azhi_Dahaki2
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Doublelift5424
• Jankos1551
• masondota2654
Other Games
• Scarra1562
Upcoming Events
Replay Cast
21h 37m
The PondCast
1d 7h
RSL Revival
1d 7h
ByuN vs Classic
Clem vs Cham
WardiTV European League
1d 13h
Replay Cast
1d 21h
RSL Revival
2 days
herO vs SHIN
Reynor vs Cure
WardiTV European League
2 days
FEL
2 days
Korean StarCraft League
3 days
CranKy Ducklings
3 days
[ Show More ]
RSL Revival
3 days
FEL
3 days
Sparkling Tuna Cup
4 days
RSL Revival
4 days
FEL
4 days
BSL: ProLeague
4 days
Dewalt vs Bonyth
Replay Cast
5 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-06-28
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
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
YaLLa Compass Qatar 2025

Upcoming

CSLPRO Last Chance 2025
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.