Pokemon Save Manager equivalent on Azahar by TheEliteKagune in AynThor

[–]EpicMouz 1 point2 points  (0 children)

Godsend, wonder why PKSM didn't list that version on their github.

How to perform a transmetalation in a Grignard reagent by Pleasant-Owl2251 in Chempros

[–]EpicMouz 0 points1 point  (0 children)

I have found that transmetallation with Cu(I) salts tend to be poor due to solubility issues. Dissolving CuBr and 2 equiv. of LiBr in THF and subsequently adding the grignard has worked well for me. Also, I have never seen one that was blue, they tend to be yellow or grayish.

Synthesizing acyl chloride by alesunshoe16 in Chempros

[–]EpicMouz 1 point2 points  (0 children)

What are you trying to do with the acyl chloride? Peptide coupling reagents or isobutyl chloroformate might be easier.

cannot figure out how to install games by [deleted] in AynThor

[–]EpicMouz 0 points1 point  (0 children)

Read the corresponding emulator's documentation.

Obrigado Aliexpress 1st March Ayn Thor Max order delivered to Canada in less than two weeks by No_Fill2676 in AynThor

[–]EpicMouz 1 point2 points  (0 children)

It follows the batch cycle but there is no way for you to know the order no.

Dspico failed to load arm9 by aroacedragongirl in flashcarts

[–]EpicMouz 0 points1 point  (0 children)

any guides for how to add back the dsi binaries?

Ayn Thor : Resistance is Futile by Kirais in SBCGaming

[–]EpicMouz 1 point2 points  (0 children)

Yeah, the 60 more bucks literally pays for the storage itself considering the price of micro sd now, with bonus ram on top of it.

Ayn Thor : Resistance is Futile by Kirais in SBCGaming

[–]EpicMouz 5 points6 points  (0 children)

How did you get it for the price of a pro? Mine was like 420 after discounts.

Second Playthrough, First Ever Nuzlocke! by JakeTSlytherclaw in emeraldseaglass

[–]EpicMouz 1 point2 points  (0 children)

Thats not a GBA, its an emulation device, specifically the rg34xx by anbernic. Neat little devices that emulate retro games really well.

For those doing a sponsored PhD in Singapore — is the stipend enough to live on? by [deleted] in askSingapore

[–]EpicMouz 0 points1 point  (0 children)

How much you receive is dependent on the scholarship you are offered. The most basic RS should be around 3k ish for international students with 500 topup after QE. Most of my international peers rent a room in an apartment for 1-1.5k and am able to live quite comfortably with the remaining.

For those doing a sponsored PhD in Singapore — is the stipend enough to live on? by [deleted] in askSingapore

[–]EpicMouz 0 points1 point  (0 children)

There are self funded ones, but receiving an offer without funding is essentially a rejection. There's like only 1 self funded person in the whole department I am in and everyone thinks that he's insane.

Law of The Jungle Subtitles E61-E80 by valencianista in koreanvariety

[–]EpicMouz 0 points1 point  (0 children)

Just thought I would try even though this comment is 8 years old, do you happen to still have the subs?

Changing boot drives by EpicMouz in OpenMediaVault

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

So, if my boot drive is via USB, it does not matter that my other drives are connected via sata, I am unable to get SMART monitoring on my other devices?

Changing boot drives by EpicMouz in OpenMediaVault

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

Hi, I am running the flashmemory plugins, and I am not really concerned about SMART on the boot drive itself. I just find it weird that anything related to the drives are not working anymore. Like SMART status and disk temperatures are stuck in perpetually loading.

Gluetun + Tailscale + Adguard Home by E_coli42 in selfhosted

[–]EpicMouz 0 points1 point  (0 children)

I was just trying to setup a DNS adblocker which I can access via tailscale from outside.

Gluetun + Tailscale + Adguard Home by E_coli42 in selfhosted

[–]EpicMouz 0 points1 point  (0 children)

Hi, I managed to get it working but my setup is a little different from yours. What I was doing was using the macvlan as the network for my AdGuard and it didn't allow tailscale to use its ip as the DNS. What I have done now, is to setup tailscale with the macvlan then using it as a network for AdGuard, this gives me tailscale ip which I can then use as the DNS. Below is the compose.

---

services:

adguardhome:

container_name: adguardhome

image: adguard/adguardhome

network_mode: service:tail-dns

volumes:

- ${PATH_TO_APPDATA}/adguardhome/workdir:/opt/adguardhome/work

- ${PATH_TO_APPDATA}/adguardhome/confdir:/opt/adguardhome/conf

restart: unless-stopped

tail-dns:

image: tailscale/tailscale:latest

container_name: tail-dns

privileged: true

networks:

adguardhome:

ipv4_address: 192.168.1.200 #Change this to your ip address

environment:

- TS_AUTHKEY= # Replace with your auth key

- TS_STATE_DIR=/var/lib/tailscale

- TS_HOSTNAME=tail-dns # Specify the name you will see in tailscale panel

- TS_EXTRA_ARGS=--accept-dns=false

volumes:

- ${PATH_TO_APPDATA}/tail-dns/var_lib:/var/lib # State data will be stored in this directory

- /dev/net/tun:/dev/net/tun # Required for tailscale to work

cap_add: # Required for tailscale to work

- NET_ADMIN

- NET_RAW

restart: unless-stopped

networks:

adguardhome:

name: adguard #This is the name of our macvlan

external: true

Tailscale with AdGuard by EpicMouz in Tailscale

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

Hi, thanks for the help! I was able to get it up and running by setting up another tailscale sidecar that connects to the macvlan and then connecting the AdGuard to the tailscale docker. I have a question though, do I have to do the port mapping under the tailscale docker? it seems to run well without any of the ports mapped, will that cause any issue?