Object

joined 2 years ago
[–] Object@sh.itjust.works 3 points 2 hours ago

Facing, but I use handheld one so I can point it anywhere I want. I was surprised this wasn't common in UK even though it's fully compatible.

[–] Object@sh.itjust.works 5 points 1 day ago* (last edited 1 day ago) (2 children)

That's fine as long as you're okay with typing it in every now and then. I would find it tedious to be honest. Past a certain point, additional security is meaningless.

[–] Object@sh.itjust.works 13 points 1 day ago* (last edited 1 day ago) (6 children)

You should not use lockscreen password as your master password. Chances are, your lockscreen password is much simpler than your master password. Reason why you can get away with it is because your mobile devices usually have some form of well-integrated isolated environment that can throttle brute force attacks. Your password managers probably cache your vault offline, which may be vulnerable to brute force attacks unless it utilises TPM in some way. Same goes for FDE. Online vaults probably have some sort of rate limiting so that isn't much of an issue.

One thing I strongly recommend is being realistic with your goal. Current scheme seems a bit too paranoid.

[–] Object@sh.itjust.works 0 points 5 days ago

He did that live too a while ago. I don't know if I can but I might as well as try. My voice hasn't dropped for some reason, so who knows.

[–] Object@sh.itjust.works 0 points 5 days ago (2 children)

I got bored with regular way of learning Japanese so started learning lyrics of some music I like to listen to, and try to sing them.

Chiisana Koi no Uta

I Wanna be a Girl

[–] Object@sh.itjust.works 21 points 1 week ago (2 children)

Chaotic: Break a leg.

Bizarre: When life give you lemons...

[–] Object@sh.itjust.works 19 points 1 week ago* (last edited 1 week ago) (2 children)

You should check out .gitignore templates and .gitignore file in other open source Android apps to see what needs to be published, what doesn't need to be published, and most importantly what you should not publish. You should get a couple of results when you search "gitignore android studio".

[–] Object@sh.itjust.works 51 points 1 week ago (2 children)

Night; Clean bed feels better than clean office chair.

[–] Object@sh.itjust.works 2 points 1 week ago

I find it hard even though I am somewhat used to them since my first language is Korean. Hardest part for me is remembering the character shape and their associated sound. The general concept (kunyomi and onyomi, how they form words) makes sense though.

[–] Object@sh.itjust.works 2 points 1 week ago (1 children)

Sort of, they required those tiny ones, and there were a number of standards IIRC. Most importantly, we've thrown those laser pointers away now. Now I got batteries but not lasers.

[–] Object@sh.itjust.works 16 points 1 week ago (3 children)

I've seen so many of these as a child only to be disappointed that all of the laser pointers are out of battery and I never could find a shop that sells them.

[–] Object@sh.itjust.works 4 points 2 weeks ago* (last edited 2 weeks ago)

I don't quite see how AI assisted searching would be different in terms of privacy from normal search engine from the searcher's perspective. Biggest issue with AI in the context of privacy is that it gets trained on a lot of personal data and can also be used to deanonymise when used against others. The only kind of information you would give away to the third party uniquely in AI search engine (I think) would be your speech pattern if you are having a conversation with it instead of simply typing in keywords. Duck.AI claims to ensure your data is not used to train the AI, but there's no way to verify if the AI provider is holding up that promise. Still it's a good choice since you don't have to log in.

Accuracy is not very relevant in privacy, so it would depend almost solely on what you choose as your provider.

If I were to use one, I would choose whichever you can use without logging in, and gives reasonably accurate information.

1
submitted 3 weeks ago* (last edited 3 weeks ago) by Object@sh.itjust.works to c/hatsunemiku@lemmy.world
 

I've just been to Ilsan comic world event, and holy shit there were SO MANY OF THEM! There was at least one Miku stuff at just about every single stall, and choosing which to buy was really hard. A lot of high quality cosplayers too, and I took photo with them too. I did dress a bit too as Kagamine Len, but I really got to work on makeup. A lot.

One of the stalls was selling her ID card alongside many, many other people 😭 literal identity theft

 
 

Awesome song that got uploaded couple of days ago! It got pretty straightforward topic.

 

I've been playing ARC Raiders, and seeing people playing music into their microphone got me to find a way to do that on Linux. Fortunately, it doesn't take much to set it up, but it took me couple of days to piece that commands together. I wrote a post about it, and I figured people here may find this useful.

TLDR: Bind these scripts to a key

Setup Script

src=alsa_input.usb-Samsung_Samsung_USB_C_Earphones_20160406.1-00.analog-stereo; # Sets the microphone name
pactl load-module module-null-sink sink_name=Combined sink_properties=device.description="Combines-real-mic-with-sound-effects"; # Create a virtual device
pactl load-module module-loopback source=$src sink=Combined; # Make microphone play sound into the virtual device

Toggle Microphone Script

dev=alsa_input.usb-Samsung_Samsung_USB_C_Earphones_20160406.1-00.analog-stereo
vol=$(pactl get-source-volume $dev | grep -o '[0-9]\+%' | head -n1 | tr -d '%')

if [ "$vol" -eq 0 ]; then
    pactl set-source-volume $dev 100%
else
    pactl set-source-volume $dev 0%
fi

Play Sound Script

# Optionally add "pkill paplay" so that sound can never overlap
paplay --device=Combined --volume 30000 <Path to the file you want to play>
# Optionally repeat the same command but without the --device flag so you know what's being played in the microphone

Kill All Sound Being Played

pkill paplay
 
 
 
24
submitted 6 months ago* (last edited 6 months ago) by Object@sh.itjust.works to c/wikipedia@lemmy.world
 

List of papers that were accepted because reviewers didn't see them properly. Yes, the "Get me off your fucking mailing list" is one of them. My favourite besides that is the one that lists the writer's dog as the author.

Author NM said "waouf" when the authors started to doubt (doubts are common in science, don’t let them win you over, believe in yourself and what you do, don’t let anyone distract you from the truth you know).

1
submitted 8 months ago* (last edited 8 months ago) by Object@sh.itjust.works to c/unixporn@lemmy.world
 

It's been a year since I started using NixOS. I feel like I've added enough stuff to my desktop, but every now and then, there's just that one thing I want to automate. My workflow is almost entirely keyboard driven!

My config source code is available, including my servers'. You can find them here.

Yes, my config is almost at 10k lines. Definitely over that if I include my Emacs config. 10k lines

I found this very cool project called wlr-which-key. It allows you to have vim-like bindings outside vim. wlr-which-key

enslaved windows

Music player I am working on. I couldn't find a TUI music player that works with OpenSubsonic. My music player

  • Window manager: niri
  • Top bar: ags, source available here!
  • Cursor: Miku cursor
  • Editor: Nixvim (Neovim configured with Nix)
  • Music player: Feishin (The one I am working on doesn't support Mpris yet)
  • Programs in the screenshot: kitty + bash (terminal), xfreerdp + dockur (Windows in Linux), fnott + KDEConnect (notification in the corner)

Wallpaper: Hatsune Creation Myth

Music at the top: Garakuta Neverland, recently discovered it and I love it!

 
 
 

Obviously, stuffs like buying Bitcoins, making a certain major discovery are off.

Mine would be not slacking in learning Chinese because I never though I would be a weeb. Now I need to re-learn tons of Kanji.

view more: next ›