nycki

joined 1 year ago
[–] nycki 2 points 1 day ago

I bought the deck so I could play modded games on the go, and its been great for that! Lately I've been playing PlateUp with mods like Fry That, a difficult chicken wing themed menu that will test your ability to manage your kitchen pot stack.

[–] nycki 8 points 2 days ago (2 children)

step one, defragment ram to free up space

step two, read the now-unallocated ram directly to the screen

[–] nycki 7 points 1 week ago

That depends; whose side is Artemis Fowl on?

[–] nycki 1 points 1 week ago* (last edited 1 week ago)

I have both, and I prefer the Dualsense for its larger touchpad and less intrusive light bar, but the Dualshock is lighter which is nice for this setup.

The usb-c mod is easy to install, in theory; you just disconnect a single ribbon cable and swap out the entire pcb with the port on it. The harder part of the mod is carving a hole in the plastic, since usb-c ports are wider than micro ports.

I think eXtremeRate now sells a back shell with the usb-c hole already cut!

[–] nycki 10 points 1 week ago (1 children)

didn't wanna risk posting from the work computer

91
mermaid diagrule (lemmy.world)
submitted 1 week ago by nycki to c/[email protected]
 

made this to demonstrate mermaid flowchart generator

 

Homeworlds is a pure strategy game played using a set of colored pyramids. The colors and sizes represent different resources, and the goal is to build an interstellar supply chain to destroy your opponent's home planet.

Because the game is pure strategy, there's a risk of the meta becoming stale someday. Chess and Go are intimidating to new players because you basically have to study centuries of meta before you can do anything new in them.

So I've been thinking about ways to modify Homeworlds to be "imperfect strategy". This is my favorite pitch so far: the Secret Weapon.


When building your homeworld at the start of the game, each player also secretly places a 12mm dice under a large opaque pyramid. I'm using black 'mids here because they're not used for any purpose in game. The number on the hidden die represents one of the four resource types: 1 = yellow (warp), 2 = red (steal), 3 = green (replicate), 4 = blue (transform).

Once per game, without costing an action, you may reveal your Secret Weapon. Immediately take any piece of that color from the bank, and build it at your homeworld.


I haven't playtested this yet, so let me know if you do. I'm hoping it would lead to situations in the early- to mid-game, such as "hmm, I think it's safe to build a large piece, because you can't steal it this turn... unless your secret weapon is red, of course." The bluff and counter-bluff would make it impossible to play perfectly, so the meta would always have room to evolve.

[–] nycki 4 points 1 week ago

I couldn't say. From what I've heard, slightly worse; I think people prefer not having the red-blue-fighting thing in their eyes. The best way to play virtualboy right now is on a hacked 3DS with its glasses-less 3D display.

If you have one you should try it out; its suprisingly easy to hack, or rather, the hack process is surprisingly well-documented!

[–] nycki 9 points 1 week ago* (last edited 1 week ago) (4 children)

if anyone's curious: that's a ps4 controller with a gold buttons mod from eXtremeRate and a usb-c mod from Casual Coders on Tindie, along with some ps4 controller cell phone mount from amazon.

I use a 6-inch usb-c cable to connect the controller to my phone, and it registers with Retroarch Android, which is running a simulation of VirtualBoy Bowling. In the emulator settings you can enable red/blue anaglyph mode, which works with these paper 3D glasses.

92
budget vr rule (lemmy.world)
submitted 1 week ago by nycki to c/[email protected]
 
[–] nycki 3 points 1 week ago

I used to have this problem and I'm not sure exactly how to fix it but I can say that it helps a lot if you consider what potential responses you might get before you speak. Don't just say things because you want to say them, say things because they open up the conversation for interesting responses. This is not the same as "asking a lot of questions" because that's exhausting, as anyone who's dealt with a Sealion knows. Instead, try to say things that are open-ended. If your chat's tone is comedic, try not fixing your typos so that someone else can chain a joke off of them. If the chat's tone is serious, try making an analogy that connects the current topic to a previous one. If the chat's tone is toxic, you can leave.

[–] nycki 3 points 2 weeks ago

Here you go! I plan to add this to my own website eventually but for now:

print template https://bark.lgbt/@nycki/113620910438714463

folding guide https://bark.lgbt/@nycki/113575999324345768

[–] nycki 2 points 2 weeks ago

WAIT HE'S DRIL?!

 
[–] nycki 3 points 2 weeks ago

yep! the ascii standard was originally invented for teletypewriters, and includes four 'blocks' of 32 codes each, for 128 in total, so it only uses seven bits per code.

the first block, hex 00 - 1F, contains control codes for the typewriter. stuff like "newline", "backspace", and "ring bell" all go in here.

The second block has the digits are in order, from hex 30 = '0' all the way to hex 39 = '9',

The uppercase alphabet starts at hex 41 = 'A', and exactly one block later, the lowercase alphabet starts at hex 61 = 'a'. This means their binary codes are 100 0001 and 110 0001, differering only in a single bit! So you can easily convert between upper and lowercase ascii by flipping that bit.

The remaining space in the last three blocks is filled with various punctuation marks. I'm not sure if these are in any particular order.

The final ascii code, 7F, is reserved for "delete", because its binary representation is 111 1111, perfect for "deleting" data on a punch card by punching over it.

109
dinosaur.png rule (lemmy.world)
submitted 3 weeks ago by nycki to c/[email protected]
 
 

I'm just not interested in hearing what bullshit FAANG is up to, I want to talk about linux kernel patches and raspberry pi revisions and maybe hear what people other than grifters are doing with neural networks.

 

I'm currently trying to set up a homebrew cassette tape storage format, but trying to use existing tech where possible. I was excited to see that minimodem already exists for converting an audio stream to a byte stream, and is even available in termux for android, so I could decode cassettes with my phone! However, I'd like some sort of higher-level tool to encode and decode "packets" or "slices" so that I can add error correction. I'm sure this sort of thing must exist for amature radio purposes.

I could write a script that cuts a file into slices, with checksums and redundancy for each slice, and then pads them with null bytes so I can isolate each frame when decoding. What I want is to find out if that's already been done. I've heard of AX.25 packets but I can't find a tool that does that with stdio.

 

This article says that NASA uses 15 digits after the decimal point, which I'm counting as 16 in total, since that's how we count significant digits in scientific notation. If you round pi to 3, that's one significant digit, and if you round it to 1, that's zero digits.

I know that 22/7 is an extremely good approximation for pi, since it's written with 3 digits, but is accurate to almost 4 digits. Another good one is √10, which is accurate to a little over 2 digits.

I've heard that 'field engineers' used to use these approximations to save time when doing math by hand. But what field, exactly? Can anyone give examples of fields that use fewer than 16 digits? In the spirit of something like xkcd: Purity, could you rank different sciences by how many digits of pi they require?

1
submitted 11 months ago* (last edited 11 months ago) by nycki to c/[email protected]
 

Following the advice here I tried recording data to a cassette. I'm using maxwell tapes and a "tomashi" walkman with a mic input. The output is extremely noisy and I have very high data loss. I tried recording music and that's very noisy too. I'm guessing I need a better recording device? Why does it matter though? Or am I missing another step?

 

Following this tutorial, I tried gyro aiming on my Dualsense controller, which has analog triggers and gyroscopic motion controls. I set gyro to act as mouse, activated by a right trigger soft pull. If you use Steam with a controller I highly recommend this; it gives you almost as much control as a mouse and keyboard! Along with a few other custom rebinds, this gives me a console-ish experience on Minecraft Java :)

12
submitted 11 months ago* (last edited 11 months ago) by nycki to c/[email protected]
 

It's been long enough that I'm sure someone besides me has shelled out the $200 for a DS5+, since it's a bluetooth controller with a touchpad and grip paddle buttons. Is it worth it?

Edit: To clarify, I own a Dualsense, but I'm lusting after the Dualsense Edge revision.

 

I have a steam deck dock in the living room, with a dualsense and some joy-cons paired to it. Are there any games similar to Ring Fit that work well on PC/Steam? Do I need a new controller or can I use these?

view more: next ›