• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 18:25
CET 00:25
KST 08:25
  • 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 bracket12Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA12
StarCraft 2
General
RSL Season 3: RO16 results & RO8 bracket SC: Evo Complete - Ranked Ladder OPEN ALPHA RSL Season 3 - Playoffs Preview Mech is the composition that needs teleportation t GM / Master map hacker and general hacking and cheating thread
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 # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened
Brood War
General
Data analysis on 70 million replays A cwal.gg Extension - Easily keep track of anyone soO on: FanTaSy's Potential Return to StarCraft [ASL20] Ask the mapmakers — Drop your questions FlaSh on: Biggest Problem With SnOw's Playstyle
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET
Strategy
Current Meta Game Theory for Starcraft How to stay on top of macro? PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread EVE Corporation Path of Exile [Game] Osu! Should offensive tower rushing be viable in RTS games?
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
Russo-Ukrainian War Thread The Games Industry And ATVI US Politics Mega-thread 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
2024 - 2026 Football Thread Formula 1 Discussion 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: 2113 users

The Big Programming Thread - Page 955

Forum Index > General Forum
Post a Reply
Prev 1 953 954 955 956 957 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.
Manit0u
Profile Blog Joined August 2004
Poland17448 Posts
April 12 2018 22:39 GMT
#19081
I seriously have no idea how I could live without git now. Even for small pet projects of mine "git init" is usually one of the very first commands I run.

At work I would be totally at loss without stash, rebase, checkouts (of single files and to different branches), cherry-picking and the like.
Time is precious. Waste it wisely.
Lmui
Profile Joined November 2010
Canada6215 Posts
April 12 2018 22:42 GMT
#19082
Branches for feature development, especially if it involves multiple team members.

Repositories that scale to thousands of users.
Branches for different release streams ex. Nightly, Weekstone, RC, Stable and various patches/releases on those codelines.

There's dozens of other reasons to have a good working knowledge of VCS

Something that works when you have 4 people working on a project for a month doesn't necessarily scale when done for hundreds of people working across multiple timezones around the world.

Also, being able to back out changes as well - recent example from work was someone used a third-party library with a license that legal team said we couldn't use - we could easily remove all the content used in that workstream.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
April 12 2018 23:26 GMT
#19083
On April 12 2018 09:08 berated- wrote:
Show nested quote +
On April 11 2018 12:55 WarSame wrote:
I feel like I'm missing something with Docker. What is the ideal development to production pipeline supposed to look like? What is Docker's place in there?

Do you need 1 docker-compose per environment? How do you handle environment changes between containers?

When I am developing(say a Flask app) I have a mounted volume to auto update my code. When I am done developing I commit to my own branch("flask-101013033", maybe). QA comes in and verifies that this branch works correctly by pulling the branch, building an image from the branch and making a container from the image.

We then move it into integration testing. I merge my code into the integration branch. We then build another image/container for this branch which QA tests for integration.

Finally, we move this image into production.

Is that a reasonable approach? How do Kubernetes and Docker Swarm come into play?


Ideal is a bit weird, as deployment is so culture related that it's hard to say... Our company is using it as this..

I don't use docker in my development environment except to run databases. It's too much of a pain to try to get in and out of the container or mapping mounts for my liking. However, running the database in a docker container so it can be local is fantastic (especially considering they have a sql server on linux image). If you had a large toolchain that is needed for a dev environment I can see how it's attractive to want to use docker for dev though.

One of the strongest selling points of docker is that it gives you the ability to move the exact container between different environments. The container you built in your ci loop, is the container that goes to dev, qa, prod. Not that your setup doesn't work with rebuilding the container, but, trying to extract your configuration out of the build and then pushing the container through the deployment phases just means you're probably more likely to make sure that what you tested in the environment was correct. This is used pretty often with CI/CD. If you're using deploy branches and actually rebuilding you may not get as much advantage at of this.

We also use docker as a part of our gitlab ci loop. When the gitlab pipeline kicks off it spins up a docker builder that has our tools on it to build our applications. It can link in databases, or even selenium servers to run your automated tests against, or any external service that you might have depended on a vm or dedicated server for.

Kubernetes and swarm come in for orchestration -- if you are using microservices and need to get each of the different containers communicating with each other, these tools make it a lot easier to pop up a set of microservices that comprise a full application. Our main website could end up using anywhere from 6-10 services that make up the one app. Trying to "deploy" the entire thing manually is a lot of effort where as those tools make the whole thing a lot easier. Kubernetes can also do a ton of stuff with controlled rollouts and versioning and ingress controllers and a whole bunch of stuff that I don't even fully understand...

Docker is really cool, but, the entire community is still pretty young and things are changing very rapidly. It's definitely buzzwordish but unless you are deploying quite a few application instances it's a lot of overhead for not a ton of gain... except for running your databases in dev on your machine, that's a life saver.


Thank you for the response. I think given what you and others have said I will keep my Docker usage very simply and start using things like Swarm or Kubernetes when that becomes necessary. I wanted to provide a good DevOps foundation for my project(and to learn this stuff), but it seems there is more to learn than I can justify with my time.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 13 2018 15:00 GMT
#19084
thanks for all the replies!

do any of you pay for private accounts?
tofucake
Profile Blog Joined October 2009
Hyrule19158 Posts
April 13 2018 15:24 GMT
#19085
I don't. If I want to keep something private I put it on BitBucket.
Liquipediaasante sana squash banana
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
April 13 2018 18:09 GMT
#19086
On April 14 2018 00:00 travis wrote:
thanks for all the replies!

do any of you pay for private accounts?


As a student you can get a lot of free benefits from github (including free private repos).
TRUEESPORTS || your days as a respected member of team liquid are over
Manit0u
Profile Blog Joined August 2004
Poland17448 Posts
April 13 2018 20:06 GMT
#19087
On April 14 2018 00:24 tofucake wrote:
I don't. If I want to keep something private I put it on BitBucket.


+1
Time is precious. Waste it wisely.
Excludos
Profile Blog Joined April 2010
Norway8192 Posts
April 13 2018 21:22 GMT
#19088
On April 14 2018 05:06 Manit0u wrote:
Show nested quote +
On April 14 2018 00:24 tofucake wrote:
I don't. If I want to keep something private I put it on BitBucket.


+1


+2. Bitbucket works really nice for private projects (We use Bitbucket for all work related stuff), and it can be integrated with a lot of other stuff. Github should be filled with personal projects for future employers to have a look at tho.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-04-18 18:01:04
April 18 2018 17:48 GMT
#19089
Ok, what the fuck is the problem with std::string and std::wstring on Linux and Windows?

I see that std::string is somehow magically "UTF-8 ready" on Linux. On the contrary, Windows prefers std::wstring for unicode. Yet, std::wstring is 4 bytes on Linux and only 2 bytes on Windows. How does that make std::wstring less desirable on Linux? Why? Clearly wstring is larger so it could hold more characters? And why is this fucked up on an OS level? I just don't understand all this mess.

Link: https://stackoverflow.com/questions/402283/stdwstring-vs-stdstring?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

Edit: Are we meant to use these now?


3) UTF-8 encoded string literal. The type of a u8"..." string literal is const char[].
4) UTF-16 encoded string literal. The type of a u"..." string literal is const char16_t[].
5) UTF-32 encoded string literal. The type of a U"..." string literal is const char32_t[].
Excludos
Profile Blog Joined April 2010
Norway8192 Posts
Last Edited: 2018-04-18 18:32:25
April 18 2018 18:29 GMT
#19090
This is one of many many reasons why I think std::string is an abysmal implementation of string for c++, and why it's always preferably to use literally anything else.

The gist of it is: Windows doesn't have unicode in std::String, but Linux does. wstring doubles the size so you can fit in more characters, but on Linux it already has all the characters, making it larger for literally no reason. That said the 2/4 bytes as mentioned in the stackoverflow post should definitively be wrong, as 4 bytes is the required minimum for full unicode, while 2 bytes will only give you ascii. So those numbers are probably for string, and not wstring.

edit: should also mention that wstring will still work on Linux, and size doesn't really matter that much these days unless you're programming for a potato. So if you're making a program which is suppose to compile on both windows and linux, then you'll want to use wstring (or, like I said: Literally anything else)
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2018-04-18 19:10:48
April 18 2018 19:08 GMT
#19091
you guys very confused. i suggest getting comfortable with the concept of a class template, and then return to trying to understand what std::string and std::wstring is. they are totally independent of any semantic attached to their data.

a glass bowl is an abysmal implementation of fruit salad. one of the many reasons is that it doesn't contain pieces of fruit. you need to like put it them in there yourself.
conspired against by a confederacy of dunces.
Excludos
Profile Blog Joined April 2010
Norway8192 Posts
Last Edited: 2018-04-18 19:13:29
April 18 2018 19:12 GMT
#19092
On April 19 2018 04:08 nunez wrote:
you guys very confused. i suggest getting comfortable with the concept of a class template, and then return to trying to understand what std::string and std::wstring is. they are totally independent of any semantic attached to their data.

a glass bowl is an abysmal implementation of fruit salad. one of the many reasons is that it doesn't contain pieces of fruit. you need to like put it them in there yourself.


This is so unreasonably unhelpful for anything that was ever stated I wonder why you even bothered. It's so vague I can't even fathom who you're answering or what about.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
April 18 2018 19:36 GMT
#19093
for shame.
conspired against by a confederacy of dunces.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-04-18 20:31:29
April 18 2018 20:11 GMT
#19094
On April 19 2018 04:12 Excludos wrote:
Show nested quote +
On April 19 2018 04:08 nunez wrote:
you guys very confused. i suggest getting comfortable with the concept of a class template, and then return to trying to understand what std::string and std::wstring is. they are totally independent of any semantic attached to their data.

a glass bowl is an abysmal implementation of fruit salad. one of the many reasons is that it doesn't contain pieces of fruit. you need to like put it them in there yourself.


This is so unreasonably unhelpful for anything that was ever stated I wonder why you even bothered. It's so vague I can't even fathom who you're answering or what about.


He refers to this popular idea of treating std::string like a dummy container of characters (very much like binary serialisation where you have to know how to treat data?). It's usually recommended to treat it as UTF-8, then you convert it to wide strings when you deal with Windows API. You have to do conversions in both directions. Also, if you need string manipulation (string.find, string.at, etc), then wide strings are preferable. He said it in an asshole-ish way, but I'm not surprised considering what kind of horrifying C++ code he posted here in the past. I'd definitely avoid his code style, but it seems he isn't good at explaining concepts either.

Edit: I re-read post about wstring and string on Windows and Linux. It's indeed a very fucked up thing to deal with. We suffer because of backwards compatibility support for code pages on Windows where ANSI string could be interpreted in different ways depending on if you have cyrillic Windows, Asian Windows, western Windows, etc.. Otherwise, std::string would have been fine both on Windows and Linux to deal with UTF-8. Fuck backwards compatibility. Let applications break the hard way so they are encouraged to switch to Unicode instead.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
April 20 2018 00:52 GMT
#19095
I am trying to unit test decryption on Android while using a KeyGuardManager:

Android reference for KeyGuardManager

Sample Activity

How? It needs user input, right? How do you test that?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
April 20 2018 13:34 GMT
#19096
Generaly during unit tests You use stubs for anything You dont have.
If You want to test with real user input You are doing functional and/or component tests, not unit test.

I know its not really helpful but as a tester i like to be precise with a vocabulary.
Pathetic Greta hater.
Artesimo
Profile Joined February 2015
Germany564 Posts
April 20 2018 14:32 GMT
#19097
Testing is for people who code too weak so they have to check if it works anyways

And yes, thats a quote which I got in response to me trying to convince someone how fun Mockito is for (java) testing.
Excludos
Profile Blog Joined April 2010
Norway8192 Posts
April 20 2018 14:35 GMT
#19098
On April 20 2018 23:32 Artesimo wrote:
Testing is for people who code too weak so they have to check if it works anyways

And yes, thats a quote which I got in response to me trying to convince someone how fun Mockito is for (java) testing.


Or the quote my boss gave me when I told him we desperately needed to implement some unit testing in our consistently breaking system. "You should have just made it better to begin with" and "We don't have time to do testing right now, the system needs to work first". The irony of the last statement was lost on him.

On a completely different topic: I'm starting in a new job next week xD
Manit0u
Profile Blog Joined August 2004
Poland17448 Posts
Last Edited: 2018-04-20 15:26:20
April 20 2018 15:24 GMT
#19099
Has anyone worked with AWS SDK before?

Their API is behaving really weird recently. We have everything configured, region set to 'eu-central-1', endpoints are correct, buckets are fine, presigned urls are generated properly etc.

The problem arises when you try and call ".exists?" method on the AWS object. It returns AWS::S3::BadRequest error every time. I've managed to capture and fully analyze one such exception - its stack trace was useless and it had no message, instead it had this huge context object attached, which had a ton of other object inside.

Anyway, I've managed to get down to the requests and responses that this API is sending behind the scenes (it's Amazon's library, not our own) and it appears that request headers refer to credentials as being on 'us-east-1'. I've checked and nowehere in our entire system do we mention 'us-east-1' region for S3...

Any idea what could be going on here? Looks like some stupid defaults but I see no reason for them to be set since we explicitly set all the variables in AWS config...

I remember that they mentioned something about newer version of their API requiring region and endpoint to be set, but we did that already.
Time is precious. Waste it wisely.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-04-20 22:34:22
April 20 2018 17:35 GMT
#19100
C++ question: Does anyone know what happens if you use ANSI Windows API functions where you pass UTF-8 std::string? I thought that wasn't supposed to be ok, yet it doesn't seem obvious if it's broken. It's hard to debug at this point.
It's really annoying that there is no standard UTF variant to use. Windows prefers UTF-16, while Linux and maybe HTTP prefer UTF-8.

Edit: CreateFileA doesn't seem to work with UTF-8 then.
Prev 1 953 954 955 956 957 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 8h 5m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
White-Ra 257
UpATreeSC 157
Nina 146
SpeCial 48
StarCraft: Brood War
Jaeyun 49
Leta 29
Dota 2
NeuroSwarm74
Counter-Strike
fl0m1356
Heroes of the Storm
Trikslyr62
Other Games
Grubby5967
FrodaN1484
shahzam407
Liquid`Hasu248
C9.Mang0124
ViBE83
KnowMe82
ZombieGrub35
PPMD24
Organizations
Other Games
BasetradeTV19
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Hupsaiya 85
• sitaska39
• davetesta23
• Kozan
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
StarCraft: Brood War
• mYiSmile16
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21856
League of Legends
• Doublelift3884
Counter-Strike
• Shiphtur190
Other Games
• imaqtpie1243
• Scarra921
• WagamamaTV509
Upcoming Events
RSL Revival
8h 5m
Classic vs MaxPax
SHIN vs Reynor
herO vs Maru
WardiTV Korean Royale
12h 35m
SC Evo League
13h 5m
IPSL
17h 35m
Julia vs Artosis
JDConan vs DragOn
OSC
17h 35m
BSL 21
20h 35m
TerrOr vs Aeternum
HBO vs Kyrie
RSL Revival
1d 8h
Wardi Open
1d 14h
IPSL
1d 20h
StRyKeR vs OldBoy
Sziky vs Tarson
BSL 21
1d 20h
StRyKeR vs Artosis
OyAji vs KameZerg
[ Show More ]
OSC
1d 23h
OSC
2 days
Monday Night Weeklies
2 days
OSC
2 days
Wardi Open
3 days
Replay Cast
4 days
Wardi Open
4 days
Tenacious Turtle Tussle
5 days
The PondCast
5 days
Replay Cast
5 days
LAN Event
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-16
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
RSL Revival: Season 3
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.