• 0 Posts
  • 18 Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle
  • What subjects are you comparing it to? At its fundamental level math is a building block same way your native language is a building block to learn other subjects such as history or biology or cooking. I am splitting out language from literature the same way I would split Maths from engineering or physics, theory vs. application.

    I can only speak for English as that’s the only language I have ever really studied but for the average student whose native language is English you simply do not need to study English language to the same level as somebody looking to apply Maths to Biology or Physics to a advanced high school level. You simply do not need to do this to the same level, high school English language simply isn’t as deep a subject. High school literature is potentially, but again, that’s application not theory.

    On top of this, you use English far more often than Maths both in school and out of school. Average kid isnt going to use much Maths day to day other than wondering about basic fractions for sharing a pizza/cake, or simple addition/subtraction for pocket money type stuff. Sure, there will always be exceptions but I am talking about the majority.






  • If you are the person asking the floating window question from the other day as JustAnotherKay spotted, then this is how I set a window to floating in my config;

    for_window [title="www.youtube.com" app_id="firefox"] floating enable, resize set 1280 720 , opacity 1

    What this is doing is selecting any firefox app that has www.youtube.com anywhere in the title and make that floating, with a set size, and remove any opacity (transparency) that might be applied to the window.

    You can add move absolute position 0 0 on the end if you want to set the absolute location for the window.

    You can force a window to a particular workspace by:

    assign [class="discord"] workspace number $ws2

    and that workspace to a particular monitor with:

    workspace $ws2 output DP-1

    If I wanted to do this for all firefox windows I would just remove the title= part from the selection.

    How do you get the titles and other components? Using swaymsg as follows:

    swaymsg -t get_tree

    this will output all your open windows per monitor, for each app you want to manage you are looking for something like:

    #15: con "#tech-talk🖥 | 40% Keyboards - Discord" (xdg_shell, pid: 6260, app_id: "discord")

    from here you its simple to pick up what you can use for a unique select, so app_id:=“discord” in this case.

    If you reload your config file, then reopen the app, it should reflect the changes you made to the config file. Logging on and off in the worst case will restart it.


  • While I prefer IRL clothes shopping, the range of clothes at my nearby stores sucks so badly that online is vastly superior for me. Once you have a list of shops that you trust it’s easy to go shopping.

    This is partly due to my body shape being an athletic build. Buying online from stores that list the actual clothing measurements means I can choose stuff that actually fits me properly. IRL near me just has generic sizing that is either too tight across the shoulders or far too long.

    I spend above average on clothing, your generic brands even online don’t offer actual clothing measurements, but then I would rather have a smaller number of items that are good quality and fit rather than be wasteful with disposable fast fashion thst doesn’t last and doesn’t fit.


  • Long time Kodi user, since it first came out on the original xbox.

    Assuming you are a watch and delete person then for films you really do not need more that a seperate folder than you dump films AND only films into and make sure that the film name is correct AND it includes the accurate year for the film. Vast majority of downloads will already have this in place, I never have to bother to rename or move films about as they just go straight into my download folder that Kodi is looking for my watch and delete films. Older versions of Kodi used to be much more annoying for film scanning requiring proper spacing and so on. However its very very important that only films go into this directory otherwise it will fuck up if you start dumping TV programs into here.

    TV is much more complex if Kodi is doing the metadata scanning as it normally relies on the top level folder name, and a proper season and episode numbering scheme. If you watching TV I would just switch to a managed downloader like sonarr, its a PITA to manually manage weekly show downloads anyway and sonarr will sort everything out for you.


  • I greatly prefer Debian and run it on my home servers, but I want something more cutting edge than Debian for my work PCs but not quite as bleeding edge as Arch that I have to pay more attention to for my daily updates in case it breaks. I kind of end stuck at Ubuntu as I don’t want something obscure and harder for me to fix due to a smaller user base to crib solutions to common problems from.

    I just use it as a relatively up to date, tested and supported base as I run Sway instead of the packaged Gnome, I disable snaps and all the other Ubuntu pro type garbage, even my Firefox is via PPA. Could I roll my own or use something else? Sure, but would I have the same trust over its reliability on the PCs that I use to pay my bills?





  • I still run ubuntu on my main work desktop and will likely do so until I replace it with a new one as I cannot face rebuilding it at this point in time. I like its broad support, its ease of install and use, but its becoming increasingly annoying having to disable all the enforced decisions the maintainers make, such as snap, ubuntu pro ads and so on. My fear is at some point it will not be reversible




  • I use powershell for work as I need the m365 modules for work and its very flexible with decent module availability to plug in all sorts.

    However it absolutely sucks for large data handling, anything over 10k rows is just horrendous, I typically work with a few million rows. You can make it work with using .Net to process it within your script but its something to be aware of. Being able to extend with .Net can be extremely useful.


  • I switched from Pop OS tiling that I had retro bolted onto stock ubuntu to Sway, massive step up and more importantly I get to keep my Ubuntu/Wayland base.

    As with most add on WMs I had a bit of a learning curve sorting out the extra bits and pieces that just come stock as part of Ubuntus Gnome implementation such as a launcher (I use dmenu), a menu bar (swaybar for me), and even a lock screen (swayidle). Even doing things like wallpaper needed more effort.


  • I use powershell by default on windows and I prefer it for scripting any day of the week vs. shell scripts. It’s not the fastest but you can always plug in .net to your scripts to dramatically improve performance. Sure, I could write the script in rust or whatever to make it even faster, but that’s way more work than I need for the lifespan of the script.