Skip to content

Instantly share code, notes, and snippets.

View tonybenoy's full-sized avatar
🦀

Tony Benoy tonybenoy

🦀
View GitHub Profile
@tonybenoy
tonybenoy / Arch Linux ARM on Crostini.md
Last active February 8, 2023 12:49 — forked from baldrailers/Arch Linux ARM on Crostini.md
Arch Linux ARM on Crostini

Arch Linux ARM on Crostini

Screenshot

I got Arch Linux ARM installed on a Lenovo Chromebook Duet! I mostly used the instructions from the Arch Wiki as reference.

0. Before we begin

@tonybenoy
tonybenoy / .vimrc
Created May 7, 2020 21:27 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" 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()
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 {
}
@tonybenoy
tonybenoy / hardware_token.md
Last active June 8, 2019 19:58 — forked from sandys/hardware_token.md
Registering a hardware token
@tonybenoy
tonybenoy / README-Template.md
Created January 21, 2019 10:26 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@tonybenoy
tonybenoy / docker-help.md
Created December 29, 2018 20:55 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@tonybenoy
tonybenoy / test_layout_cefbrowser.py
Created June 3, 2018 15:16 — forked from mmolero/test_layout_cefbrowser.py
CefBrowser inside of a Qt Layout
import sys
import os
import ctypes
from PySide.QtGui import *
from PySide.QtCore import *
from cefpython3 import cefpython
class CefWidget(QWidget):
browser = None