I’ve always wanted to understand what is actually meant by this. I have wanted to get into programming for years, did some basic python and c, but could never really progress. Not necessarily a linux question but I know since most distros come with libraries already, it’s popular to use for programming.

I have trouble understanding what people are actually programming if it isn’t their job. Like, you go to your computer and start working on…what? I don’t know enough to make an entire program or debug a game, so im just unsure what people do especially when starting out.

Also I don’t really want to learn it for a job. I just want to learn it to know it. But im not sure how to apply it to anything realistic.

  • JakenVeina@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    19 hours ago

    But im not sure how to apply it to anything realistic

    I think that’s a misconception a lot of people have: unless you get a job in the field, or get into open source work, you probably won’t. Not at any amount of scale, anyway.

    Like, you go to your computer and start working in…what?

    For myself, I find that (outside of work and open source) I don’t really USE my programming skills, except that knowing programming enables me to think about problems in my life in a more analytical way. Every once in a while, I might be doing something tedious and techy that I’ll take an hour or two to automate. For example, I’ve done that for re-organizing and renaming video and music files. I also helped my wife a few hundred pages of text from a wiki she maintains for her D&D guild, when they were migrating to a new provider.

    im just unsure what people do especially when starting out.

    If you have an idea for something that you find interesting or are passionate about or would use personally, great! That’s extremely rare, so don’t stress about it. My go-to recommendation for starter projects is to just re-make something that already exists. That gives you very specific, achievable goals. Specifically" I recommend re-making “dir.exe” or “ls” (the Linux equivalent), which are command-line programs that list files on your computer.

    If you can work a project like that, even if you never “finish” it, and you get any enjoyment out of it, that’s a good sign. If you find that you dread working on it, or really struggle with it, then that’s a good indicator that maybe programming isn’t for you. It’s a useful skill to have, but you shouldn’t feel bad if it just isn’t your thing. I always like the idea of being a musician, and toon guitar lessons as a kid, but whenever I would sit down to practice, I found I would rather be doing almost anything else. Eventually, it occurred to me that I can love music and musicianship, without being a musician.

    What is really meant by “programming” when people say they like to use linux for it?

    I think it’s just a matter of personal preference among the type of people that are drawn to programming. Linux doesn’t just LET you have a very high level of control over things that happen “under the hood”, it often MAKES you have to deal with some things that Windows or iOS would traditionally keep hidden (to varying degrees, depending on distro). That ends up being appealing to the kind of tinkerer folks who are also attracted to programming.

    I don’t think there’s any inherent reason that Linux is better for programming, except MAYBE that there’s more of a programming ecosystem built around it, because more programmers end up using it. Sort of a self-fulfilling prophesy.

  • x00z@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    21 hours ago

    Like, you go to your computer and start working on…what?

    Most of my work goes into an opensource game.

    what people do especially when starting out.

    Make some apps for yourself. You’ll probably not use them, or even share them, but it’s a good thing to have a vision of what you want to make.

    I just want to learn it to know it.

    Being a good programmer takes ages. And even then you’ll probably only know a handful of languages and focus on specific branches. If you just want to know it, you’ll lose a lot of interest pretty soon because sometimes it takes days to fix something and you really need to be able to push trough those rough patches and that’s hard without a goal. Imagine trying to become good at woodworking without actually making furniture.

    But im not sure how to apply it to anything realistic.

    A lot of stuff already has apps for it. And a lot of things are being worked on. People saw the money and a lot of people jumped on the wagon.

    The most realistic thing one can do with programming is to make something that does exactly what they want. And that can even be something small. Like learning how to write scripts that automate simple tasks. I suggest high level languages such as Python, PHP, C# or Java to get going. And only look at low level languages such as C, C++, or Rust when you actually start to understand it.

  • JTskulk@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    22 hours ago

    I write Python for fun, I’m not a programmer. The more you learn, the more you can do. I’ve written a lot of scripts and tools to help me automate tasks I do frequently. It’s a lot of fun to dream up an idea and then make it real, and then later add random features that pop into my head. Windows sucks.

  • CannedYeet@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    1 day ago

    A lot of the programming that I do for fun is programming challenges like Advent of Code. They’re more like games or puzzles than projects. You don’t have to wrestle with build tools or old libraries or other people’s crappy code or learn complicated frameworks.

    I like the art of programming. I like to find elegant ways to express ideas. I like to learn new paradigms and language features that allow me to think differently about problems. It’s nice to find a way to make the code readable by matching the code to the problem statement.

    Or there’s the challenge of fluent style, where instead of the code reading in the typical programming style with caveman grammar, you go out of your way to make read like English.

  • Aceticon@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    Something as simple as using Shell Scripting to automate tasks (say, rename all files in a directory according to a certain pattern) is programming in Linux and most of these you can even do directly in the shell (i.e. just type a few lines of code on the command line directly, no need to have a file with the program or do any kind of compilation).

    Also it’s stupidly simple to program in certain languages like Perl and Python in Linux mainly because you’re just working in the command line interface and most of what those languages do is that kind of thing (rather than graphical UI stuff), those languages come almost invariably pre-installed in Linux distros, and you can use the same trick as with shell scripting of just starting the interpreter and type the code directly to run it.

    Beyond that, if you’re actually doing stuff like server-side software development, Linux is overwhelmingly dominant in that space and it’s way simpler to, when targetting Linux servers, to just work on your own Linux as developer (user) machine because all the tools for remote access to Unix machines are there nativelly and work seamlessly, plus you can can have the developer machine double as a development environment for server side development (as Linux can still act as a server machine even when you’re running it as a user machine).

  • haui@lemmy.giftedmc.com
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    I just want to learn it to know it

    Acquiring a skill just to have it isnt how it works. Skills are perishable, meaning you will unlearn them just as easy. Of course much experience would take a long time but still.

    I suggest imagining what you could do with programming. What little problems do you face that could be solved by programming?

    You also dont need to write another operaring system or debug “a whole game”. If you decide you want to learn programming (because its fun or because you like to create and fix shit), you can make an app run on your computer or phone that didnt run before. I did exactly that and my programming skills are pretty small. You dont have to know all the algorithms or study it to do useful stuff with it.

    I made a couple text based games, solved some advent of code riddles and so on. Its fun and it helps seeing the world as a canvas instead of a fixed structure that is applied to you.

  • LH0ezVT@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    2 days ago

    I like microcontrollers. It is fun to see code do physical things. Plus, you can learn how simple computers work, which helps get an understanding of regular ones. Combine that with home automation, and you have an infinite time sink.

    Most embedded systems programming software runs nicely on Linux (or sometimes even exclusively). PlatformIO, Arduino IDE, STM Cube, ESP-IDF… Obviously, something like a Raspberry Pi (and its alternatives) runs Linux itself.

    Although, quite often, I find myself saying that since 90% of work and hobbies is either in a browser (including electron) or a shell anyways. Doesn’t really matter how the task bar / dock looks when all you do is run the same 10 programs

  • Rose@slrpnk.net
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    I like to solve everyday problems through programming. My primary way of doing it is just Python on Windows right now, but Linux does make programming languages a bit easier to access. (And most of the stuff I write would easily run on Linux too.)

    Every time I go “damn, this is more complicated/boring than it needs to be and the manual handling is so unnecessary, I wish I could automate this”, I start making a script.

    For example, I’m an amateur photographer, so I have scripts for dealing with photos. One is a photo importer/backup tool, because I didn’t trust the importers in the apps to do it right (Adobe trauma). I’m writing scripts for report purposes. One script I wrote puts all of the photos I have on the map.

  • gerryflap@feddit.nl
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    I started out with games and simulators. I tended just to come up with some game logic and then see what happened when I let it play out with many entities. When I started my computer science degree at uni I tended to write more code that had something to do with recent lecture material. Implementing Distance Vector Routing, messing around with compression, applying reinforcement learning to my own games.

    Now that I have a job it’s a bit harder to stay motivated for all this, but it’s still kinda the same. I just write whatever my brain comes up with.

  • Sunsofold@lemmings.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 days ago

    Sounds like you want a project.

    You could try making a game. Python has pygame. Godot is a bit of a steeper learning step but has a lot of capabilities. I’ve messed around with each for fun.

    Web dev can also be fun, and a very different style of coding. I’ve made things for a loved one who wanted some things for a site they run. Each thing they asked for took me no more than a day but saved them having to hire someone. I also made a little one-file site that I could share with some people as an RPG reference.

    There are also coding games, as in games where you write code as part of the gameplay. These can help in that they give you a goal. Known names include computercraft mod for minecraft, screeps as both mmo and arena battle, Shenzhen I/O and other Zachtronics and zach-like games, The Farmer Was Replaced, etc.

    And of course, you can always just think of something. I’ve written a few scripts to do simple edits to files, like ‘open each file in the folder this is run in and change blahblah to bloobloo and increment the version number’ or batch renaming files. Did one to find duplicate files and list them for organization/deletion.

    I have other things I’ve started but never finished, but I enjoyed working on them, and they weren’t my job, so no worries.

  • altphoto@lemmy.today
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    I programmed a lamp bypass for my old projector do I could then use a different lamp and turn it into a UV projector. Programming is not sophisticated stuff. Its the reason for having a computer. People could write, mail, watch TV, play etc just fine before computers.

  • jabathekek@sopuli.xyz
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    For me it’s:

    Oh shit, that last update borked my computer… wth is postfix? How was it corrupted? Whatever… How do I reinstall it… [look up answer an Ask Ubuntu- Copy/Paste]; okay cool. Wait, losing postfix also broke my graphics driver?! Why? Whatever… I guess I should reinstall it… [look up answer an Ask Ubuntu- Copy/Paste]; okay cool.

    Then I forget everything I just did because Ubuntu rarely breaks and also I think it was just my ssd dying…

  • Supervisor194@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    edit-2
    2 days ago

    So, I make things for myself to replace commercial software that either doesn’t exist or that is becoming (or will become) enshittified like all commercial software.

    I like to cook, for instance. It’s a hobby of mine. Cooking, BBQ, grilling, baking, all of it. So of course, I have recipes and they are important to me. I could spend all my time painstakingly entering all my recipes into recipes dot com or whatever, right? But of course, as soon as I do that, their barely usable app that does almost everything I want (and a hundred things I don’t give a shit about) gets updated in the third update of the week (rolleyes) and they have completely changed the UI and on top of that, they removed a feature that I used daily.

    OR - I could just make my own fucking app. Which I did. It’s awesome, it does everything I need and nothing I don’t. It also doesn’t update every thirty seconds and become less and less usable or require me to completely overhaul my workflow because the programming staff and middle management need to justify their existences.

    I also recently made a wishlist extension for Firefox, because Amazon removed the ability to add non-Amazon items to their wishlist. I have probably a dozen other ideas I’m working on at any given time. None of this is to make money, but just to make my life more convenient and unplug myself from the wider (bullshit) Internet as much as possible.

    • abbotsbury@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 days ago

      Tangential but you might find TiddlyWiki useful, it’s a single file personal wiki that can be edited in any web browser.

  • altkey@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    2 days ago

    Linux lets\makes you interact with a terminal (and just OS tinkering) more, so you become a bit more comfortable with writing simple commands and then code.

    One of the things for basic Python and default libs is sorting your Downloads folder into a more logical filestructure that doesn’t need reshuffling and searching for long. Move pictures into Pictures and sort them accordingly to the year\month you saved them for example. Make the script run once a week. Make it write a log file as it runs.

    I did this one for the sake of it, but then I needed a piece of code to bruteforce the PDF file password protection, so I used a lib to access and resave this file without a password. On every attempt to open it, it inserted another password from either freely availiable databases of simple passes or well-known leaks (rockyou). It worked nice for PDFs I needed to crack to, actually, just print on paper, but also worked when I tested it with combinations of random words and symbols I came up with. I needed a lib to open a pdf, a list of passwords to try (althought, a bit pre-formatted), and a couple of victims to test on.

  • tartarin@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    2 days ago

    You need a Bob Ross programming series. A little C here and more Python there.