• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:06
CET 00:06
KST 08:06
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA15
StarCraft 2
General
Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3: RO16 results & RO8 bracket RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
2v2 maps which are SC2 style with teams together? Data analysis on 70 million replays BGH Auto Balance -> http://bghmmr.eu/ soO on: FanTaSy's Potential Return to StarCraft A cwal.gg Extension - Easily keep track of anyone
Tourneys
[BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games? Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread The Games Industry And ATVI Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread Korean Music Discussion
Sports
Formula 1 Discussion 2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1491 users

The Big Programming Thread - Page 990

Forum Index > General Forum
Post a Reply
Prev 1 988 989 990 991 992 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.
Lmui
Profile Joined November 2010
Canada6216 Posts
Last Edited: 2019-01-15 22:40:06
January 15 2019 22:25 GMT
#19781
On January 16 2019 07:11 travis wrote:
Given a 2d point, and a distance, I would like to output a point every 10 degrees on the circle that surrounds that point by the distance. It can start at 0 degrees, I don't really care. So, 35 points.

What is a good way to do that? Brain is pretty tired. I am using python but I am sure I could convert non python code to python if you want to write it in your favorite language (without relying on libraries).


SOH CAH TOA

I'm sure you can find a math library that does trignometry

circle(Point point, int dist) {
Point [] circle = new Point [36];
for (i=0;i<36; i++) {
circle.add(new Point ( point.x + dist*cos(i*10), point.y + dist*sin(i*10));
}
return circle;
}


Something like that?

edit:: oops forgot to add initial values, and changed it to be (x,y) instead of (y,x)
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-15 22:41:14
January 15 2019 22:31 GMT
#19782
is that backwards? but yeah, that's what I want I think
thank you

edit: ah you caught it
edit2: i better never let potential employers see this thread. I could have solved this on my own, I promise
Simberto
Profile Blog Joined July 2010
Germany11642 Posts
Last Edited: 2019-01-16 01:03:42
January 16 2019 01:03 GMT
#19783
Or just use polar coordinates, at which point all of the points you want on the circle are simply (R, 10° * k) for k out of 0, 35

(or 2*Pi*k / 36) if you use radians.
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2019-01-16 11:18:08
January 16 2019 03:01 GMT
#19784
Edit: I just lashed out, that was unseemly, I'm sorry.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2019-01-18 14:39:37
January 16 2019 03:21 GMT
#19785
edit: well if you see that it was mean then there is no longer any problem
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 18 2019 00:51 GMT
#19786
@Travis - I like your enthusiasm. While any individual person has a low chance of solving one of those problems, if we stop trying we never will. Even if we do try we might never. This is known as the halting problem

Does anyone know of any built in way to call an HTTP endpoint from an AWS Step Functions flow? It seems like you can only call Lambdas. We are hoping to write 0 code while building a simple scheduler in AWS SF. Apache Airflow has the Simple HTTP Operator and we are hoping for similar here.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 19 2019 17:13 GMT
#19787
I asked my coworkers and apparently they announced something like a Simple Http Operator at ReInvent. We're going to use Lambdas for now.

Also, no programming language should have breaks, jumps, or continues. CMV.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Excludos
Profile Blog Joined April 2010
Norway8196 Posts
Last Edited: 2019-01-19 17:29:49
January 19 2019 17:28 GMT
#19788
On January 20 2019 02:13 WarSame wrote:
I asked my coworkers and apparently they announced something like a Simple Http Operator at ReInvent. We're going to use Lambdas for now.

Also, no programming language should have breaks, jumps, or continues. CMV.


I literally could not imagine even attempting to program a complicated piece of code without breaks and continues, even less so how infuriatingly bad that code would have to look. P.S: Even goto's are a legit tool to use in certain scenarios (My rule of thumb is they should never jump up, only down. And even then I haven't used one in over a year).

If you dislike jumps, I can't even imagine how you're going to react to using events, which are essential for front end programming.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 19 2019 22:03 GMT
#19789
I agree about breaks and continues.. I rely on them constantly, especially continue.

Using "if X, continue" can replace an "if A or B or C or D or E or F or G... etc"
tofucake
Profile Blog Joined October 2009
Hyrule19159 Posts
January 19 2019 23:17 GMT
#19790
Break and continue are amazing, especially in batching. People who say to never use them and to just design stuff "better" are wrong.
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
January 20 2019 08:05 GMT
#19791
On January 20 2019 07:03 travis wrote:
I agree about breaks and continues.. I rely on them constantly, especially continue.

Using "if X, continue" can replace an "if A or B or C or D or E or F or G... etc"


Technically you can avoid that by filtering your collection first (for simple stuff). Depends on the use-case though, there sure are times when breaks and continues are invaluable.
Time is precious. Waste it wisely.
SC-Shield
Profile Joined December 2018
Bulgaria832 Posts
Last Edited: 2019-01-20 11:10:09
January 20 2019 10:47 GMT
#19792
When a guy like Bjarne Stroustrup (C++ inventor) is hesitant to give hard rules about not using something in C++ because he says that there are exceptions, I think not many people are around his level to be so sure to advise against using something in programming ever. You could be talking about a different programming language, but I think this idea still aplies.

For example, C++11 has smart pointers which deallocate memory based on scope.
E.g.

void SomeFunction()
{
std::unique_ptr<Class> object = std::make_unique<Class>(constructor parameters here);
} // memory is deallocated when function's scope ends


The usual advice is not to use "new" and "delete" anymore to reduce the chance of memory leaks. This isn't a hard rule because you still need "new" and "delete" even with smart pointers. For example, when you need a custom deleter function and one case for that is if you work with C implementation of something. Or, if you need to use a C++ library which expects an object but its implementation doesn't use smart pointers. In this case, you'd use "new" in constructor and "delete" in destructor of your class.

So, "new" and "delete" are still useful, you just need to use them less but giving a hard rule not to use them at all is meaningless when you don't have context. I think it's more important to understand *why* before learning a rule so you know when not to apply it.
mahrgell
Profile Blog Joined December 2009
Germany3943 Posts
January 20 2019 11:08 GMT
#19793
On January 20 2019 19:47 SC-Shield wrote:
When a guy like Bjarne Stroustrup (C++ inventor) is hesitant to give hard rules about not using something in C++ because he says that there are exceptions, I think not many people are around his level to be so sure to advise against using something in programming ever. You could be talking about a different programming language, but I think this idea still aplies.

For example, C++11 has smart pointers which deallocate memory based on scope.
E.g.

void SomeFunction()
{
std::unique_ptr<Class> object = std::make_unique<Class>(constructor parameters here);
} // memory is deallocated when function's scope ends


The usual advice is not to use "new" and "delete" anymore to reduce the chance of memory leaks. This isn't a hard rule because you still need "new" and "delete" even with smart pointers. For example, when you need a custom deleter function and one case for that is if you work with C implementation of something. So, "new" and "delete" are still useful, you just need to use them less but giving a hard rule not to use them at all is meaningless when you don't have context. I think it's more important to understand *why* before learning a rule so you know when not to apply it.


And then you have a company, which has very weird own self implemented "smart pointer" constructs, developed somewhere in the early 90s, and since the code is full of those and all foundation frameworks use those, you are also forced to use those all the time ^.^ You can't imagine how much I wish that I would be able to use those C++11 smart pointers...
SC-Shield
Profile Joined December 2018
Bulgaria832 Posts
January 20 2019 13:54 GMT
#19794
Do you guys know a good article to read about POSIX concurrency (threads and synchronisation) as well as signals? If not, I'll just stick to what I've found on Google so far.
JimmyJRaynor
Profile Blog Joined April 2010
Canada17029 Posts
Last Edited: 2019-01-20 19:24:10
January 20 2019 19:13 GMT
#19795
On January 15 2019 22:49 ZenithM wrote:
Even assuming AI is indeed the future, AI jobs are a bubble right now, but it will plateau or even dial down at some point. Having basics in machine learning will be very common for every scientist or programmer, but we don't need that many people working on data.

And like everything else, there is a spectrum of skill and expertise within AI/ML, after a while it won't be worth much to put that on your CV if all you did was take a class.
I would say at this very moment it indeed looks good on your CV though. Even small businesses are looking for a dedicated "data scientist" even if they don't realize they need one full-time guy to do that.

I'm a hired gun. I created and implemented a "customer handicapping system" for a direct marketing agency that employs ~30 people. i created the system. i did the coding. With the help of the full time IT people i/we figured out where to shoe-horn the decision/handicapping system into the existing transaction focused data processing systems.

its hard to find good coders
a) with knowledge of existing data processing systems
b) who know how to build software
c) the math knowledge/ability to pull this stuff off.

As a result, many businesses with less than 100 employees go with a "gunslinger" as opposed to a full time employee.
+ Show Spoiler +
[image loading]
Ray Kassar To David Crane : "you're no more important to Atari than the factory workers assembling the cartridges"
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 20 2019 21:01 GMT
#19796
On January 20 2019 08:17 tofucake wrote:
Break and continue are amazing, especially in batching. People who say to never use them and to just design stuff "better" are wrong.

How so? Where would you reasonably use them that using sub functions wouldn't work so well and be much clearer?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Mr. Wiggles
Profile Blog Joined August 2010
Canada5894 Posts
January 21 2019 16:15 GMT
#19797
On January 20 2019 22:54 SC-Shield wrote:
Do you guys know a good article to read about POSIX concurrency (threads and synchronisation) as well as signals? If not, I'll just stick to what I've found on Google so far.

Not an article, but the book "Advanced Programming in the UNIX Environment" by W. Richard Stevens has a very good treatment of many UNIX systems programming concepts. There's an entire chapter on each of the subjects of signals, threads, and thread control.

I believe there's source for the book available so you can theoretically make your own PDF if you don't want to buy it.

http://www.apuebook.com/apue3e.html
you gotta dance
SC-Shield
Profile Joined December 2018
Bulgaria832 Posts
Last Edited: 2019-01-21 21:47:21
January 21 2019 19:38 GMT
#19798
On January 22 2019 01:15 Mr. Wiggles wrote:
Show nested quote +
On January 20 2019 22:54 SC-Shield wrote:
Do you guys know a good article to read about POSIX concurrency (threads and synchronisation) as well as signals? If not, I'll just stick to what I've found on Google so far.

Not an article, but the book "Advanced Programming in the UNIX Environment" by W. Richard Stevens has a very good treatment of many UNIX systems programming concepts. There's an entire chapter on each of the subjects of signals, threads, and thread control.

I believe there's source for the book available so you can theoretically make your own PDF if you don't want to buy it.

http://www.apuebook.com/apue3e.html


Thanks. I think I won't have time to read it all before job interviews, but I'll see what I can learn. Also, I had 1 successful and 1 failed interview today. The unsuccessful interview lasted only 30 minutes because:
- the interviewer turned out be provocative (HR warned me before that he had weird sense of humour)
- the interviewer seemed more focused on C, and I insisted that I'm interested only in C++ to advance my professional career

Other than that, the interviewer was trying to provoke me by asking questions like, "can't you have instances of struct with function pointers instead of classes with methods?". I said: "Yes, you can but it's better use C++ because it's built for that.". Again, he was like: "But I can do object-oriented programming in Assembly" and overall his idea was to provoke me as much as possible to see how I think and to him programming languages are meaningless and it's important what to write.
Also, he said C++ is used less and less but I said that I don't agree because there's C++11/14/17 and C++20 soon, so the language is getting updated quite often. Now I realise that I didn't explain much when I said it in interview, but I wasn't motivated to continue interview anyway. My idea is the language stays fresh, so I think more people will use it but even without new features, C++ has its uses.

In general, he was glad I didn't work for him and I'm glad I don't have to work for him. As a colleague says, interview isn't about employer interviewing you but the chance for you to also interview him. I definitely made mistakes, but it's also not the place for me to work there.

Edit: I also got questions about my personal hobbies and what year is a leap year. Absolutely random things. :D

I think if you're not in a hurry to get the first available job, interviews are very nice to show you your weaknesses just like a game of StarCraft. I just couldn't learn much from the last interview, but I'm sure I could learn more from next interviews.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 22 2019 02:51 GMT
#19799
Nice attitude, I think it will help you avoid getting into some job where you end up hating life.
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
Last Edited: 2019-01-22 09:36:20
January 22 2019 09:21 GMT
#19800
On January 21 2019 06:01 WarSame wrote:
Show nested quote +
On January 20 2019 08:17 tofucake wrote:
Break and continue are amazing, especially in batching. People who say to never use them and to just design stuff "better" are wrong.

How so? Where would you reasonably use them that using sub functions wouldn't work so well and be much clearer?


It is easy to substitute simple looping with recursion. But then you can potentially run into a couple of problems:
- if your language doesn't support TCO you will run into performance issues
- if your language does support TCO you can't debug it properly since you lose the stack trace

Recursion will also be a real mess for cases like that:


outer loop
outer a

inner loop
inner a

if condition
continue outer (without going to outer b)

inner b

outer b


Edit: This too depends on a language of choice of course. Some make looping easier for you.
Time is precious. Waste it wisely.
Prev 1 988 989 990 991 992 1032 Next
Please log in or register to reply.
Live Events Refresh
OSC
23:00
OSC Elite Rising Star #17
CranKy Ducklings12
Liquipedia
BSL 21
20:00
RO16 TieBreaker - Group B
StRyKeR vs Artosis
OyAji vs KameZerg
ZZZero.O452
LiquipediaDiscussion
IPSL
20:00
Ro16 Group C
StRyKeR vs OldBoy
Sziky vs Tarson
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 271
StarCraft: Brood War
Calm 2735
ZZZero.O 452
Artosis 38
Dota 2
LuMiX1
Heroes of the Storm
Khaldor258
Other Games
Grubby6204
FrodaN2210
Mlord510
B2W.Neo341
Pyrionflax210
Maynarde88
Organizations
Other Games
EGCTV1791
gamesdonequick1003
BasetradeTV38
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• Hupsaiya 92
• davetesta75
• musti20045 26
• HeavenSC 22
• Kozan
• Migwel
• AfreecaTV YouTube
• sooper7s
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Airneanach30
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21162
• Ler109
League of Legends
• Doublelift3325
Other Games
• imaqtpie1597
Upcoming Events
OSC
9h 54m
Wardi Open
12h 54m
Monday Night Weeklies
17h 54m
OSC
23h 54m
Wardi Open
1d 12h
Replay Cast
2 days
Wardi Open
2 days
Tenacious Turtle Tussle
3 days
The PondCast
3 days
Replay Cast
3 days
[ Show More ]
LAN Event
4 days
Replay Cast
4 days
Replay Cast
5 days
Sparkling Tuna Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-21
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
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.