this post was submitted on 26 Jul 2024
3 points (100.0% liked)

Asklemmy

43403 readers
1070 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

Could be a painting, a story, a movie, woodworking, absolutely anything. Also why?

top 15 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 1 month ago (2 children)

I keep telling myself I'm going to draw monsters. But I never do.

[–] [email protected] 1 points 1 month ago (1 children)

Would you start with big scarry teeth and draw the rest of the monster around that? Or start with the shape and worry about details later?

[–] [email protected] 1 points 1 month ago

Body type. Reptile, humanoid, insect, vacuum cleaner, etc.

[–] [email protected] 1 points 1 month ago (1 children)

What about starting with a really really small monster. Like a tiny little itty bitty marginalia monster

[–] [email protected] 0 points 1 month ago (1 children)

Small monsters outfitted in cast off household junk that has been repurposed is a longer term goal.

The problem isn't ideas. It's putting the phone down and picking up the drawing tools.

[–] [email protected] 0 points 1 month ago (1 children)

The problem isn't ideas. It's putting the phone down and picking up the drawing tools.

I'm quite literally in no position to criticise, but I'd like to brainstorm some ideas with you. I struggle with this too, but have managed to make some progress over the years.

Do you take notes for work or something where you could scratch out a concept or two in between tasks? Would an app/phone timer like Lock Me Out help get your phone time down to a level you're happier with?

This kind of stuff has worked for me anyway. Not to say it isn't still a challenge

[–] [email protected] 0 points 1 month ago (1 children)

I jot down notes in SimpleNote on occasion. I need to gather my supplies.

[–] [email protected] 0 points 1 month ago (1 children)

Like your drawing tools? That's a good idea. What's keeping you from that now?

[–] [email protected] 2 points 1 month ago

A complete lack of organization and an air conditioner that hasn't worked in three years. It's frequently been 87 to 89 in my house for over a month now. It kills motivation to move. But I did just go outside and remove all the 4 foot tall grass from my brick patio. So I have that going for me. Which is nice.

I need to draw monsters that do yardwork. They work outside. Elves make shoes inside. Goblins prune and edge.

[–] [email protected] 0 points 1 month ago (1 children)

Webdev. Wanted to do this to increase my tech skills and insulate myself from several degrees of idiocy at work. Just haven’t had the wherewithal.

[–] [email protected] 0 points 1 month ago* (last edited 1 month ago) (1 children)

If you have the time, I'd recommend trying it out. Creating a basic webpage isn't too hard, and you probably have the tools to get started on your computer already (you can do it with just Notepad and view it in any web browser! Although I would recommend downloading a free proper code editor such as VS Code).

[–] [email protected] 0 points 1 month ago* (last edited 1 month ago) (1 children)

Bruh, I’m talking about a crud app. Possibly running on the shiny framework. It’s not going to be trivial.

[–] [email protected] 0 points 1 month ago (1 children)

Oh, okay. Still more doable than you might think, but of course not trivial. Good luck!

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago) (1 children)

Let me ask, maybe you know: say I want to build a finance app that basically crunches a lot of data accessed from a DB, does some pretty intricate subsetting of the data, and produces Excel reports (XML). I currently do this with about 1300 lines of R code and a SQLite DB. Pretty lean and easy to use (was a bitch to write, tho, really stretched my understanding of lexical scoping and functional programming). If I wanted to webify this, the main challenge that I think I face is finding a framework that allows me to do all that nitty gritty data subsetting and summarizing - this is where R is really excellent, more flexible and expressive than SQL. What framework, if any, might you recommend? What kind of stack would be good for a beginner?

[–] [email protected] 1 points 1 month ago

Apologies for the wait!

Most good libraries for interacting with DBs and Excel documents are written for the backend, so you'll probably want to use Node with a simple web server like Express to serve pages, and do your heavy calculations, report generation, and DB stuff on the Node server. Making a server seems complex but Express is quite easy-- you can get a functional web server in like 10 lines of code.

As for what framework would be good to use for the actual calculations, unfortunately I don't have any recommendations. Generally I find that JS has enough by default to do decently complex grouping, summarizing, subsetting, calculating, etc. operations. You'll probably want to use the "new" (now pretty old) array methods Map and Reduce, and new stuff like groupBy could be helpful. If you have any specific questions I should be able to answer them.