this post was submitted on 30 Oct 2024
65 points (100.0% liked)

Linux

1259 readers
83 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Personally, to keep my documents like Inkscape files or LibreOffice documents separate from my code, I add a directory under my home directory called Development. There, I can do git clones to my heart's content

What do you all do?

top 50 comments
sorted by: hot top controversial new old
[–] jokro@feddit.org 28 points 3 weeks ago
[–] mlfh@lemmy.ml 20 points 3 weeks ago (2 children)

~/dev/, with project/org subdirectories

[–] data1701d@startrek.website 13 points 3 weeks ago (1 children)

Admittedly, that irks me slightly just because of the shared name with the devices folder in root, but do what works for you.

[–] mlfh@lemmy.ml 17 points 3 weeks ago* (last edited 3 weeks ago) (2 children)

I actually have my whole home directory like that for that reason haha

bin - executables
dev - development, git projects
doc - documents
etc - symlinks to all the local user configs
med - pictures, music, videos
mnt - usb/sd mountpoints
nfs - nfs mountpoints
smb - smb mountpoints
src - external source code
tmp - desktop
[–] gianni@lemmy.ca 20 points 3 weeks ago

This is pure insanity. Chaos.

load more comments (1 replies)
[–] treadful@lemmy.zip 2 points 3 weeks ago

Same. Short and sweet.

[–] aleats@lemmy.blahaj.zone 13 points 3 weeks ago* (last edited 3 weeks ago)

~/src/

Simple, effective, doesn't make my home folder any more of a mess than I already left it as.

[–] vhstape@lemmy.sdf.org 10 points 3 weeks ago

Like others, I have a folder in my home directory called "Code." Most operating systems encourage you to organize digital files by category (documents, photos, music, videos). Anything that doesn't fit into those categories gets its own new directory. This is especially important for me, as all my folders except Code are synced to NextCloud.

[–] theshatterstone54@feddit.uk 10 points 3 weeks ago
[–] mike_wooskey@lemmy.thewooskeys.com 8 points 3 weeks ago* (last edited 3 weeks ago)

~/git/vendor//

and

~/git////

Examples:

~/git/vendor/EnigmaCurry/d.rymcg.tech
~/git/mike/forgejo/mikew/myproject
~/git/mike/github/johndoe/otherProject
[–] 2kool4idkwhat@lemdro.id 7 points 3 weeks ago* (last edited 3 weeks ago)

~/projects for things I made

~/git for things other people made

[–] mbirth@lemmy.ml 7 points 3 weeks ago (2 children)

Same, but by language, e.g. Development/Python.

[–] Telorand@reddthat.com 5 points 3 weeks ago (1 children)

What if a project uses multiple languages?

[–] Flamekebab@piefed.social 15 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

Symlink each individual file, obviously.

[–] QuazarOmega@lemy.lol 1 points 2 weeks ago

Me waiting for tagging filesystems to become the standard

[–] comfy@lemmy.ml 2 points 3 weeks ago (1 children)

Thinking of the projects I work on, I don't understand the value in categorizing by language, rather than theme (~/Development/Web/, ~/Development/Games/) or just the project folders right there.

[–] mbirth@lemmy.ml 2 points 3 weeks ago

Yeah, everyone has to find their own way of organising, I guess. For me, there are too many different little projects that it would get messy throwing them all in one folder. And they’re so varied that I couldn’t think of one single “theme” or topic for most of them. Nothing I would remember a week later anyways.

[–] foster@lemmy.fosterhangdaan.com 6 points 3 weeks ago (1 children)

I tend to follow this structure:

Projects
├── personal
│   └── project-name
│       ├── code
│       ├── designs
│       └── wiki
└── work
    └── project-name
        ├── code
        ├── designs
        └── wiki
[–] Ephera@lemmy.ml 1 points 3 weeks ago (1 children)

Is "code", "designs" and "wiki" here just some example files in the repo or are those sub-folders, and you only have the repo underneath code?

[–] foster@lemmy.fosterhangdaan.com 2 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

They are the project's subfolders (outside of the Git repo):

  • code contains the source code; version-controlled with Git.
  • wiki contains documentation and also version-controlled.
  • designs contains GIMP, Inkscape or Krita save files.

This structure works for me since software projects involve more things than just the code, and you can add more subfolders according to your liking such as notes, pkgbuild (for Arch Linux), or releases.

[–] Ephera@lemmy.ml 2 points 2 weeks ago (1 children)

Ah, interesting. In my current setup, I dump the auxilliary files into a folder above the repo, but it can certainly make it a bit messy to find the repo in there then...

[–] foster@lemmy.fosterhangdaan.com 2 points 2 weeks ago* (last edited 2 weeks ago)

I maintain a rule that all files above the repo must be inside a folder, with one exception: a README file. Including the code folder, this typically results in no more than 5 folders; the project folder itself is kept organized and uncluttered.

[–] beejjorgensen@lemmy.sdf.org 6 points 3 weeks ago

Most of my code and some non-code is under ~/src, but I have repos scattered all around for other things.

[–] drbluefall@toast.ooo 5 points 3 weeks ago* (last edited 3 weeks ago)

~/Projects/$TOPIC_OR_LANGUAGE/$PROJECT_NAME

ie.

  • ~/Projects/Web/passport.ink for a web dev project
  • ~/Projects/Minecraft/synthetic_ascension for a Minecraft mod
  • ~/Projects/C++/journalpp for a C++ library
[–] ColdWater@lemmy.ca 4 points 2 weeks ago* (last edited 2 weeks ago)

~/git, for projects I cloned from the web because I don't know how to code :(

[–] 0x0@programming.dev 4 points 3 weeks ago

${HOME}/repos

[–] rutrum@lm.paradisus.day 4 points 3 weeks ago* (last edited 3 weeks ago)

~/repo for code I write and ~/src for code I didnt.

[–] samwwwblack@lemm.ee 3 points 3 weeks ago

~/code/git//

Mostly a holdover from when I regularly pulled svn/hg/cvs repos and needed reminding what tool to use for which project.

No idea why I still do it.

[–] boredsquirrel@slrpnk.net 3 points 3 weeks ago
[–] JustEnoughDucks@feddit.nl 3 points 3 weeks ago* (last edited 3 weeks ago)

~/workspace/git

That way I can also keep other stuff in the same "workspace" directory and keep everything else clean

I have a Code, simulations, ECAD, and FreeCAD folder in the workspace folder where projects or 1-offs are stored and when I want to bring them to git, I copy them over, play around in the project folders again, then copy changes over when I am ready to commit.

I could better use branching and checking out in git, but large mechanical assemblies work badly on git.

[–] Eryn6844 3 points 3 weeks ago
[–] muhq@discuss.tchncs.de 3 points 3 weeks ago

~/code for everything I want to change/look at the source code.

~/.local/src for stuff I want to install locally from source.

[–] Blaiz0r@lemmy.ml 2 points 3 weeks ago

I used to use ~/devbut for years now I use ~/Workspace becaue Eclipse made me do it

[–] abrahambelch@programming.dev 2 points 3 weeks ago
[–] leisesprecher@feddit.org 2 points 3 weeks ago

Usually ~/devel/

On my work laptop I have separate subdirs for each project and basically try to mirror the Gitlab group/project structure because some fucktards like to split every project into 20 repos.

[–] EuCaue@lemmy.ml 2 points 3 weeks ago

~/Code for coding/dev stuff and ~/gitclone for things that i random clone for some reason. =D

[–] Ephera@lemmy.ml 2 points 3 weeks ago

For a project called "Potato Peeler", I'll put it into a structure like this:

~/Projects/Tools/Potato-Peeler/potato-peeler/

Tools/ is just a rough category. Other categories are, for example, Games/ and Music/, because I also do gamedev and composing occasionally.

Then the capitalized Potato-Peeler/ folder, that's for me to drop in all kinds of project-related files, which I don't want to check into the repo.

And the lower-case potato-peeler/ folder is the repo then. Seeing other people's structures, maybe I'll rename that folder to repo/, and if I have multiple relevant repos for the Project, then make it repo-something.

I also have a folder like ~/Projects/Tools/zzz/ where I'll move dormant projects. The "zzz" sorts nicely to the bottom of the list.

[–] vrighter@discuss.tchncs.de 2 points 3 weeks ago

~/code/$LANGUAGE/$REPONAME

[–] arality@programming.dev 2 points 3 weeks ago (1 children)
[–] hawdini@feddit.uk 3 points 2 weeks ago

Similar, but I’m not ashamed of having my projects on display, so it’s just ~/projects for me.

[–] mr_satan@monyet.cc 1 points 3 weeks ago

C:\repos or ~/repos

[–] hyacin@lemmy.ml 1 points 2 weeks ago

Personal?

~

My homedir is a HUGE MESS.

Work?

~/src///

i.e. ~/src/github/mirantis/docker (not real I don't imagine, just an example)

~/src/bitbucket/INTERNALPROJECTCODE/coolrepo

[–] Kualk@lemm.ee 1 points 3 weeks ago

~/projs

I like ~/w or ~/p options

[–] drathvedro@lemm.ee 1 points 2 weeks ago

~/Sources for stuff I'm only building from sources and no immediate intention to contribute to

~/Projects for stuff I'm involved in, with a following structure:

Projects
 - Personal
 - - Art
 - - Music
 - - Code
 - - - Ideas
 - - - In progress
 - - - Deployed
 - - - Scripts
 - - - Abandoned
 - [Company name]
 - - [Project name]
 - Interviews
 - - [Company name]

The last part grouping project by companies has worked great for me, especially with freelance and outsource work. Sorting personal projects into types and stages feels like a mistake, as every time I have to navigate it, I can't help but think of limitations of hierarchical file systems, as some of them are multiple types simultaneously, and also moving projects between stages feels dumb.

[–] noddy 1 points 2 weeks ago

In ~/src Mostly because I'm too lazy to type "source".

[–] r00ty@kbin.life 1 points 3 weeks ago

/mnt/shared/Development or E:\Development depending on which operating system is running.

Not in home mainly because I use the same directory in windows and Linux.

[–] QuazarOmega@lemy.lol 1 points 2 weeks ago

Putting one directly under the home directory feels like a psychopathic move, so I stay by XDG and put them under a subdirectory of xdg-documents

load more comments
view more: next ›