• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:27
CET 11:27
KST 19: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
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
2026 KongFu Cup Announcement2BGE Stara Zagora 2026 cancelled10Blizzard Classic Cup - Tastosis announced as captains13Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18
StarCraft 2
General
Blizzard Classic Cup - Tastosis announced as captains BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement
Tourneys
2026 KongFu Cup Announcement [GSL CK] Team Maru vs. Team herO StarCraft Evolution League (SC Evo Biweekly) WardiTV Team League Season 10 Master Swan Open (Global Bronze-Master 2)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Gypsy to Korea ASL21 General Discussion BW General Discussion Are you ready for ASL 21? Hype VIDEO
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2291 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
Spain18233 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
Spain10139 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
Poland17692 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
Spain10139 Posts
July 21 2020 13:55 GMT
#20386
Noted, thanks everyone!
JimmyJRaynor
Profile Blog Joined April 2010
Canada17329 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
Poland17692 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
Poland17692 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
Hyrule19194 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
Poland17692 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
Canada17329 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
Poland17692 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
Zurich15363 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
Poland17692 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
Canada17329 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
Poland17692 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
Poland17692 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
Poland4742 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
10:00
Season 4: Group B
MaxPax vs Rogue
Clem vs Bunny
IndyStarCraft 80
LiquipediaDiscussion
CranKy Ducklings
10:00
Master Swan Open #101
CranKy Ducklings26
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Tasteless 683
SortOf 171
IndyStarCraft 80
Rex 66
StarCraft: Brood War
Sea 90541
Calm 22592
BeSt 610
actioN 524
Larva 356
EffOrt 187
Stork 186
Dewaltoss 115
ToSsGirL 76
Last 75
[ Show more ]
Backho 61
Mind 39
IntoTheRainbow 31
sSak 29
JulyZerg 26
GoRush 22
Bale 8
SilentControl 7
Dota 2
NeuroSwarm118
resolut1ontv 105
XcaliburYe98
ODPixel87
canceldota45
League of Legends
JimRising 451
Counter-Strike
zeus280
Super Smash Bros
Mew2King57
Heroes of the Storm
Khaldor102
Other Games
singsing447
Fuzer 177
Organizations
Dota 2
PGL Dota 2 - Main Stream10107
Other Games
gamesdonequick1197
ComeBackTV 226
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• LUISG 30
• CranKy Ducklings SOOP2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt1333
Upcoming Events
WardiTV Team League
1h 33m
uThermal 2v2 Circuit
6h 33m
BSL
9h 33m
Sparkling Tuna Cup
23h 33m
RSL Revival
23h 33m
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
1d 1h
Patches Events
1d 6h
BSL
1d 9h
Replay Cast
1d 13h
Replay Cast
1d 22h
[ Show More ]
Wardi Open
2 days
Monday Night Weeklies
2 days
OSC
2 days
WardiTV Team League
3 days
GSL
3 days
The PondCast
4 days
WardiTV Team League
5 days
Replay Cast
5 days
WardiTV Team League
6 days
Korean StarCraft League
6 days
Liquipedia Results

Completed

Proleague 2026-03-13
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
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 © 2026 TLnet. All Rights Reserved.