$ docker
This file contains 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
import sys | |
import os | |
import ctypes | |
from PySide.QtGui import * | |
from PySide.QtCore import * | |
from cefpython3 import cefpython | |
class CefWidget(QWidget): | |
browser = None |
OSX - https://github.com/OpenSC/OpenSC/releases/download/0.16.0/OpenSC-0.16.0.dmg
Fedora - sudo dnf install pcsc-tools opensc ccid
ubuntu - sudo dnf install pcsc-tools opensc libccid
archlinux - sudo pacman -S opensc ccid
You will have to start enable the pcscd.socket in the case of arch linux https://wiki.archlinux.org/index.php/Common_Access_Card
This file contains 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
anycast.slackware.in | |
bind 2a07:1c44:4800::1 | |
log logs/mysite.log | |
tls { | |
dns vultr | |
} | |
proxy / localhost:81 localhost:82 localhost:83 localhost:84 localhost:85 { | |
} |
This file contains 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
" plugins | |
let need_to_install_plugins = 0 | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
"autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
let need_to_install_plugins = 1 | |
endif | |
call plug#begin() |
I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.