- For dual boot, disable Bitlocker in Windows
- Update BIOS (and everything else that Dell recommends) via Windows
- Switch from RAID to AHCI in Bios
- Use Windows recovery to fix new disk setup
- Disable Fast Startup in Windows
- Disable secure boot in BIOS (or make sure it's disabled)
- Shrink main partition in Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/athalhammer/wikidata-rank-hdt.git | |
cd wikidata-rank-hdt | |
wget https://danker.s3.amazonaws.com/uberank.hdt.bz2 | |
bunzip2 uberank.hdt.bz2 | |
mv uberank.hdt rank.hdt | |
docker-compose up | |
# call http://localhost:80 | |
##### EXAMPLE QUERY ##### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[global_config] | |
[keybindings] | |
[profiles] | |
[[default]] | |
background_color = "#2c001e" | |
cursor_color = "#aaaaaa" | |
foreground_color = "#f3f3f3" | |
scrollback_infinite = True | |
palette = "#171421:#c01c28:#26a269:#a2734c:#3584e4:#a347ba:#2aa1b3:#d0cfcc:#5e5c64:#f66151:#33d17a:#e9ad0c:#99c1f1:#c061cb:#33c7de:#ffffff" | |
[layouts] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
export LC_ALL=C | |
if [ ! -f "qrank_sorted.tsv" ]; then | |
wget -O - https://qrank.toolforge.org/download/qrank.csv.gz | \ | |
gunzip -c | \ | |
tail -n+2 | \ | |
sed "s/,/\t/" | \ | |
sort -k1,1 \ | |
> qrank_sorted.tsv |