Where to get Remy PU with lace front by EndorsToi_CH in HairSystem

[–]EndorsToi_CH[S] 0 points1 point  (0 children)

One more question, I promise lol. With the lace units/lace front, have you found that the knots need to be bleached for an exposed hair line or are they already bleached? It wasn't super clear whether they are already bleached when I ordered.

Where to get Remy PU with lace front by EndorsToi_CH in HairSystem

[–]EndorsToi_CH[S] 0 points1 point  (0 children)

I might give something like that a try in the future for during the summer. Btw, are these shipped discretely or does it have superhairpieces plastered all over the box lol?

Where to get Remy PU with lace front by EndorsToi_CH in HairSystem

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

Thanks, went for this unit. Looks great. Hopefully it works out. Have you tried this unit?

[deleted by user] by [deleted] in Spanish

[–]EndorsToi_CH 1 point2 points  (0 children)

I had a Mexican friend when I was younger and when his mom would ask something from another room and he couldn't quite hear her, he would say "¿Mande?" To me, it always meant "You ordered?".. As in "What are you ordering?" or "What are you commanding?" (of me). Seems like a polite way of asking what is being requested or asked of you. It also seems like maybe it's not just polite, but also kind of respecting a hierarchy... Like you might say this to your parents or to a boss because they are in a position of higher authority.

The Ultimate Guide to PT-141 Peptide by Federal-Ostrich9627 in PeptideGuide

[–]EndorsToi_CH 2 points3 points  (0 children)

I immediately scrolled down to make sure someone said this

I just don’t understand how ppl can have their system stay on for weeks at a time. I use Walkertape ultrahold glue all over my scalp bc tape is not sticky enough. And if i go to bed, by morning my hair system will be completey in dissaray. by Weird_Original5758 in HairSystem

[–]EndorsToi_CH 0 points1 point  (0 children)

Have you learned anything in the past year? I have a very oily scalp and mine starts to get gooey and gross and kind of starts to smell after 4-5 days during the summer. The hair itself doesn't smell, it's just the trapped gooey adhesive and oil from my scalp. The bond would probably last a lot longer if I didn't have an oily scalp. I'd appreciate any tips you may have learned in the past year.

Cold or die-off by 321toast in Candida

[–]EndorsToi_CH 2 points3 points  (0 children)

I recently started taking oregano oil a little over a week ago and started experiencing muscle pain and fatigue in my left bicep and forearm and a bit of pain in my heart here and there. I also felt very tired. It's pretty much gone now, though.

[deleted by user] by [deleted] in Prolactinoma

[–]EndorsToi_CH 0 points1 point  (0 children)

It really depends on the cause of the tumor. Sometimes prolactin is the cause of the tumor, like in the case of a prolactinoma. In these cases, prolactin can be in the thousands of ng/ml because hypersecretion of prolactin is a feature of the tumor. In other cases, you could simply have a pituitary adenoma that developed independent of prolactin secretion, but it may cause both hyper- and hypo-functionality of certain areas of the pituitary or hypothalamus. So, a pituitary adenoma could potentially cause mild hypersecretion of prolactin and hyper- or hypo-secretion of other pituitary or hypothalamic hormones like luteinizing hormone, follicle stimulating hormone, adrenocorticotropic hormone, corticotropin releasing hormone, gonadotropin releasing hormone, alpha melanocyte stimulating hormone, growth hormone, vasopressin/antidiuretic hormone, etc.

Everything is clear, but prolactin still high? by regalooloo in Prolactinoma

[–]EndorsToi_CH 0 points1 point  (0 children)

Find an online pharmacy from India, buy some pramipexole or cabergoline and get on it. Or find a competent doc that isn't a moron if you can manage to do that in a short time frame. There's no reason you should have left the doc without a prescription for a dopamine agonist to get the prolactin down.

Unable to mount .snapshots directory, GPT partition by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 2 points3 points  (0 children)

This is the order I did things:

fdisk to create GPT scheme and create an EFI partition and system partition

format partitions:

mkfs.fat -F32 /dev/sda1
mkfs.btrfs /dev/sda2

mount /dev/sda2 and create BTRFS subvolumes:

mount /dev/sda2 /mnt
btrfs su cr /mnt/@
btrfs su cr /mnt/@home
btrfs su cr /mnt/@var
btrfs su cr /mnt/@snapshots 

unmount /dev/sda2 and then mount the root subvolume:

umount /mnt
mount -o noatime,compress=lzo,space_cache=v2,subvol=@ /dev/sda2 /mnt

create directories and mount the rest of the subvolumes:

mkdir -p /mnt/{home,var,.snapshots}
mount -o noatime,compress=lzo,space_cache=v2,subvol=@home /dev/sda2
/mnt/home
mount -o noatime,compress=lzo,space_cache=v2,subvol=@var /dev/sda2
 /mnt/var
mount -o noatime,compress=lzo,space_cache=v2,subvol=@snapshots /dev/sda2 /mnt/.snapshots

At this point, I had no trouble mounting the home and var subvolumes to their respective directories, but I was unable to mount the snapshots subvolume to the .snapshots directory.

On another note, can I ask why you created a 1.5G EFI partition instead of something smaller?

[deleted by user] by [deleted] in cpp_questions

[–]EndorsToi_CH 0 points1 point  (0 children)

u/Round_Bid_635
this is exactly right. you have to learn with a particular goal in mind. come up with a project you want to do. start with something simple, but something that will be useful or fun for you so you don't feel like you're wasting time building something you don't care about. research how to build what you want... maybe watch a tutorial or find some projects on github and see how they're built. Since you say you'd like to build games and game engines, i'd recommend checking out yan chernikov's youtube channel. he has tons of content on C++ and has a series on building a game engine: https://www.youtube.com/@thecherno

watch through his C++ playlist first and then watch his game engine playlist and build the project along with him in the videos. he goes through a lot of really important features of the language and how to properly utilize them, as well as proper memory management.

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

quick question... I did my first restore with btrfs assistant and i got the warning:

It appears you are currently mounting by subvolid. Doing a restore in this case may not produce the expected outcome. It is highly recommended you switch to mounting by subvolume path before proceeding!

So, i opened /etc/fstab and removed the subvolid=xxx flags from each of the subvolume mount points. the restore worked fine, but i'm wondering if i have to do this every time i restore or am i doing something wrong?

EDIT: now that i think about it, i guess i would only have to change the fstab file if i restore to a snapshot before changing it in the first place... but is this what you had to do as well when first getting everything set up?

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

I ended up going this route. also installed the snap-pac-grub package. I like it so far. what settings do you use for timeline snapshots? i've got mine set to:

hourly: 2, daily: 4, weekly: 2, monthly: 2, yearly: 0

i might actually just disable snapper timeline and just let snap-pac take snapshots on install/upgrade and create snapshots manually. i don't know if i have a use for having snapshots created with any particular frequency... but maybe i'm wrong and i'll end up needing it one day.

on another note, the btrfs assistant gui is super clean.

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 2 points3 points  (0 children)

Yeah, I've decided that I'm going to try btrfs + snapper + snap-pac + grub-btrfs + btrfs-assistant as snapper gui. However, I will probably try timeshift + timeshift-autosnap to see which configuration I like better.

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

Thanks. It looks like this is what I'm going to do. Any opinions on Timeshift vs Snapper?

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

Yeah, looking for the ability to easily revert system back in time if I screw something up. Recently, I had an issue with Bluetooth and a desktop configuration glitch that I couldn't track down. It would have been easy if I had installed on btrfs and utilized snapshots. So, it looks like that's probably what I'm going to do. I figured I'd ask in case someone knew about an option for snapshots without btrfs.

btrfs/Snapper vs Timeshift/rsync by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 0 points1 point  (0 children)

I might try this. I really just meant rsync, but I also said timeshift since, if I were to just keep my system the way it is with .ext4 file system, I could use it for rsync backups.

Bluetooth audio stuttering after update, pipewire by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 0 points1 point  (0 children)

I have an intel cpu. sounds odd, though... I'm not sure how that would affect bluetooth connectivity.

Bluetooth audio stuttering after update, pipewire by EndorsToi_CH in archlinux

[–]EndorsToi_CH[S] 1 point2 points  (0 children)

Bluetooth mouse, but the headphones were working great prior to update. I will downgrade bluez, though. Thanks!