General love of all things linux and the choice it provides. I prefer to hang my hat in gentoo with e16 but do like to keep up with other stuff.

  • 0 Posts
  • 46 Comments
Joined 2 years ago
cake
Cake day: February 6th, 2024

help-circle



  • @asdasd201 The sad reality is that you will likely have no choice but to use AutoCAD since that’s what your instructor wants you to use. Even if you are able to use something free/open, there is always a chance that something in the file will render incorrectly when loaded into AutoCAD.

    The best thing (I think) you could do is do the assignment in both #AutoCAD, and #CAD software of your choosing be that #FreeCAD, #QCAD, #blender, #LibreCAD, or something else with which I’m unfamiliar. After class, speak with your instructor and teach them that these things can be done using #FOSS solutions as well, could be they don’t even know. Worst that happens is you’ll have taught yourself how to do the same thing in different software. Everything that was taught (that I can recall) in the #drafting classes I took 30 years ago can be done in any of the softwares I mentioned, but I’m sure things are a bit different these days.

    It’s quite irresponsible of educational institutions to push students into specific software, versus teaching concepts which can be translated across multiple. Teaching students only about expensive licenced software (regardless of providing free student licences) over the concepts used to accomplish the task, promotes ignorance over education, and encourages software pirating.







  • @Twakyr I’ve been a hardcore gentoo user/fan for 20+ years, I thought I’d never be able to use anything else till I started playing with Nix this year. The granular configurability of each individual package has yet been unmatched for me in any other distro till Nix. For #gentoo though, I’d highly recommend taking great care in tailoring your /etc/portage/make.conf, setup /etc/portage/repos.conf/gentoo.conf with sync-type = git, and use /etc/portage/package.{use,mask,unmask,accept_keywords} as directories for individual packages. I tend to keep a /etc/portage/package.mask/failed file for upgrade blockages fer me to unfuck after a emerge -avuDUN @world succeeds.










  • @brownmustardminion I think you’d be fine still usin swappy, just use it in a way that does what you need. I use maim piped to xclip as below, then I tie each of those cases to [PrScr] with different modkeys.

    case "${1}" in
        area)     maim --hidecursor -s |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
        ;;
        savew)    maim --hidecursor -i $(xdotool getactivewindow) |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
        ;;
        savef)    maim --hidecursor |tee $HOME/Pictures/Screenshots/$(date +%y%m%d-%H%M%S).png |xclip -selection clipboard -t image/png
        ;;
    esac