• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 11:03
CET 17:03
KST 01:03
  • 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
TL.net Map Contest #21: Winners8Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
Starcraft, SC2, HoTS, WC3, returning to Blizzcon!33$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win9
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" TL.net Map Contest #21: Winners Starcraft, SC2, HoTS, WC3, returning to Blizzcon! 5.0.15 Patch Balance Hotfix (2025-10-8) Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win
Tourneys
$5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
BW General Discussion [ASL20] Ask the mapmakers — Drop your questions [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV Nintendo Switch Thread ZeroSpace Megathread General RTS Discussion Thread
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1693 users

The Big Programming Thread - Page 942

Forum Index > General Forum
Post a Reply
Prev 1 940 941 942 943 944 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.
Acrofales
Profile Joined August 2010
Spain18109 Posts
January 25 2018 17:37 GMT
#18821
On January 26 2018 02:26 emperorchampion wrote:
So I have a database that is currently an Excel file of about 150 entries (lines), each entry has about 100 or so properties (columns). I want to parse this and make a plain text file to make life easier in the future. The properties are a mix of floats and strings.

Are there any standard formats for storing such data, or should I just go for comma separated? Also for accessing, is looking in SQL overkill for this size of database (i.e., pretty small)?


If it's in excel, it's not a database, it's a spreadsheet. Different data structure.

Given the size, I'm not sure why you think plain text (csv) would be easier than excel to read or parse. The main question is what you want to do with the data. If you want to pull it apart into different entities and relations, then SQL is a good choice. If you want to keep it in a big 150x100 sheet, then a csv, or excel is fine. If your 150 rows are just a test, and you expect to have millions of rows when moving to a production environment, think of more performance oriented solutions such as NoSQL databases.
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 25 2018 18:25 GMT
#18822
Excel is great because it's unstructured. You're free to do whatever you want with the data very quickly with formulas and pivots. However, this is at the cost of control. You can build all kinds of cool stuff, but someone else who doesn't understand the rules of the spreadsheet can come in and mess everything up. So yeah, it depends on what you want to do with the data and how much control you want around it.
Excludos
Profile Blog Joined April 2010
Norway8151 Posts
Last Edited: 2018-01-25 19:01:17
January 25 2018 18:57 GMT
#18823
On January 26 2018 02:37 Acrofales wrote:
Show nested quote +
On January 26 2018 02:26 emperorchampion wrote:
So I have a database that is currently an Excel file of about 150 entries (lines), each entry has about 100 or so properties (columns). I want to parse this and make a plain text file to make life easier in the future. The properties are a mix of floats and strings.

Are there any standard formats for storing such data, or should I just go for comma separated? Also for accessing, is looking in SQL overkill for this size of database (i.e., pretty small)?


If it's in excel, it's not a database, it's a spreadsheet. Different data structure.

Given the size, I'm not sure why you think plain text (csv) would be easier than excel to read or parse. The main question is what you want to do with the data. If you want to pull it apart into different entities and relations, then SQL is a good choice. If you want to keep it in a big 150x100 sheet, then a csv, or excel is fine. If your 150 rows are just a test, and you expect to have millions of rows when moving to a production environment, think of more performance oriented solutions such as NoSQL databases.


Technically, any structured stored type of data can be considered a database, including an excel document. SQLite is literally just a file on the computer after all. Not saying treating an excel doc as a database is in any way reasonable tho But it's nowhere near me at my worst (Which was tens of thousands of lines of data stored in a single .txt file. Rows separated by \n and columns separated by semicolon. It worked but omg was it slow. I can get really stupidly lazy with my small side-projects..)
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-01-25 23:02:29
January 25 2018 23:00 GMT
#18824
On January 25 2018 07:53 WolfintheSheep wrote:
Show nested quote +
On January 25 2018 07:45 sc-darkness wrote:
Is anyone into Linux and networking? Could you suggest something to read over the weekend about this topic? Of course, I can google something but I was wondering if there any recommendations. I've just been advised to read about it but no specifics; I doubt TCP and UDP would be enough because they're cross-platform. Maybe something like multicast and IPC protocol?

Given the last assignment you brought up here, I think you need to start asking the right questions to whoever is assigning these tasks to you.

No one wants to feel stupid by having to ask their coworkers the simple questions, but I would much rather have someone ask me for details up front instead of spending a weekend shooting in the dark and hoping they hit the right mark. And, in general, it's a completely applicable skill in almost everything you're going to do. Plan properly first, and then work, don't work without planning.


I have another interview. One of interview's components would involve Linux & networking. That's all they said to me. I guess that would defeat the purpose of interview if they tell you everything they're going to ask you about. Either way, I can find my way on Linux, but it's the networking part which I find difficult to guess. I guess I just have to read a little bit of basic things and see how it goes.

Thanks for help everyone else.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2018-01-26 11:45:43
January 26 2018 11:43 GMT
#18825
So i want to share story of frustartion and joy and also an advice.
Since few weeks i am automating tests of one of our modules. This has two main parts: the web part and hardware part. For web part i am using selenium and it was frustrating but managable. I pulled trough and made it work. Then i moved to hardware part. And oh boy that was HARD. First huge obstacle was finding proper CAN messages to send (in order to invoke desired functions on hardware). That was tiresome but i also managed. And then i hit a wall. I succesfuly injected messages on CAN, but there was no reaction. For last three days i tried mutiple different things and to no avail. I promised myself that if i dont manage to do it until end of week i will switch to difrent aproach --> circumvent CAN network entirely. And today i came to work broken and without hope. Made one last try and i noticed something about setting that made me wonder and also set me in right direction. Then i made some inquiries (not the first time but right now i knew where to look) and i found out the source of error. It was something absolutely basic. During the development they changed baud rate of one of CAN networks. And i didnt notice it is wrong because i used sample configuration for our project and in this configuration it is still the baud rate before changes, so not correct right now. Configuation wasnt updated (or perhaps it was but in the source from which i downloaded it wasnt). And until today i didnt question the configuration, it "should be ok" i assumed. Afterall it is official configuration.

Once i changed baudrate of injected messages it all works very smothly. I wasted three days and become so frustrated during the process....
But now i am SOOOO happy. IT WORKS!. I still have a lot of work ahead of me but overcoming major obstacle is always so rewarding,

So i have an advice. If it doesnt work and You ahve no idead why,m start with checking the vary basic things and move up. Not the other way around.
Pathetic Greta hater.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2018-01-27 05:21:25
January 27 2018 05:20 GMT
#18826
Ha thanks for that, I needed a reminder why I abandoned EE for greener pastures

I know what you mean once it finally works though.
Who after all is today speaking about the destruction of the Armenians?
sc-darkness
Profile Joined August 2017
856 Posts
January 29 2018 07:22 GMT
#18827
Woke up earlier for an interview. It turns out it was scheduled for tomorrow when I have another interview. I had to apologise and reschedule it for another day. :D

Conclusion: Add your events to calendar as soon as possible. Don't delay it for too long.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 30 2018 03:49 GMT
#18828
On January 25 2018 04:05 WarSame wrote:
Show nested quote +
On January 10 2018 01:00 Hanh wrote:
On January 09 2018 04:39 WarSame wrote:
On January 09 2018 03:29 Excludos wrote:
I'm more confused to what he's actually trying to do. Why would an app ever require access to a private wallet?

For the app's author to divert your money into his own wallet :-)


Every crypto wallet app has a private wallet unless they delegate to an external client. If done properly, offline signing is safer than trusting some service to manage your keys.

If it was my app, I would use web3j wallet management https://docs.web3j.io/transactions.html#creating-and-working-with-wallet-files
Your app has a receiving address and you can top it off by transferring from your bigger stash.

I don't see the point of the guys who are bashing the security of your app. It seems fine considering that it aims to protect a wallet held on a phone and what they say seems not applicable in this context. I'd look into the fingerprint api that links with the keystore.

How about
1. generate a long random string as the wallet password
2. generate a keypair in the keystore
3. encrypt (1) with (2)
4. store the result in a db
5. link (2) to finger print auth


Thanks for this post. I've been trying to implement wallets for my app, rather than ask for their private key, and this really is helping me clear up how my understanding of how to do that properly. Especially the idea of having a "proxy" account with my app that they just transfer some ETH to.

I've been following up on this and ran into some snags:

1, I don't have a fingerprint scanner
2. If you hide your long random string behind a KeyStore protection like fingerprints or a PIN, those keys get permanently deleted if you remove your protection. Since I am generating an Ethereum wallet file, losing the key would be very bad. Does anyone know a good way around that?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Hanh
Profile Joined June 2016
146 Posts
January 30 2018 04:43 GMT
#18829
Standard practice is to offer backup/restore of the key and remind the user until he does.
sc-darkness
Profile Joined August 2017
856 Posts
January 30 2018 22:49 GMT
#18830
Well, I've got an offer and I've accepted it. I'm so glad it's going to be C++ again, I'm looking forward to become even better at it. I don't mind other languages though.
phar
Profile Joined August 2011
United States1080 Posts
January 31 2018 16:30 GMT
#18831
Grats
Who after all is today speaking about the destruction of the Armenians?
Lmui
Profile Joined November 2010
Canada6215 Posts
January 31 2018 16:41 GMT
#18832
On January 31 2018 07:49 sc-darkness wrote:
Well, I've got an offer and I've accepted it. I'm so glad it's going to be C++ again, I'm looking forward to become even better at it. I don't mind other languages though.


Congrats.

The first few positions are the hardest, once you have a fair mastery level of one coding language, and one scripting language, a lot more opportunities open up.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
January 31 2018 17:11 GMT
#18833
On January 30 2018 13:43 Hanh wrote:
Standard practice is to offer backup/restore of the key and remind the user until he does.

Thank you, Mr. Hanh! I was hoping there was a more elegant solution, but thought this might be the way around it.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 31 2018 18:35 GMT
#18834
gj darkness, c++ is a dream.
conspired against by a confederacy of dunces.
sc-darkness
Profile Joined August 2017
856 Posts
February 01 2018 00:03 GMT
#18835
Thanks guys. Yeah, C++ is such a nice language when you consider C++11 and 14. I probably have to start learning C++17 at some point.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 01 2018 05:48 GMT
#18836
yes, automatic class template argument deduction! and c++20! concepts! hopefully! already been using it for a while with gcc, i love it.
conspired against by a confederacy of dunces.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
February 01 2018 06:33 GMT
#18837
honestly though sometimes I feel C++ 14 and beyond is completely incomprehensible colon colon life


grats darkness
There is no one like you in the universe.
Manit0u
Profile Blog Joined August 2004
Poland17420 Posts
February 01 2018 23:42 GMT
#18838
On February 01 2018 15:33 Blisse wrote:
honestly though sometimes I feel C++ 14 and beyond is completely incomprehensible colon colon life


grats darkness


There's too much meta-programming with templates and operator overloading everywhere in C++ nowadays. Makes reading the code super confusing and way too abstract if you haven't been following it for some time. At least in my opinion.
Time is precious. Waste it wisely.
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
Last Edited: 2018-02-02 04:56:29
February 02 2018 04:55 GMT
#18839
Ughh, I've been trying to open a VS project in VS Code OSX for the past few hours. It's been quite rough since the C# extension can't find Microsoft/VisualStudio/v10.0/WebApplications/Microsoft.WebApplication.targets - I can see it calling the wrong directory, and the funny thing is, this was suppose to be fixed as mentioned here:

https://github.com/OmniSharp/omnisharp-vscode/issues/1597

I'm assuming it has to do with my .NET CLI version. I'm running 1.1.7, while .NET 2 is out. This is the problem of running a hackintosh. Trying to update everything so I can run different frameworks lol.
Life?
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
February 02 2018 16:15 GMT
#18840
So i started learning C#. Not that i have other choice since company framework i need to use is exclusively written for C#. Any advices for beginner? (The only language i know already is Python).
Pathetic Greta hater.
Prev 1 940 941 942 943 944 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 57m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 572
BRAT_OK 90
Codebar 45
Livibee 33
StarCraft: Brood War
Jaedong 1495
GuemChi 1465
EffOrt 1325
Stork 698
Light 607
Larva 417
Snow 411
Mini 356
Rush 223
Barracks 222
[ Show more ]
Leta 119
hero 112
sSak 111
Sea.KH 51
JYJ47
Aegong 37
Backho 34
sorry 29
zelot 26
soO 23
HiyA 15
Terrorterran 14
scan(afreeca) 12
Bale 9
Dota 2
qojqva3387
420jenkins258
syndereN218
Other Games
singsing2113
Sick375
DeMusliM361
crisheroes346
Lowko284
Hui .257
Liquid`VortiX154
oskar118
KnowMe99
XcaliburYe58
QueenE30
Trikslyr12
Organizations
Counter-Strike
PGL195
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Michael_bg 4
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 2399
• WagamamaTV457
League of Legends
• Nemesis4222
• Jankos3067
• TFBlade809
Upcoming Events
LAN Event
1h 57m
Lambo vs Harstem
FuturE vs Maplez
Scarlett vs FoxeR
Gerald vs Mixu
Zoun vs TBD
Clem vs TBD
ByuN vs TBD
TriGGeR vs TBD
Korean StarCraft League
10h 57m
CranKy Ducklings
17h 57m
IPSL
1d 1h
dxtr13 vs OldBoy
Napoleon vs Doodle
LAN Event
1d 1h
BSL 21
1d 3h
Gosudark vs Kyrie
Gypsy vs Sterling
UltrA vs Radley
Dandy vs Ptak
Replay Cast
1d 6h
Sparkling Tuna Cup
1d 17h
WardiTV Korean Royale
1d 19h
IPSL
2 days
JDConan vs WIZARD
WolFix vs Cross
[ Show More ]
LAN Event
2 days
BSL 21
2 days
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
2 days
Wardi Open
2 days
WardiTV Korean Royale
3 days
Replay Cast
4 days
Kung Fu Cup
4 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
5 days
The PondCast
5 days
RSL Revival
5 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 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.