Skip to content

Instantly share code, notes, and snippets.

+ test -d autom4te.cache
+ aclocal -I config
+ autoheader
+ autoconf
+ automake --add-missing --copy
configure.ac:31: installing 'config/compile'
configure.ac:30: installing 'config/config.guess'
configure.ac:30: installing 'config/config.sub'
configure.ac:29: installing 'config/install-sh'
configure.ac:29: installing 'config/missing'
#!/usr/bin/env bash
# Made by erikano for use on FreeBSD 10.1
#
# This script assumes that a previous backup exists
# with the expected file name format.
#
# You need to change some stuff if you want to use this.
#
# * Script is using hard-coded directory names and such.
#!/usr/bin/env bash
curl "$1" 2>/dev/null \
| xmlstarlet fo -H --omit-decl 2>/dev/null \
| xmlstarlet sel -H -t -v "//*[@class='digital-product ']/@data-product-id" 2>/dev/null
echo
@yarwelp
yarwelp / usable_win7.md
Last active January 5, 2016 15:05
Usable environment on Windows 7
@yarwelp
yarwelp / internet_radio.md
Last active September 2, 2015 14:58
Internet Radio
@yarwelp
yarwelp / HAR.md
Last active January 7, 2016 00:25
Personal Web Archive

Personal Web Archive

Document ID: d4e40efe-ffbe-47ec-b9ce-305d201db499

Screenshot utility with GUI: Shutter. Ubuntu: apt-get install shutter.

Firefox

  1. New Private Window (Ctrl+Shift+P)
  2. Developer -> Network (Ctrl+Shift+Q)
@yarwelp
yarwelp / 00_INDEX.md
Last active January 30, 2023 11:34
Running FreeBSD on the Raspberry Pi Model B

Copyright (c) 2016 Erik Nordstrøm [email protected]

Redistribution and use in source (GitHub Flavored Markdown) and 'compiled'

forms (HTML, PDF and so forth) with or without modification, are permitted

provided that the following conditions are met:

1. Redistributions of source code (GFM) must retain the above copyright

notice, this list of conditions and the following disclaimer as the first

@yarwelp
yarwelp / bookmarks
Created January 6, 2016 04:03 — forked from anarcat/bookmarks
<!DOCTYPE NETSCAPE-Bookmark-file-1>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8" /><!-- This is an automatically generated file. -->
<TITLE>Bookmarks</TITLE>
<H1 LAST_MODIFIED="1396239625">Bookmarks for anarcat from SemanticScuttle</H1>
<DL>
<DT><A HREF="https://pond.imperialviolet.org" description="For secure, synchronous communication we have OTR and, when run over Tor, this is pretty good. But while we have secure asynchronous messaging in the form of PGP email, it's not forward secure and it gratuitously leaks traffic information. While a desire for forward secure PGP is hardly new, it still hasn't materialised in a widely usable manner.
Additionally, email is used predominately for insecure communications (mailing lists, etc) and is useful because it allows previously unconnected people to communicate as long as a (public) email address is known to one party. But the flip side to this is that volume and spam are driving people to use centralised email services. These provid
@yarwelp
yarwelp / NOTES.md
Last active January 8, 2016 02:14
Custom build and/or update the Linux kernel of Ubuntu 14.04 on the ODROID-XU3.
sudo apt-get install build-essential libqt4-dev libncurses5-dev git
git clone --depth 1 [email protected]:en90/odroid-xu3-linux.git
cd odroid-xu3-linux
#vim arch/arm/configs/odroidxu3_defconfig # "Search for GOVERNOR, I'm sure you'll find the CPU GOVERNORS.
#                                         #  Enable what ever you want (I have enabled all)"
make odroidxu3_defconfig
#make menuconfig
make -j8
sudo cp arch/arm/boot/zImage \
@yarwelp
yarwelp / zero.md
Created January 8, 2016 19:36
Zero out a 32 GB SD card with progress
pv -s 32g /dev/zero | sudo dd of=/dev/xxx bs=64M