Skip to content

Instantly share code, notes, and snippets.

@joshrieken
joshrieken / run_for_all_apps.sh
Created May 17, 2016 00:32
Easily run commands for all umbrella project apps
#!/bin/sh
ESC_SEQ="\x1b["
COL_RESET=$ESC_SEQ"39;49;00m"
COL_GREEN=$ESC_SEQ"32;01m"
for f in apps/*;
do
[ -d $f ] && cd "$f" && echo "$COL_GREEN ======= $f ======= $COL_RESET" && $@
cd - >/dev/null
@joshrieken
joshrieken / dell_precision_5510_korora_24.md
Last active October 3, 2016 15:13
Setting up Korora 24 (Fedora 24) on Dell Precision 5510

Installing Korora

My laptop came with Windows 10 installed. The first major issue I ran into involved the fake-RAID setup. My only drive, a 1 TB PCIe SSD, came configured as RAID-0 in UEFI. I configured it to use AHCI, which required a reinstall of Windows 10.

After reinstalling Windows 10 using the provided DVD, I was able to install Korora via a bootable USB drive.

The install worked as expected, and I was able to boot into both Korora and Windows 10 on demand.

Post-Install

@joshrieken
joshrieken / gist:e1d7124b846f1d6d61fe1a5717205ce1
Last active October 5, 2019 05:05
Dotfiles on Ubuntu on Windows
Getting clipboard working w/ vim:
https://superuser.com/a/1345241
Running an appimage:
https://discourse.appimage.org/t/run-appimage-on-windows/177
Python 3.6 (for deoplete)
https://stackoverflow.com/questions/41712326/how-to-install-python3-6-in-window-ubuntu-bash
Upgrade git