12510198

@[email protected]

This profile is from a federated server and may be incomplete. Browse more on the original instance.

Epilator recommendations?

I’ve tried shaving my leg hair a few times now, but it takes an hour or two just to get back with stubble within roughly two to three days at most. Also for some reason my skin just can’t help get irritated, no matter how much I exfoliate, apply lotion afterwards, all that stuff. Because of this, I’ve been looking into...

12510198,

I’m prolly a bit late to the post, but I got this cheaper one off of amazon for 30 bucks.

I’ve never used an epilator (and never knew they existed) until quite recently, but I was pleased with its performance. I have these really visible giant black hairs on my chin, so I tried the machine on it and it clamped down on the hairs and ripped them out of their sockets, I dont know the proper term for it but there was like a little “ball” at the origin of the hair which kinda tells me that it took the whole thing out. I’m assuming its gonna grow back but its gonna take a longer period of time before it becomes visible, because it has more hair it has to grow, I dont know how long its gonna take because it just arrived and all happened yesterday.

However, there are some things that should be noted, there are 4 different attachments, I’ve only used one, but the way they attach and connect to the motor are all the same, plastic gears. Now I aint dissassembled the machine, but if I had to guess, id assume that the geartrain inside that connects the motor to the one gear where the attachments attach are probobly made of plastic too. Now I dont have a expensive one to compare, but id assume the build quality is probobly only slightly better, womens products are made with cheap, unreliable components because they want you to buy more. Also the epilator attachment was a bit magnetic on the sides, I’ve been told this is bad because magnetic metal can rust, however I dont really know too much about it. Now I’m not gonna be running it 24/7, fighting against the gears, or dunking it in water, so I figure its gonna last a good while, but not for decades.

Now something else that should be noted is that it didnt do much for my thinner hairs, it ripped out some but for the most part ignored them, mabye they arent long enough, but if you can see the hair and like flick it around with your fingernail it oughta be able to clamp onto it.

Also something good is that it doesnt require any stupid “app”, any program, it doesnt require wifi, bluetooth, cellular data, a facebook account, a google account, or any stupid nonsense like that. Its just a machine with a switch with 3 states, off, low, and high.

Also something I forgot to talk about is that the ripping the hairs out of its sockets part hurts, I’m guessing you just kinda get used to it, but you might shed a tear or two. If I had to assume, since they all work on the same principal, the expensive models probobly hurt too.

But basically, it works just fine if you dont have much cash or just dont wanna spend a ton of cash on an expensive model.

SOLVED: Is there a way to enable the systemctl switch-root command after initrd.target in systemd version 255? (Arch Linux)

Ive been tryna figure this out all day, Ive read the manual for systemctl and I didnt see anything about switch-root after the initrd target. I did see a –force option, however it didnt do anything. Before the upgrade to version 255, I would use a script or manually mount the partition, and then I would just do like systemctl...

12510198,

I just gave it a try on my system and it worked just like it did before! Ill have to change my scripts to mount to /run/nextroot instead of /mnt, but i am very relieved that it is still possible. I was having trouble with it all morning. Thank you so much for your reply! It is much appreciated!

Custom shell prompt tips and tricks?

Recently I stumbled over an article, about how to customize your shell prompt. What really surprised me, is that it lacked one of the most basic tips I learned nearly 20 years back: Always display a timestamp in the prompt, to be able to check how long a process is running or when it ended. (Don’t need it daily, but every so...

12510198,

A person in this thread already recommended having different colors for different conditions like ssh and running as root, I havent seen anyone mention this specifically but you can determine if the current working directory is writable with something like [ -w “$(pwd)” ] and set the color to red or print a symbol if it doesnt return true.

Also I recommend putting all the code and logic for your shell prompt in a shell function, and using a substitution shell to put it into the PS1 variable like this:


<span style="color:#323232;">__shellprompt ()
</span><span style="color:#323232;">{
</span><span style="color:#323232;">	if [ "$(id -u)" = 0 ]; then
</span><span style="color:#323232;">		local PROMPT_EMBLEM='#'
</span><span style="color:#323232;">	else
</span><span style="color:#323232;">		local PROMPT_EMBLEM='$'
</span><span style="color:#323232;">	fi
</span><span style="color:#323232;">	printf "%s" "$(whoami)@$(uname -n):$(pwd)"
</span><span style="color:#323232;">	printf "n%c " "$PROMPT_EMBLEM"
</span><span style="color:#323232;">}
</span><span style="color:#323232;">PS1='$(__shellprompt)'
</span>

Now this is just a really barebones example, there is a whole lot more you can do like passing in the last exit code through the argv of your shellprompt function like this PS1=‘$(__shellprompt $?)’ and like print it out if its non-zero so you wont have to like echo $? to see if the last command failed, but you should be able to still do this. In my testing, running the shell prompt function in the subsitiution shell didnt effect the $? variable.

In my first comment on another thread about shell prompts, I posted my full shellprompt, it is slightly outdated (I just changed hostname to uname -n), if you cant find it feel free to send a message or just ask, and I will send you the code.

12510198,

Im glad I was able to help!

Something that should be noted when adding colors to your shell prompt function is adding the non printable characters that keep the terminal from buggin out, this caused me a massive headache until I figured it out. When putting it in the PS1 variable directly you will put [ to begin a color sequence and ] to end one, but printf will print a literal [ and ] so instead you will have to use `

[Question] Which shell prompt do you use and why?

Hi. I’ve been using powerlevel10k for a long time, but a few days ago, I decided I wanted to customize it a bit. I opened the .p10k.zsh file, and I was shocked. It’s really massive, with TONS of options. I’ve been digging through for a few hours already, and it’s absolutely amazing how much you can customize it without...

12510198,

I designed this prompt shortly after I switched to Linux, I’ve been using it for a while, it has a few features like putting the exit code if it isn’t 0, changing the hostname color if its detected that you are over ssh, changing the directory color to red if it isn’t writeable, changing the prompt color to red if your euid is 0, and instead of printing I have no name! when your user does not have an entry in the passwd file, it will just print your uid in red. I also have a version that I wrote in C that works the same way with a subsitution shell, but it was harder to sync across all my devices when I made a change, so I rewrote it in posix shell that could be synced with just my .bashrc and work almost anywhere.

I don’t know how to post a screenshot, sorry for the long paragraph, but here is the source code, feel free to share or do whatever with it!


<span style="color:#323232;">#-----PS1-----#
</span><span style="color:#323232;">BOLDRED="
  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • KamenRider
  • TheResearchGuardian
  • KbinCafe
  • Socialism
  • oklahoma
  • SuperSentai
  • feritale
  • All magazines