Topic List |
Page List:
1, 2 |
---|---|
ChocoboMog123 01/04/22 9:23:40 PM #51: |
1337toothbrush posted... If you want to get experience with databases, I suggest starting with a relational database (e.g. Postgres, MySQL, etc) rather than a NoSQL database like MongoDB.I've always wanted to learn MySQL, but not sure how to relate it or hook it into anything I'm doing. I took a veeeery basic class on database design and own another course on Udemy. Is there a decent way to get started? I would love to, for instance, organize some of my gacha drops in some games. Or have a database of enemies and skills I can pull into my game, though I'm not sure how. --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
SomeLikeItHoth 01/05/22 2:58:09 AM #52: |
1337toothbrush posted... If you want to get experience with databases, I suggest starting with a relational database (e.g. Postgres, MySQL, etc) rather than a NoSQL database like MongoDB.I definitely want to learn MySQL. I'm just following this course, for now. --- FAM FOREVER. | https://i.imgur.com/cGrHeeU.jpg ... Copied to Clipboard!
|
Questionmarktarius 01/05/22 3:07:52 AM #53: |
SomeLikeItHoth posted... I definitely want to learn MySQL.I could teach you the guts of mysql in a day. The relationships are dead simple. The queries are not. I've been doing various flavors of SQL for fifteen or twenty years now, and you're better off punting it to multiple server-side queries than trying to compose a great query all at once. ... Copied to Clipboard!
|
SomeLikeItHoth 01/05/22 5:20:01 AM #54: |
Questionmarktarius posted... I could teach you the guts of mysql in a day.I may take you up on that some day. Right now I'm trying to break into the programming career world. Started learning Python but recently made the switch to front end development. I've been following this bootcamp series on Udemy which has taught me a lot of stuff, but I feel like I'm lacking actual guidance. I don't know exactly what I should be studying, I'm just following along. I'll be done with this course by the end of the month, but I don't know where to go from there. I know I'll need to continue learning, but that learning mainly consists of me googling what I should be doing next. --- FAM FOREVER. | https://i.imgur.com/cGrHeeU.jpg ... Copied to Clipboard!
|
Questionmarktarius 01/05/22 5:22:10 AM #55: |
SomeLikeItHoth posted... I may take you up on that some day.Just ask. Right now I'm trying to break into the programming career world.I cut my teeth on Pascal when it was already irrelevant, went on to C++ and java. Somehow picked up cobol and fortran along the way. I make my living coding php in LAMP environments. ... Copied to Clipboard!
|
ChocoboMog123 01/06/22 11:53:17 PM #56: |
Bump. Working on MySQL and A+ classes. Probably going to code tomorrow. --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
Harpie 01/07/22 12:07:45 AM #57: |
I've just started learning Java for school, and I'm also getting into Python on my own time for data analytics. It's more fun than I expected it to be which is nice. I don't have any personal projects in mind yet though @SomeLikeItHoth you mentioned books earlier in the thread. Would you have any recommendations for me? --- no ... Copied to Clipboard!
|
SomeLikeItHoth 01/07/22 6:45:26 AM #58: |
@Harpie Im sick, so when I can Ill recommend you more, but start with Python Crash Course. Its an amazing book. I think its $20 on Amazon which is a total steal. I read through it once last year, and I may do so again as a refresher. --- FAM FOREVER. | https://i.imgur.com/cGrHeeU.jpg ... Copied to Clipboard!
|
1337toothbrush 01/07/22 9:01:31 AM #59: |
ChocoboMog123 posted... I've always wanted to learn MySQL, but not sure how to relate it or hook it into anything I'm doing. I took a veeeery basic class on database design and own another course on Udemy. Is there a decent way to get started?To be fair, a relational database can be overkill for that. I typically go for a custom file-based format for simple data persistence. --- https://imgur.com/a/FU9H8 - https://i.imgur.com/ZkQRDsR.png - https://i.imgur.com/2x2gtgP.jpg ... Copied to Clipboard!
|
Giant_Aspirin 01/07/22 9:37:51 AM #60: |
i've been professionally using Java for 16 years. feel free to ask me stuff --- Playing: Psychonauts 2; Dead Cells I hope something good happens to you today ... Copied to Clipboard!
|
#61 | Post #61 was unavailable or deleted. |
ChocoboMog123 01/08/22 1:58:42 PM #62: |
1337toothbrush posted... To be fair, a relational database can be overkill for that. I typically go for a custom file-based format for simple data persistence.So I have this data I've been storing in a google sheet: https://docs.google.com/spreadsheets/d/1xx-n3TFnBE4Ha8rhYo0YXUT7yRyJSUU44dEOMzB2Dm0/edit?usp=sharing If you navigate to the "Owned Relics" tab, you'll see most of the grunt work. Is there a better, more accessible, more easily updated way to store that data? --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
1337toothbrush 01/08/22 6:26:32 PM #63: |
ChocoboMog123 posted... So I have this data I've been storing in a google sheet: https://docs.google.com/spreadsheets/d/1xx-n3TFnBE4Ha8rhYo0YXUT7yRyJSUU44dEOMzB2Dm0/edit?usp=sharingAre you running into any problems with your current setup? If you wanted to use this data programmatically, you could always access this data through Google's API: https://developers.google.com/sheets/api The limitation would be that you'd need to be connected to the internet. If you wanted to migrate this data offline, you could do so in a number of ways, but it really depends on how you're planning on organizing and accessing this data. --- https://imgur.com/a/FU9H8 - https://i.imgur.com/ZkQRDsR.png - https://i.imgur.com/2x2gtgP.jpg ... Copied to Clipboard!
|
ChocoboMog123 01/09/22 6:28:36 PM #64: |
1337toothbrush posted... Are you running into any problems with your current setup? If you wanted to use this data programmatically, you could always access this data through Google's API: https://developers.google.com/sheets/apiYeah, it's all sorted in a rather specific order and if I want to add an entry I have to drag all the entries below it, crtl+x, crtl+v. I guess I could create a sheet for each column and then create a way to view what I want... --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
ChocoboMog123 01/09/22 11:20:45 PM #65: |
I've been working all day on little bits of my Java game. Having big issues pushing(?) it to GitHub. Here's a gist: https://gist.github.com/TurquoisePenguin/743473ea715cbae3b66cef3f29c560f7 Changelog: Tested and finished (fight method): - display enemies - display actions - select actions (input) - determine turn order Partially implemented: - perform actions TODO: Have each class read in actions and proceed accordingly. --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
ChocoboMog123 01/10/22 3:15:48 AM #66: |
Sorry for the triple post. How do I select an action based on input? I was planning on making methods for every character's action. Depending on what you do, the code would run Player.attack(), or Player.castFireball(), or maybe Player.cast(fireball). I really don't want to make a switch-case for every single action, especially since those choices can change as you progress. What's a clean way to do this? --- "You're sorely underestimating the power of nostalgia goggles." - adjl http://www.smbc-comics.com/comics/20110218.gif ... Copied to Clipboard!
|
1337toothbrush 01/10/22 5:40:20 AM #67: |
ChocoboMog123 posted... Yeah, it's all sorted in a rather specific order and if I want to add an entry I have to drag all the entries below it, crtl+x, crtl+v. I guess I could create a sheet for each column and then create a way to view what I want...Couldn't you sort the columns by this specific order? At the very least you could assign a number and then sort by that number. You could also move the data to a relational database and run sorts and queries that way. --- https://imgur.com/a/FU9H8 - https://i.imgur.com/ZkQRDsR.png - https://i.imgur.com/2x2gtgP.jpg ... Copied to Clipboard!
|
1337toothbrush 01/10/22 5:43:53 AM #68: |
ChocoboMog123 posted... Sorry for the triple post. How do I select an action based on input?You could have an array of actions that you can slot actions into. You'll have to structure it such that each action is the same type. --- https://imgur.com/a/FU9H8 - https://i.imgur.com/ZkQRDsR.png - https://i.imgur.com/2x2gtgP.jpg ... Copied to Clipboard!
|
Topic List |
Page List:
1, 2 |