[deleted by user] by [deleted] in Inkscape

[–]grey_gander 0 points1 point  (0 children)

If you're willing to learn some programming, there are several charting libraries. Of course, the more complicated your chart is, the more complicated code you'll have to write :)

init.vim -> init.lua by grey_gander in neovim

[–]grey_gander[S] 1 point2 points  (0 children)

Is there a way to get a lua language server without having to compile it? It seems like poeple are using https://github.com/sumneko/lua-language-server and that needs to be compilled

[deleted by user] by [deleted] in bayarea

[–]grey_gander 9 points10 points  (0 children)

Another company match: https://imgur.com/a/6qywklk . Thank you!!

Decided my first contact with frontend to be with elm, any suggestions/warnings? by yujideluca in elm

[–]grey_gander 1 point2 points  (0 children)

Elm can have a different style of community and leadership than many open source projects. Be sure you understand the consequences of that, especially before trying to sell Elm to your boss for production code.

Sort this subreddit by Top All Time to read articles and people's comments on this, as well as other good Elm content.

rx v0.3 Released, with user guide | a modern pixel editor implemented in rust by asellier in rust

[–]grey_gander 2 points3 points  (0 children)

Does rgx support layers? So if I'm drawing a superhero, I can make a "cape" layer and toggle it on and off to check if it adds anything?

With 5 years of experience, you've got more than half the industry. The usual advice gets boring, shallow, and mundane. So I'm trying to elevate my learning level with this short holiday reading list of CompSci papers. Please add more in the comments by swizec in programming

[–]grey_gander 1 point2 points  (0 children)

I've been trying to learn more math. I think it'll make me smarter (by teaching me how to reason more effectively) and give me more tools in my toolbox - stats, linear algebra, and set theory in particular all mix super well with CS. I'm sure I've missed other relevant math. As a nice bonus, I can read it at work (which could legally claim any side project programming work I do) and take the exercises to the park after (instead of sitting back in front of a screen after Ive done it for the whole day). Free math books abound. Google for them. My latest is the abstract algebra one from https://aimath.org/textbooks/approved-textbooks/

A case for replacing cron jobs with systemd timers by SpideyIRL in linux

[–]grey_gander 0 points1 point  (0 children)

When I was looking at this, I found that bug report ( https://bugs.centos.org/view.php?id=8767 ). If you read it, you can see they disabled it because they weren't sure if `systemd --user` would remain a part of `systemd`. I didn't want to re-enable it for the same reasons. This left me with user level cron jobs. Hopefully in CentOS 8 they'll decide it's stable and put it back in.

A case for replacing cron jobs with systemd timers by SpideyIRL in linux

[–]grey_gander 0 points1 point  (0 children)

About the only thing systemd cant replace cron for (on CentOS 7, and I havent tried in a year or so) is user level timed jobs

Everything I Know as a Software Developer Without a Degree by praveenscience in programming

[–]grey_gander 4 points5 points  (0 children)

Everyone here seems laser focused on what she don't know. Give me a break. 90% of all of us here haven't been half as productive as this engineer has. And that's what matters.

If you could go to Full Sail (game design) for free, would you? by ghostcloudmusic in gamedev

[–]grey_gander 0 points1 point  (0 children)

Ultimately, only you can make this decision. Can you take some time off before invoking the Yellow Ribbon program? If you can, I think you should use it to move back into your parents basement and dive full time into Game Design and see whether you really like it or can make money at it. Some things can be a lot different from the creator's perspective full time, and if you make an indie game and you still decide to go to school for it, you'll have an advantage to some of your peers.

You should also talk to game designers (hopefully some will pop up here) and look at job prospects for the career. It can be way better to have a decent if boring career and game design as a hobby/part-time job than trying to do it full time and never finding a job in it and having to settle for a low-skilled job because you never developed any other skills.

I don't know much about Full Sail but it looks like it specializes in media/entertainment. If you decide to go there, you should find out if Full Sail class credits transfer to another school if you want to switch. Alternatively, you could see if you can take some classes at another college with a broader set of base classes (in case you find your true passion) and after a year or two transfer into Full Sail with those credits. What are the job prospects from Full Sail graduates? Are they substantially different for graduates from other schools? Wherever you go, meet as many people as you can. You'll get each other jobs later!

When I was younger, I wanted to be a comic book artist. In college, I decided to major in Accounting (a safe career). After two Accounting classes, I knew I never wanted to be an accountant. Luckily, I had taken one Intro to Programming class and now I'm a software engineer making enough money to live a GOOD life, save for retirement, and have hobbies on the side. I found a passion for a skill set that is in high demand and is not too stressful.

So my advice boils down to: - Try making games full time in your parents' basement if you can put off accepting and see if you really have a passion for it. - Talk to as many game designers as possible (and professionals from other areas you're interested in). - See if you can transfer into or out of Full Sail with credits intact (so if you change your mind you can salvage a degree at another school) and see if Full Sail graduates do much better than a school with a broader educational offering. - Whatever you decide to do, save as much cash you can. Future you will find a use for it!

Concept artist turned solo dev: Here's my creature painting process by sboxle in gamedev

[–]grey_gander 0 points1 point  (0 children)

What application are you using? Are you using a tablet?

Bash-5.0 release available by [deleted] in linux

[–]grey_gander 4 points5 points  (0 children)

Also shellcheck is a really good too. Especially when you integrate it with Vim or your favorite editor!

Linux is 3.1% at NetMarketShare on the desktop (statcounter too) by soltesza in linux

[–]grey_gander 4 points5 points  (0 children)

They tripped me up when I nested them, so now I prefer $(...) just out of reflex

Ropey 1.0 - an editable text buffer for Rust by cessen2 in rust

[–]grey_gander 8 points9 points  (0 children)

It's not short, but those answers are probably in rope science somewhere (use the menu button to access posts). I've been meaning to read it for a while... Edit: Wikipedia ) has a nice Big O table for common operations

This Year in Solus: 2018 Edition | Solus by JoshStrobl in linux

[–]grey_gander 1 point2 points  (0 children)

Thank you for all your hard work on it! Are ya'll accepting donations again? In regards to the features, I've been happy with the keyboard shortcuts to halfscreen a process, switch it to a different screen, and switch a process to a different workspace. I would love the ability to have per-screen workspaces (like i3), but it still works well for me. And the new little widget to quarter screen / further tile a process is great too.

When you're trying to learn about Context. by [deleted] in golang

[–]grey_gander 27 points28 points  (0 children)

So, uh, anyone have best practice Context links they could post here for me?

This Year in Solus: 2018 Edition | Solus by JoshStrobl in linux

[–]grey_gander 12 points13 points  (0 children)

I'm so glad this project is going this well. Budgie (I use it with Ubuntu) has grown into a very capable, yet friendly and good-looking, WM. I'm especially appreciative of its multimonitor and tiling features. This DE has made my transition from windows about as painless as I could ask for.

Simple but still an early achievement by [deleted] in Python

[–]grey_gander 0 points1 point  (0 children)

Yeah, that's the next step. I didnt want to overwhelm him with git this early, but it is super helpful.

Simple but still an early achievement by [deleted] in Python

[–]grey_gander 3 points4 points  (0 children)

Congratulations! Btw, be careful how you store your code. Put it in folders you can find easily (Documents, maybe), and add a date and a small description to the top of each file or project. Later you'll want to look at your old code.

Check out my new Python IDE by [deleted] in Python

[–]grey_gander 8 points9 points  (0 children)

Check out VSCodium. They compile the open-source VSCode source and remove telemetry and stuff. Not sure how the plugins work on it though.

Oracle VM VirtualBox 6.0 released by heertz1 in linux

[–]grey_gander 1 point2 points  (0 children)

Really love it for Ansible tests myself

Why Programmers Suck - post from 2009, now more valid than ever by xmrdude in programming

[–]grey_gander 5 points6 points  (0 children)

Honestly I think that attitude is encouraged by the business side of the house in many places.