OrangeBurrito

@OrangeBurrito

Joined on Jan 7, 2021

  • The original Op-ed https://www.washingtonpost.com/opinions/ive-seen-how-institutions-protect-men-accused-of-abuse-heres-what-we-can-do/2018/12/18/71fd876a-02ed-11e9-b5df-5d3874f1ac36_story.html Evidence (Lists) The complete timeline of AH/JD: https://ohnotheydidnt.livejournal.com/123158880.html Fact Check Masterlist: (https://villainelle.tumblr.com/post/682734099933347840/amber-heard-vs-johnny-depp-fact-check-masterlist) Wiki page for the UK trial): https://en.wikipedia.org/wiki/Depp_v_News_Group_Newspapers_Ltd List of evidence (includes sources from trial): (https://www.believeamberheard.com/evidence-amber-heard-johnny-depp/) Misc. Evidence
     Like  Bookmark
  • Creating a ZSH alias Changing your ZSH theme This changes the color theme of your working directory (may also include an extra newline) selecting internal themes open ZSH's config file nano ~/.zshrc edit this line:
     Like  Bookmark
  • MCASelector read the README at the recieve an error at a previously installed version of java part open the terminal and go into any folder, Documents/Downloads etc download javafx from here (javaFX 16 Mac OS X SDK) run this command (replace paths with wherever your javafx and mcaselector folders are located) java --module-path /Users/orangeburrito/Downloads/javafx-sdk-16/lib --add-modules ALL-MODULE-PATH -jar /Users/orangeburrito/Documents/minecraft/mcaselector/mcaselector-1.16.2.jar for switching your Java SDK version, run sdk use java 16-open
     Like  Bookmark
  • List files in directory ls -la or la as shorthand Copying/cutting files secure copy a single file (secure for ssh) scp file.txt root@165.22.103.122:/mnt/mc_volume secure copy an entire directory (requires recursive -r) scp -r dirname root@165.22.103.122:/mnt/mc_volume
     Like  Bookmark
  • Note: if your font is a .bdf file you can skip installing pcf2bdf! Find your nice looking font (usually a terminal one) Install the latest release of pcf2bdf as a .zip file from here Unzip your pcf2bdf .zip file Open up your terminal and navigate to the folder pcf2bdf is located in (e.g. cd Downloads/pcf2bdf-1.06/) Inside the pcf folder, run make -f Makefile.gcc install This creates a pcf2bdf executable file in that folder. In the terminal, at the folder where your executable is located, run pcf2bdf -o outputtedfontfile.bdf yourfontfile.pcf The outputtedfontfile.bdf file will be created once run
     Like  Bookmark
  • A broken font family is when you download a bunch of font files, double click all of them to install and then to your horror about 5 different windows pop up, displaying each font weight and style as its own separate typeface! Glyphs 3, the mac font editor, can be used to fix this. Firstly install it from its website. If you are broke and/or have no shame, you may seek out a cracked version here. The .dmg password is minorpatch.com. Double-click on the glyphs.license file after installing Glyphs to activate it. After launching it, navigate to the directory containing the accursed font files and right click to open them in Glyphs.
     Like  Bookmark
  • create droplet (attach to existing volume) follow config instructions in volume ssh into droplet mkdir -p /mnt/mc_volume && mount -o discard,defaults,noatime /dev/disk/by-id/scsi-0DO_Volume_mc-volume /mnt/mc_volume && echo '/dev/disk/by-id/scsi-0DO_Volume_mc-volume /mnt/mc_volume ext4 defaults,nofail,discard 0 0' | sudo tee -a /etc/fstab && cd /mnt/mc_volume && ls -la start mc server docker run -d -it \ -p 25565:25565 \
     Like  Bookmark
  • (thanks to Blob on discord for this) Setup droplet as normal (1GB memory, Ubuntu 20.04, SSH keys) SSH into droplet, don't need to mount Download Caddy Dependencies apt-add-repository ppa:ondrej/php echo "deb [trusted=yes] https://apt.fury.io/caddy/ /" \ | sudo tee -a /etc/apt/sources.list.d/caddy-fury.list apt update
     Like  Bookmark