Skip to content

Instantly share code, notes, and snippets.

View gordyt's full-sized avatar

Gordon Tillman gordyt

  • Rebellion Defense
  • Houston, Texas
View GitHub Profile
@cassiozen
cassiozen / pixelbook-dev-setup.md
Last active October 22, 2023 12:06 — forked from denolfe/pixelbook-linux-setup.md
Notes on setting up Pixelbook for development

Pixelbook Setup

Change your channel

Some of the features mentioned in this document only work on the beta or Dev channel. To change your channel:

  1. chrome://help in a browser window
  2. Click Detailed Build Information
  3. Change Channel
  4. Select Beta (Or Dev, if you're feeling adventurous)
@atma
atma / ufw_rules.sh
Last active February 25, 2018 20:20
Basic rules for securing ubuntu VPS with ufw
# default rule
sudo ufw default deny
# allow ssh
sudo ufw allow 22/tcp
# enable firewall
sudo ufw enable
# allow https?
@virtualstaticvoid
virtualstaticvoid / iptables_rules.sh
Created June 14, 2011 08:58
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
17:51 <acts_as> rustyk: Can I steal some of your time, re:
-search? Can I setup exact phrase searching? I have a few requirements,
but that's one of the biggest. The other is stemming.
17:53 <rustyk> acts_as: yes, riak supports exact phrase
searching, just put a series of terms in double quotes.
It also supports the proximity operator, ie: "brown dog"~10
will find the words brown and dog within 10 words of
17:53 <rustyk> acts_as: stemming isn't currently supported.