I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.
" 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 | |
let need_to_install_plugins = 1 | |
endif | |
call plug#begin() | |
Plug 'tpope/vim-sensible' |
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 { | |
} |
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
Find out where OpenSC has installed the pkcs11 module.
For OS X with binary installation this is typically in
/Library/OpenSC/lib/. Homebrew users can use export OPENSC_LIBS=$(brew --prefix opensc)/lib
This is a story about how I tried to use Go for scripting. In this story, I’ll discuss the need for a Go script, how we would expect it to behave and the possible implementations; During the discussion I’ll deep dive to scripts, shells, and shebangs. Finally, we’ll discuss solutions that will make Go scripts work.
While python and bash are popular scripting languages, C, C++ and Java are not used for scripts at all, and some languages are somewhere in between.
#!/usr/bin/env python | |
# -*- coding: utf-8 -* | |
""" | |
From a folder containing a set of markdown files, this script: | |
- generate HTML files; | |
- generate RedMine-compliant Textile files; | |
- generate UML diagrams (from PlantUML syntax) and insert the in HTML and Textile files; | |
- send images and HTML files to a server through rsync. | |
""" |