specter

joined 2 years ago
MODERATOR OF
[–] [email protected] -1 points 1 week ago* (last edited 1 week ago)

You're gonna want a powerful laser probably and ain't no stick that big like not even fkn close not even if we tried so that's why would'nt tbqh

[–] [email protected] 5 points 2 weeks ago* (last edited 2 weeks ago)

Real smart idea idk how you're gonna know where the couch goes if you remove the slots.

[–] [email protected] 15 points 3 weeks ago
[–] [email protected] 14 points 9 months ago

I was reading up on Aaron Swartz once before bed while hitting a weed pen and I had somehow convinced myself I was facing felony charges and had to go to court to fight jail time and I lost it... unplugged my computer from the wall and shoved my face in my pillow until I was able to calm down and realize my foolishness before going to sleep.

[–] [email protected] 13 points 9 months ago

Free speech enthusiasts are exercising hatred. Before non-hateful people realize this they sometimes conflate it with the inversion: speaking truth to power. Or sometimes simply "freedom" which isn't perfectly absolute when we live in a society. If you wanna witness hatred then follow the free speech thread.

[–] [email protected] 2 points 10 months ago

oh I do that all the time. tbh just alias flatpack=flatpak and you should be good to go.

[–] [email protected] 1 points 10 months ago

and yet y'all are also gonna keep trying to use Agile too

[–] [email protected] 2 points 10 months ago

ah jeez rick i recycled a meme again rick

[–] [email protected] 2 points 10 months ago

communism is doomed. you just single-handedly doomed it.

[–] [email protected] 7 points 10 months ago

new tilde backdoor?

[–] [email protected] 4 points 1 year ago (2 children)

libertarian socialist

idk about you comrade but I don't read from thelibertariansocialistlibrary.org

https://theanarchistlibrary.org/

[–] [email protected] 28 points 1 year ago (3 children)

Only because CTRL+F had zero results: Krita. Everyone complains about GIMP having a bad name and Krita is actually good!!

15
Neovim 💚 Fennel! (git.minimally.online)
submitted 2 years ago* (last edited 11 months ago) by [email protected] to c/[email protected]
 

cross-posted from: https://board.minimally.online/post/20318

I just recently discovered TIC-80 and then Fennel. I was already liking Lua but now I'm hooked on LISP!! Here's my Neovim config using lazy.nvim, all written in fennel thanks to hotpot

It's not marketed like one of those "template Neovim config repos" but it could be one of those if your heart desired. I based it loosely off kickstart.nvim.

1
Neovim 💚 Fennel! (git.minimally.online)
 

I just recently discovered TIC-80 and then Fennel. I was already liking Lua but now I'm hooked on LISP!! Here's my Neovim config using lazy.nvim, all written in fennel thanks to hotpot

It's not marketed like one of those "template Neovim config repos" but it could be one of those if your heart desired. I based it loosely off kickstart.nvim.

 

cross-posted from: https://board.minimally.online/post/12268

The math behind the game is atan2 which I use to get the angle from a thing to another thing:

function ato(from,to)
  return atan2(
    to.x-from.x,
    to.y-from.y
  )
end

And then when you give that angle to cos for the x axis and sin for the y axis you get (x,y) coords that can be multiplied by the number of pixels you want to "move" in that direction. So this function assumes a table like {x,y,a,s} and returns new a new x,y multiplied by s for "speed"...

function amove(●,s)
  s=s or ●.s
  return ●.x+cos(●.a)*s,
    ●.y+sin(●.a)*s
end

I use both those together like this to move the worms each frame. (This symbol: ∧ looks more like a worm in the Pico-8 font. If you didn't notice I like the emoji for variables 😋)

for ∧ in all(∧s) do
  ∧.a=ato(∧,웃)
  ∧.x,∧.y=amove(∧)
end

The astitue reader may have noticed amove allows one to supply their own s instead of the table's s... this is useful when you want to calculate things along something like a line, I mean the length of a worm. For example if we put everything together then we get this loop that, after a bullet () moves, checks every part of a worm (for ∧t=0,∧.l do where ∧.l is worm length and ∧t is each "tail" pixel) and if they collided deletes both and plays a sound effect. amove is given each ∧t but it's not actually used to move the worm, just to reconstruct it's body for collision detection.

for ∧ in all(∧s) do
    for ∧t=0,∧.l do
      ∧x,∧y=amove(∧,∧t)
      if flr(✽.x)==flr(∧x)
        and flr(✽.y)==flr(∧y)
      then
        del(bullets,✽)
        del(∧s,∧)
      if #∧s==0 then
        sfx(2)
      else
        sfx(1)
      end
    end    
  end
end
1
Solstice School 2023 (solsticeschool.scholar.social)
 

Scholar Social is hosting Solstice School 2023, an informal online conference covering a variety of topics, with presentations occurring between 2023-07-24 and 2023-08-05.

There are a ton of talks and you can download .ics files for one or all of them

 

This has happened to me way too many times. I think it remembers being on an external monitor or something and then you can't get to it with a mouse and also the PowerToys FancyZones shortcuts don't work.

Use Shift+Right Click on the taskbar icon for the window and select "Move". You may also need to fiddle the arrow keys a bit if moving the mouse doesn't immediately snap the window to that location.

"Windows" is an awful window manager as it turns out.

1
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 

iperf3 is installable via scoop and yay. You simply run the server on one computer and point the client at that IP from another computer.

# On one computer
iperf3 --server
# On another computer
iperf3 --client <ip>

You can get your IP address on Linux like this. For Ethernet look under (probably) end0 and for wifi (probably) wlan0.

ip addr

On Windows you can use Get-NetIPAddress.

# For Ethernet
Get-NetIPAddress -InterfaceAlias Ethernet*
# For Wi-Fi
Get-NetIPAddress -InterfaceAlias Wi-Fi

If you're diligent about firewalling then you'll probably need to open up the port (default is 5201)

1
Capturing your screen on Windows (board.minimally.online)
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 

The native Windows Snipping Tool is pretty good. It is bundled with an editor and the built-in key bind Win+Shift+S is easy enough to remember. Unfortunately (maybe because they are working on screen recording?) its been busted for a few weeks now at the time of writing (check out the recent reviews) and I needed a work around.

Turns out that snipaste is way better anyway! For some reason installing it with scoop didn't work for me but getting it from the Microsoft Store did. It's feature packed and quite intuitive. The first customization I made was change the default f1 and f3 copy/paste keybinds to Alt+S and Alt+V 👍

Also for screen recording I poked around ScreenToGif which I think I'll keep around and see if I like...

1
submitted 2 years ago* (last edited 2 years ago) by [email protected] to c/[email protected]
 

I like scripting and I have to use Windows enough that I ended up making this setup guide and scripting crash course. I will not be using PowerShell on Linux or MacOS... but I will admit the param feature is pretty nice.

 

Linux, Android, MacOS, iOS, Windows... which one do you use? Do you like it? Which one is the best? Why?

view more: next ›