• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:42
CEST 11:42
KST 18:42
  • 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 TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
BSL 2025 Warsaw LAN + Legends Showmatch0Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29
StarCraft 2
General
#1: Maru - Greatest Players of All Time Weekly Cups (Sept 8-14): herO & MaxPax split cups Team Liquid Map Contest #21 - Presented by Monster Energy SpeCial on The Tasteless Podcast Team TLMC #5 - Finalists & Open Tournaments
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris Sparkling Tuna Cup - Weekly Open Tournament SC4ALL $6,000 Open LAN in Philadelphia WardiTV TL Team Map Contest #5 Tournaments RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
Soulkey on ASL S20 ASL TICKET LIVE help! :D BW General Discussion NaDa's Body A cwal.gg Extension - Easily keep track of anyone
Tourneys
[ASL20] Ro16 Group D [ASL20] Ro16 Group C [Megathread] Daily Proleagues BSL 2025 Warsaw LAN + Legends Showmatch
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Borderlands 3 General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
I <=> 9
KrillinFromwales
The Personality of a Spender…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1583 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
Poland17341 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 States3292 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
Poland17341 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
Hyrule19087 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
Spain18050 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
Next event in 18m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Rex 1
StarCraft: Brood War
Calm 5699
Bisu 731
Hyuk 162
HiyA 96
Hyun 96
sorry 86
ToSsGirL 84
Dewaltoss 82
Pusan 77
Light 74
[ Show more ]
Soma 60
actioN 56
Mini 49
ZerO 32
BeSt 30
Liquid`Ret 29
Nal_rA 28
soO 27
Sharp 24
Rush 19
Free 16
SilentControl 10
Dota 2
singsing1260
XcaliburYe206
boxi98170
League of Legends
JimRising 381
Counter-Strike
olofmeister1583
shoxiejesuss598
allub166
Other Games
XaKoH 143
NeuroSwarm80
Trikslyr15
Organizations
StarCraft: Brood War
lovetv 593
Other Games
gamesdonequick587
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 1
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1421
• Stunt679
Other Games
• WagamamaTV81
Upcoming Events
RSL Revival
18m
Maru vs Reynor
Cure vs TriGGeR
Rex1
Map Test Tournament
1h 18m
The PondCast
3h 18m
RSL Revival
1d
Zoun vs Classic
Korean StarCraft League
1d 17h
BSL Open LAN 2025 - War…
1d 22h
RSL Revival
2 days
BSL Open LAN 2025 - War…
2 days
RSL Revival
3 days
Online Event
3 days
[ Show More ]
Wardi Open
4 days
Monday Night Weeklies
4 days
Sparkling Tuna Cup
5 days
LiuLi Cup
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
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

Upcoming

2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.