• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 12:27
CET 18:27
KST 02:27
  • 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 surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation14Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA14
StarCraft 2
General
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 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
2v2 maps which are SC2 style with teams together? BGH Auto Balance -> http://bghmmr.eu/ Data analysis on 70 million replays 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
Russo-Ukrainian War Thread US Politics Mega-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: 2084 users

The Big Programming Thread - Page 967

Forum Index > General Forum
Post a Reply
Prev 1 965 966 967 968 969 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.
Excludos
Profile Blog Joined April 2010
Norway8194 Posts
Last Edited: 2018-06-16 10:30:46
June 16 2018 10:30 GMT
#19321
On June 16 2018 19:01 Acrofales wrote:
I assume that's c++. In which case, what's the problem? You promise to return a char array and you do.


I think what he's asking is why you can return a pointer to something who's scope should only be within the function itself. iaretehnoob answered why this specific case works.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-06-16 11:23:37
June 16 2018 10:54 GMT
#19322
On June 16 2018 19:30 Excludos wrote:
Show nested quote +
On June 16 2018 19:01 Acrofales wrote:
I assume that's c++. In which case, what's the problem? You promise to return a char array and you do.


I think what he's asking is why you can return a pointer to something who's scope should only be within the function itself. iaretehnoob answered why this specific case works.


Yes. Also, pointer isn't the same thing as an array. Arrays could decay and become pointers, but the opposite isn't true. You could treat a pointer as if it points to a sequence of elements but I think arrays and pointers are different.

Pointer points to something that is already in memory. I guess string literals are somehow in memory for pointers to work. Otherwise, how do you point to something which you've not allocated memory for?

On June 16 2018 19:19 iaretehnoob wrote:
Show nested quote +
On June 16 2018 18:00 sc-darkness wrote:
Does anyone know why this works at all? It feels unsafe yet it works.


const char* SomeMethod()
{
return "Hello!";
}


Pointer points to something that must exist. Does compiler do some magic?


string literals are special and exist for the entire duration of the program.


That probably makes sense now. They're like static objects then.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
June 18 2018 03:44 GMT
#19323
This is somewhat programming related, but does anyone know of good replacements for f.lux? It's gotten too heavy for what should be a very simple application.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
TheEmulator
Profile Blog Joined July 2010
28094 Posts
June 18 2018 03:55 GMT
#19324
On June 18 2018 12:44 WarSame wrote:
This is somewhat programming related, but does anyone know of good replacements for f.lux? It's gotten too heavy for what should be a very simple application.

I use redshift on linux. It's incredibly minimalist.

If you're on windows 10 the native blue light app is actually alright. I heard Iris is good but idk how heavy the app is.
Administrator
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
June 18 2018 12:44 GMT
#19325
If anybody is interested, I recently came across an open source machine learning tool.

https://ml5js.org/

Friendly Machine Learning for the Web.
ml5.js aims to make machine learning approachable for a broad audience of artists, creative coders, and students. The library provides access to machine learning algorithms and models in the browser, building on top of TensorFlow.js with no other external dependencies.

The library is supported by code examples, tutorials, and sample datasets with an emphasis on ethical computing. Bias in data, stereotypical harms, and responsible crowdsourcing are part of the documentation around data collection and usage.


I haven't touched it much, but I assume I will in the future.
Life?
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
June 18 2018 22:07 GMT
#19326
On June 18 2018 12:55 TheEmulator wrote:
Show nested quote +
On June 18 2018 12:44 WarSame wrote:
This is somewhat programming related, but does anyone know of good replacements for f.lux? It's gotten too heavy for what should be a very simple application.

I use redshift on linux. It's incredibly minimalist.

If you're on windows 10 the native blue light app is actually alright. I heard Iris is good but idk how heavy the app is.

Thanks! For some reason I don't feel the need as bad on Linux, but I'll check out Redshift too.
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
June 19 2018 00:18 GMT
#19327
I need some advice on DB design/interfacing.

I am using Flask with flask_sqlalchemy as an ORM and postgresql as a DB.

My flask_sqlalchemy Model defines the columns and tables. Should it also include the logic to CRUD objects? If not, where is the ideal place for that to go? In a db.py file?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
June 20 2018 07:30 GMT
#19328
On June 19 2018 09:18 WarSame wrote:
I need some advice on DB design/interfacing.

I am using Flask with flask_sqlalchemy as an ORM and postgresql as a DB.

My flask_sqlalchemy Model defines the columns and tables. Should it also include the logic to CRUD objects? If not, where is the ideal place for that to go? In a db.py file?


Will need to check alchemy further but the general rule of thumb is that internal model logic should be inside the model. Any extra queries you want to perform on it should go into the repository class.
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18132 Posts
June 20 2018 08:16 GMT
#19329
On June 20 2018 16:30 Manit0u wrote:
Show nested quote +
On June 19 2018 09:18 WarSame wrote:
I need some advice on DB design/interfacing.

I am using Flask with flask_sqlalchemy as an ORM and postgresql as a DB.

My flask_sqlalchemy Model defines the columns and tables. Should it also include the logic to CRUD objects? If not, where is the ideal place for that to go? In a db.py file?


Will need to check alchemy further but the general rule of thumb is that internal model logic should be inside the model. Any extra queries you want to perform on it should go into the repository class.

Agree. CRUD goes in the model.

When I teach MVC to students I have some basic rules:

If it's SQL it's in the model. I don't want to see SQL in the controller, and most certainly never ever in the view. My general rule of thumb is that I should be able to switch database engines and only touch the model.

If it's HTML/CSS/JS it's in the view. I don't want to see html tags or javascript in the controller. JS you could make a case that some of it is controller, but then I'd make a case that you have a clientside view and controller, which in the grand scheme of your application is all view for the server side.

Finally, everything goes throug a controller. You call new pages by their controller, which gets the appropriate data from the model, repackages it and passes it to a view. You never call a view directly from a model, or a model directly from a view. And if you are writing any kind of logic other than how to display something (and what should happen when it is clicked on) in the view, then you are doing it wrong.
Excludos
Profile Blog Joined April 2010
Norway8194 Posts
June 20 2018 10:50 GMT
#19330
On June 20 2018 17:16 Acrofales wrote:
Show nested quote +
On June 20 2018 16:30 Manit0u wrote:
On June 19 2018 09:18 WarSame wrote:
I need some advice on DB design/interfacing.

I am using Flask with flask_sqlalchemy as an ORM and postgresql as a DB.

My flask_sqlalchemy Model defines the columns and tables. Should it also include the logic to CRUD objects? If not, where is the ideal place for that to go? In a db.py file?


Will need to check alchemy further but the general rule of thumb is that internal model logic should be inside the model. Any extra queries you want to perform on it should go into the repository class.

Agree. CRUD goes in the model.

When I teach MVC to students I have some basic rules:

If it's SQL it's in the model. I don't want to see SQL in the controller, and most certainly never ever in the view. My general rule of thumb is that I should be able to switch database engines and only touch the model.

If it's HTML/CSS/JS it's in the view. I don't want to see html tags or javascript in the controller. JS you could make a case that some of it is controller, but then I'd make a case that you have a clientside view and controller, which in the grand scheme of your application is all view for the server side.

Finally, everything goes throug a controller. You call new pages by their controller, which gets the appropriate data from the model, repackages it and passes it to a view. You never call a view directly from a model, or a model directly from a view. And if you are writing any kind of logic other than how to display something (and what should happen when it is clicked on) in the view, then you are doing it wrong.


Good explanation! What about mvvm? It's something I've never had time to learn about in any reasonable depth.
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
June 20 2018 14:25 GMT
#19331
Magento does a great deal of MVC, and if you're interested in mvvm, vue.js is built around that pattern. However, I don't think the mvvm pattern is built for large enterprise scaling. So that's a downside.
Life?
sc-darkness
Profile Joined August 2017
856 Posts
June 22 2018 18:53 GMT
#19332
Has anyone dealt with OAuth 2, any thoughts? I may have to support it soon.
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
June 23 2018 11:34 GMT
#19333
On June 23 2018 03:53 sc-darkness wrote:
Has anyone dealt with OAuth 2, any thoughts? I may have to support it soon.


Check previous page of this thread

Bonus:

[image loading]
Time is precious. Waste it wisely.
sc-darkness
Profile Joined August 2017
856 Posts
Last Edited: 2018-06-23 16:35:07
June 23 2018 16:34 GMT
#19334
Thanks, I'll read it. In terms of funny photos:

+ Show Spoiler +

[image loading]

WarSame
Profile Blog Joined February 2010
Canada1950 Posts
Last Edited: 2018-06-24 16:58:22
June 24 2018 03:28 GMT
#19335
I tried to add google oauth to my flask project and ran into issues. When I try to import google.auth.transport.requests.Request I get a module not found error. However, I can look with bash and see that the module is definitely in my venv libs.

My import looks like
from google.auth.transport.requests import Request
though I have tried other import styles, including some from their official guides. What can I be missing?

EDIT: I found out what the error was. The module requires that you have installed "requests" as a library. I thought it was referring to itself as an import or something.
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
June 24 2018 21:51 GMT
#19336
I've been trying to setup testing for my Flask app which uses Docker and I've found it difficult.

I need some strategy advice: when/how do you run your tests? Previously I was trying to run my tests using a command in my web image, but then it would exit and cause my web image to exit. Right now I'm using a test image in my compose that uses the same Dockerfile as my web image. It is fine to exit because web will keep on running. However, this seems stupid and wasteful. What is a better approach?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Excludos
Profile Blog Joined April 2010
Norway8194 Posts
July 03 2018 17:33 GMT
#19337
Hmm, I've been thinking about this for a while: What's the best way to store someone's credit card information on your servers? Obviously it would need to be encrypted, but it can't just be hashed as you'll need to somehow decrypt it when it's time to automatically renew the subscription or let the user pay more easily on his next online shopping transaction. So you'll need a good encryption and a key to decrypt it, but then you're left with the problem of how and where to store the key instead...

I'm not looking for a tool or library, but more an idea on how you'd go about solving this if you had to do it all from scratch, on a surface level.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
Last Edited: 2018-07-03 18:39:01
July 03 2018 18:35 GMT
#19338
On July 04 2018 02:33 Excludos wrote:
Hmm, I've been thinking about this for a while: What's the best way to store someone's credit card information on your servers? Obviously it would need to be encrypted, but it can't just be hashed as you'll need to somehow decrypt it when it's time to automatically renew the subscription or let the user pay more easily on his next online shopping transaction. So you'll need a good encryption and a key to decrypt it, but then you're left with the problem of how and where to store the key instead...

I'm not looking for a tool or library, but more an idea on how you'd go about solving this if you had to do it all from scratch, on a surface level.

Look up industry standards is the best advice I can give you. Financial payment information is one of those things you don't want to be approaching from scratch, because it could potentially get you in a lot of trouble. Here in North America we have the PCI DSS, which is the payment card compliance standard. I don't know what the equivalent would be in Norway.

Most secure solutions I've seen involve not hosting the credit card data at all. It generally involves a 3rd party host (provided by your payment processor) who would take the initial credit card info and give you back a unique identifier that's specific to your business. Within your business, you can keep using that ID as a credit card for processing and future payments, but if anyone hacks in to your system and gets the data it's useless to them.


Edit: Apparently PCI standards are fairly global and also apply to Norway. So there you are.
Average means I'm better than half of you.
Excludos
Profile Blog Joined April 2010
Norway8194 Posts
Last Edited: 2018-07-03 19:21:39
July 03 2018 19:19 GMT
#19339
On July 04 2018 03:35 WolfintheSheep wrote:
Show nested quote +
On July 04 2018 02:33 Excludos wrote:
Hmm, I've been thinking about this for a while: What's the best way to store someone's credit card information on your servers? Obviously it would need to be encrypted, but it can't just be hashed as you'll need to somehow decrypt it when it's time to automatically renew the subscription or let the user pay more easily on his next online shopping transaction. So you'll need a good encryption and a key to decrypt it, but then you're left with the problem of how and where to store the key instead...

I'm not looking for a tool or library, but more an idea on how you'd go about solving this if you had to do it all from scratch, on a surface level.

Look up industry standards is the best advice I can give you. Financial payment information is one of those things you don't want to be approaching from scratch, because it could potentially get you in a lot of trouble. Here in North America we have the PCI DSS, which is the payment card compliance standard. I don't know what the equivalent would be in Norway.

Most secure solutions I've seen involve not hosting the credit card data at all. It generally involves a 3rd party host (provided by your payment processor) who would take the initial credit card info and give you back a unique identifier that's specific to your business. Within your business, you can keep using that ID as a credit card for processing and future payments, but if anyone hacks in to your system and gets the data it's useless to them.


Edit: Apparently PCI standards are fairly global and also apply to Norway. So there you are.


Again I should stress I'm not looking to implement this myself, only a surface level of understanding about how you'd do it (or rather, how others have done it). I'm not crazy enough to put myself in a situation where I could get sued for millions because I lost a bunch of credit cards.

It seems to me like it's a catch 22. No matter what you do, you have to store something which lets you unencrypt the credit cards, which in turn can get stolen and used by hackers to do the exact same thing.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
July 03 2018 19:34 GMT
#19340
On July 04 2018 04:19 Excludos wrote:
Show nested quote +
On July 04 2018 03:35 WolfintheSheep wrote:
On July 04 2018 02:33 Excludos wrote:
Hmm, I've been thinking about this for a while: What's the best way to store someone's credit card information on your servers? Obviously it would need to be encrypted, but it can't just be hashed as you'll need to somehow decrypt it when it's time to automatically renew the subscription or let the user pay more easily on his next online shopping transaction. So you'll need a good encryption and a key to decrypt it, but then you're left with the problem of how and where to store the key instead...

I'm not looking for a tool or library, but more an idea on how you'd go about solving this if you had to do it all from scratch, on a surface level.

Look up industry standards is the best advice I can give you. Financial payment information is one of those things you don't want to be approaching from scratch, because it could potentially get you in a lot of trouble. Here in North America we have the PCI DSS, which is the payment card compliance standard. I don't know what the equivalent would be in Norway.

Most secure solutions I've seen involve not hosting the credit card data at all. It generally involves a 3rd party host (provided by your payment processor) who would take the initial credit card info and give you back a unique identifier that's specific to your business. Within your business, you can keep using that ID as a credit card for processing and future payments, but if anyone hacks in to your system and gets the data it's useless to them.


Edit: Apparently PCI standards are fairly global and also apply to Norway. So there you are.


Again I should stress I'm not looking to implement this myself, only a surface level of understanding about how you'd do it (or rather, how others have done it). I'm not crazy enough to put myself in a situation where I could get sued for millions because I lost a bunch of credit cards.

It seems to me like it's a catch 22. No matter what you do, you have to store something which lets you unencrypt the credit cards, which in turn can get stolen and used by hackers to do the exact same thing.

I'd still recommend PCI standards for theoretical information. Encryption key storage is included in the requirements, but yes, ultimately no system is every going to be completely secure. Security is always risk minimization, not risk prevention.

That's why a 3rd party credit card vault (which I think is the industry term) is a lot more secure than storing the data yourself.
Average means I'm better than half of you.
Prev 1 965 966 967 968 969 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 2h 33m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 668
IndyStarCraft 137
BRAT_OK 54
MindelVK 33
StarCraft: Brood War
Britney 29531
Calm 2780
Rain 2660
GuemChi 559
firebathero 242
BeSt 150
Backho 60
Oya187 54
zelot 28
ToSsGirL 22
[ Show more ]
Shine 21
scan(afreeca) 17
SilentControl 15
Sacsri 11
JulyZerg 10
Bale 8
HiyA 7
Dota 2
Gorgc8638
qojqva2810
singsing2144
League of Legends
rGuardiaN45
Counter-Strike
ScreaM1780
pashabiceps1430
byalli504
allub301
Heroes of the Storm
Khaldor681
Other Games
FrodaN2247
Fuzer 293
mouzStarbuck236
KnowMe128
ArmadaUGS93
XaKoH 83
Organizations
Dota 2
PGL Dota 2 - Main Stream30063
Other Games
EGCTV1719
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Berry_CruncH184
• poizon28 30
• IndyKCrew
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• Pr0nogo 6
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 1824
• WagamamaTV430
League of Legends
• Nemesis3083
Other Games
• tFFMrPink 21
Upcoming Events
IPSL
2h 33m
StRyKeR vs OldBoy
Sziky vs Tarson
BSL 21
2h 33m
StRyKeR vs Artosis
OyAji vs KameZerg
OSC
5h 33m
OSC
15h 33m
Wardi Open
18h 33m
Monday Night Weeklies
23h 33m
OSC
1d 5h
Wardi Open
1d 18h
Replay Cast
2 days
Wardi Open
2 days
[ Show More ]
Tenacious Turtle Tussle
3 days
The PondCast
3 days
Replay Cast
4 days
LAN Event
5 days
Replay Cast
5 days
Replay Cast
5 days
Sparkling Tuna Cup
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.