• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 05:50
CET 11:50
KST 19:50
  • 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 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
Clair Obscur - Expedition 33 Stormgate/Frost Giant Megathread EVE Corporation Path of Exile [Game] Osu!
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
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: 2206 users

The Big Programming Thread - Page 1020

Forum Index > General Forum
Post a Reply
Prev 1 1018 1019 1020 1021 1022 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
Spain18130 Posts
July 19 2020 14:05 GMT
#20381
I agree with Furikawari. Having a class Secretario and setting his "job" to Secretario is double. This looks like a situation for polymorphism. If the exercise is specifically asking to use enums for jobs, you would probably want to go the other way round and have a single class "Employee" where you can set Employee.job dependent on the actual job he or she has. Something like this:

+ Show Spoiler +

public Empleado(String despacho, String fax, String nombre, String apellidos, String DNI,
String direccion, int anyos_antiguedad, String telefono, double salario, String supervisor, Jobs job) {
super(nombre, apellidos, DNI, direccion, anyos_antiguedad, telefono, salario, supervisor);
this.office = despacho;
this.fax = fax;
this.job = job;
}

Although you'll probably have to change some things with your super() call.
Godwrath
Profile Joined August 2012
Spain10132 Posts
Last Edited: 2020-07-19 14:21:35
July 19 2020 14:11 GMT
#20382
Thanks for the answers guys, yeah that's what i did (employee and 3 child classes). It's more out of curiosity if i could do an enum, and assign the value in a constructor, or if that's incorrect (not because it doesn't work, but more about if it can bring problems later on). I ended up just adding the job in the toString() method rather than a field.

While i am at it, are there any books that you recommend for java (not sure how updated the old OP is in that regard)?
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2020-07-19 14:30:51
July 19 2020 14:26 GMT
#20383
On July 19 2020 23:11 Godwrath wrote:
Thanks for the answers guys, yeah that's what i did (employee and 3 child classes). It's more out of curiosity if i could do an enum, and assign the value in a constructor, or if that's incorrect (not because it doesn't work, but more about if it can bring problems later on). I ended up just adding the job in the toString() method rather than a field.

While i am at it, are there any books that you recommend for java (not sure how updated the old OP is in that regard)?


The point of polymorphism is to make the code easier and more modular. If you store the subclass as an enum instead of using polymorphism then your code must check for that enum every time you want to do something different based on the subclass. Polymorphism allows the code to know what it is so each subclass can have its own method and you don't have to do those extra checks yourself.
I'll always be your shadow and veil your eyes from states of ain soph aur.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
July 19 2020 22:52 GMT
#20384
As an addition to the above, you can also have shared methods return different things. For example, you may have a shared function in your Employee class called "getJobName". In response to this function call your Secretario subclass of Employee can return "Secretario", Boss can return "Jefe", etc.
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
July 21 2020 00:39 GMT
#20385
First of all, please try to write all variable names in English. This makes your code more readable internationally and you can always translate the fields you needs when displaying them to the user.

Second thing that comes to mind is your awfully long constructor, just pass those variables as a hash or some other form of data if you really have to. It's worth keeping in mind that you should avoid creating methods that take on more than 4 arguments (that includes constructors).

I think that for this particular case you could use either inheritance (as others already suggested) or some form of composition (which you should prefer over inheritance) like the abstract document pattern.
Time is precious. Waste it wisely.
Godwrath
Profile Joined August 2012
Spain10132 Posts
July 21 2020 13:55 GMT
#20386
Noted, thanks everyone!
JimmyJRaynor
Profile Blog Joined April 2010
Canada17026 Posts
Last Edited: 2020-07-21 15:00:15
July 21 2020 14:38 GMT
#20387
On June 23 2020 00:28 necrosexy wrote:
any recommended .NET guides?

i really like this guy's insights into MS development technologies including .NET

https://weblog.west-wind.com/

if you are building sophisticated database applications and speed is an important factor... Rick Strahl is a great guy to follow.

Damn, I wish I could maintain and grow my customer base from Maui Hawaii.
Ray Kassar To David Crane : "you're no more important to Atari than the factory workers assembling the cartridges"
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
July 21 2020 20:07 GMT
#20388
On July 21 2020 22:55 Godwrath wrote:
Noted, thanks everyone!


I also forgot to mention that you should use proper data types on the db if possible. For example, if you have a "job" or "role" on your user and it's always going to be one of specific list you should make it an enum (postgres example) instead of a string/varchar. This way your column will always take up only 4 bytes of data but still be human readable. Just like you should use "money" for storing currency, "inet" for ip addresses, so on and so forth. It makes your data more robust and helps with integrity.

On June 23 2020 00:28 necrosexy wrote:
any recommended .NET guides?


Not strictly .NET but Code Complete 2nd ed. is a mandatory read in my opinion.
Time is precious. Waste it wisely.
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
Last Edited: 2020-08-05 10:19:43
August 05 2020 10:18 GMT
#20389
I have a question regarding desktop apps. I want to create an app for my wife's business and I intend to do it in Java. There's one thing I have trouble finding info about on the web: storing encrypted data.

Since the app will deal with medical patients it's vital that all their data will be secure. I'm not really sure how to do it though. Should I use sqlite file and encrypt it with third party software? (I guess it would be decrypted while in use by the app, exposing a potential security hole)

Have any of you dealt with stuff like that? Any ideas or pointers are welcome. I will be doing some more research on this by myself and will post any updates if I find something interesting.

I don't really need super specifics since I'm only on the planning process (and I don't know Java that well yet) so just high level concepts will suffice for me right now.

Edit: Currently I'm looking for pure desktop solutions that don't require internet access. I know I can always make an API that will store the data on a secure server in the db there.
Time is precious. Waste it wisely.
tofucake
Profile Blog Joined October 2009
Hyrule19159 Posts
August 05 2020 12:52 GMT
#20390
sqlite has a native encryption at rest extension: https://www.sqlite.org/see/doc/release/www/readme.wiki
Liquipediaasante sana squash banana
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
Last Edited: 2020-08-05 21:23:35
August 05 2020 21:18 GMT
#20391
On August 05 2020 21:52 tofucake wrote:
sqlite has a native encryption at rest extension: https://www.sqlite.org/see/doc/release/www/readme.wiki


Nice. I think it's also possible to use native HSQL encrypted db with Java which could be potentially a better solution - no need to compile sqlite differently on different platforms and you can use Hibernate out of the box.


DriverManager.getConnection("jdbc:hsqldb:file:_some_encrypted_db;crypt_key="+key+";crypt_type=AES", "SA", "")


I'll keep looking into that.

Edit: It seems that H2 might be even better for that since it comes with more features like fulltext search and odbc driver.
Time is precious. Waste it wisely.
JimmyJRaynor
Profile Blog Joined April 2010
Canada17026 Posts
August 06 2020 18:33 GMT
#20392
On August 05 2020 19:18 Manit0u wrote:
I have a question regarding desktop apps. I want to create an app for my wife's business and I intend to do it in Java. There's one thing I have trouble finding info about on the web: storing encrypted data.

Since the app will deal with medical patients it's vital that all their data will be secure. I'm not really sure how to do it though. Should I use sqlite file and encrypt it with third party software? (I guess it would be decrypted while in use by the app, exposing a potential security hole)

Have any of you dealt with stuff like that? Any ideas or pointers are welcome. I will be doing some more research on this by myself and will post any updates if I find something interesting.

I don't really need super specifics since I'm only on the planning process (and I don't know Java that well yet) so just high level concepts will suffice for me right now.

Edit: Currently I'm looking for pure desktop solutions that don't require internet access. I know I can always make an API that will store the data on a secure server in the db there.

For the desktop medical apps I develop ... I use visual foxpro and Cryptor for encryption.
I maintain some Foxpro for DOS applications that also use Cryptor for encryption.

When I want to make the data available to internet or mobile users I use West Wind Web Connection.
Ray Kassar To David Crane : "you're no more important to Atari than the factory workers assembling the cartridges"
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
August 07 2020 10:22 GMT
#20393
Thanks for the suggestion Jimmy. I'll look into it.

Also, I've got a piece of advice for you guys. If you ever get a job offer to work with Magento, turn it down. I've just got one temporarily before I negotiate something better and boy is it a pain. No real coding, you just copy-paste stuff and change some values. Still, even that takes longer than just writing the same thing from scratch in normal framework with tests and everything. Fucking horrible.

If you want to start your e-commerce business and want to set up your shop just go for a custom solution. Magento might be fine just for starters but only as long as you don't need any custom features for it and can use it out of the box. In my opinion doing anything in it is a waste of client's money and programmer's time...
Time is precious. Waste it wisely.
zatic
Profile Blog Joined September 2007
Zurich15355 Posts
August 07 2020 10:42 GMT
#20394
Our partners are working with Magento and it's a nightmare to negotiate any interfaces with them. I have no idea what you need to do on the Magento side to call an external service but the amount of documentation they want is nuts. Of course, it could also be the company's fault, less the product's.

For e-commerce Shopify or bust.
ModeratorI know Teamliquid is known as a massive building
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
August 07 2020 12:58 GMT
#20395
On August 07 2020 19:42 zatic wrote:
Our partners are working with Magento and it's a nightmare to negotiate any interfaces with them. I have no idea what you need to do on the Magento side to call an external service but the amount of documentation they want is nuts. Of course, it could also be the company's fault, less the product's.

For e-commerce Shopify or bust.


Well, it's a pain to do anything in it. I've just wasted an entire day to simply add another attribute to one model (doing only backend). In general, something that should be done in like 20-30min including tests in normal framework takes ages in Magento. The way it handles db migrations and such is also atrocious.

For me the worst thing is that you're writing very little actual code. Most of the stuff is just playing with .xml files and copy-pasting vendor classes to override specific methods. It's super slow too because all those .xml files you're toying with are used to then invoke magic stuff to generate code for new classes on the fly during runtime.

Now I have a task to create a process that'll update product descriptions based on a template by filling out placeholders with data from the product. Simple stuff but I envision it'll take me like a week or two to do in Magento...
Time is precious. Waste it wisely.
JimmyJRaynor
Profile Blog Joined April 2010
Canada17026 Posts
August 07 2020 12:59 GMT
#20396
On August 07 2020 19:22 Manit0u wrote:
Thanks for the suggestion Jimmy. I'll look into it.

Also, I've got a piece of advice for you guys. If you ever get a job offer to work with Magento, turn it down. I've just got one temporarily before I negotiate something better and boy is it a pain. No real coding, you just copy-paste stuff and change some values. Still, even that takes longer than just writing the same thing from scratch in normal framework with tests and everything. Fucking horrible.

If you want to start your e-commerce business and want to set up your shop just go for a custom solution. Magento might be fine just for starters but only as long as you don't need any custom features for it and can use it out of the box. In my opinion doing anything in it is a waste of client's money and programmer's time...

Working in medical is awesome.. the money is great. Its almost all women at the top who leave you alone and don't try to micromanage you thinking they "know software development". I'd say the medical establishment in Canada and the northeastern USA has the proper balance of fear and respect for technology that makes working for them pretty easy.

In my experience the best CIOs, project managers, and business analysts in the medical industry were front line medical workers earlier in their careers. The MBA wielding "Business Only" ones... try too much Jedi Master mind trick bullshit that they think is "advanced business management techniques".

The former front liners respect science and respect the sometimes arduous and lengthy software testing process. They are also more down to earth and more realistic. Avoid those MBA jerks.
Ray Kassar To David Crane : "you're no more important to Atari than the factory workers assembling the cartridges"
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
August 07 2020 13:14 GMT
#20397
The app I'm creating right now is for my wife's small medical business. But most apps for medical in Poland suck monkey balls (it can be said the same about edu, tax and various office software too) since they're made by huge companies that don't give a fuck and hire students to churn them out. When you see completely plain and unstyled, generic Java stuff with copyright from 2005 you know it can't be good. It annoys everyone who uses them but there are no alternatives here.

If I manage to create this app for my wife and it'll be any good I'll think of licensing it out to other medical facilities. Then I can probably even start building a shared medical db and you can live off of that (I'm seriously tired from working for other people who don't give a shit).
Time is precious. Waste it wisely.
Manit0u
Profile Blog Joined August 2004
Poland17450 Posts
August 10 2020 09:47 GMT
#20398
Discovery of the day: company I'm working for now has a shower in the server room. Literally server rack is standing next to a shower stall.

My mind was blown.
Time is precious. Waste it wisely.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
August 10 2020 09:59 GMT
#20399
Uhhh. Why? Is it foam shower? Is it part of fire extinguishing system? I need to know more
Pathetic Greta hater.
Kipsate
Profile Blog Joined July 2010
Netherlands45349 Posts
Last Edited: 2020-08-10 11:12:23
August 10 2020 11:11 GMT
#20400
Haha ,we work for a lot of E-Commerce Clients and they all build their stuff in Magento or Magento 2

We get a lot of busines from it as they inevitably need to build stuff that integrates with Magento but I haven't heard anyone who is really satisfied with it.

I also worked with a client who had Shopify which was just way better.
WriterXiao8~~
Prev 1 1018 1019 1020 1021 1022 1032 Next
Please log in or register to reply.
Live Events Refresh
RSL Revival
07:30
Playoffs
herO vs MaruLIVE!
Tasteless1180
Crank 1127
IndyStarCraft 231
Rex153
3DClanTV 91
CranKy Ducklings83
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Tasteless 1180
Crank 1127
mouzHeroMarine 275
IndyStarCraft 231
Rex 153
SortOf 63
MindelVK 27
StarCraft: Brood War
Britney 35184
Larva 874
PianO 723
firebathero 453
Killer 265
Last 157
sorry 108
Rush 96
HiyA 36
soO 29
[ Show more ]
Backho 23
Hm[arnc] 20
Aegong 7
Movie 7
Purpose 6
Dota 2
XcaliburYe321
League of Legends
JimRising 409
Heroes of the Storm
Khaldor173
Other Games
summit1g19639
crisheroes245
Fuzer 145
Trikslyr30
Organizations
Dota 2
PGL Dota 2 - Main Stream25337
Other Games
gamesdonequick646
StarCraft: Brood War
UltimateBattle 56
lovetv 8
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Berry_CruncH206
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1295
• Stunt431
Upcoming Events
WardiTV Korean Royale
1h 10m
SC Evo League
1h 40m
IPSL
6h 10m
Julia vs Artosis
JDConan vs DragOn
OSC
6h 10m
BSL 21
9h 10m
TerrOr vs Aeternum
HBO vs Kyrie
RSL Revival
20h 40m
Wardi Open
1d 3h
IPSL
1d 9h
StRyKeR vs OldBoy
Sziky vs Tarson
BSL 21
1d 9h
StRyKeR vs Artosis
OyAji vs KameZerg
OSC
1d 12h
[ Show More ]
OSC
1d 22h
Monday Night Weeklies
2 days
OSC
2 days
Wardi Open
3 days
Replay Cast
3 days
Wardi Open
4 days
Tenacious Turtle Tussle
4 days
The PondCast
4 days
Replay Cast
5 days
LAN Event
6 days
Replay Cast
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...

Disclosure: This page contains affiliate marketing links that support TLnet.

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.