Skip to content
View imsmith's full-sized avatar
  • Seattle
  • 10:12 - 8h behind

Highlights

  • Pro

Block or report imsmith

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Programmatically access your Firefox...
    1
    """
    2
    A script to automatically export bookmarks from Firefox's SQLite database.
    3
    4
    There does not seem to be a programmatic way to get Firefox to export its bookmarks in
    5
    the conventional HTML format. However, you can access the bookmark information directly
  2. Install k3s on Alpine Linux
    1
    ```
    2
    $ apk add --no-cache curl
    3
    $ echo "cgroup /sys/fs/cgroup cgroup defaults 0 0" >> /etc/fstab
    4
    5
    $ cat > /etc/cgconfig.conf <<EOF
  3. Makefile for Markdown -> PDF using p...
    1
    # Generate PDFs from the Markdown source files
    2
    #
    3
    # In order to use this makefile, you need some tools:
    4
    # - GNU make
    5
    # - Pandoc
  4. This script will download a cloud im...
    1
    #!/bin/bash
    2
    set -o errexit
    3
    
                  
    4
    clear
    5
    printf "\n*** This script will download a cloud image and create a Proxmox VM template from it. ***\n\n"
  5. A bash script to update a Cloudflare...
    1
    #!/bin/bash
    2
    
                  
    3
    # A bash script to update a Cloudflare DNS A record with the external IP of the source machine
    4
    # Used to provide DDNS service for my home
    5
    # Needs the DNS record pre-creating on Cloudflare
  6. script for use with `nsupdate` to up...
    1
    #!/bin/sh
    2
    #original from http://community.spiceworks.com/topic/262635-linux-does-not-register-on-the-windows-ad-dns
    3
    # reply of Phil6196 Oct 1, 2012 at 12:41 AM (EDT)
    4
    ADDR=`/sbin/ifconfig eth0 | grep 'inet addr' | awk '{print $2}' | sed -e s/.*://`
    5
    HOST=`hostname`