Skip to content
View imsmith's full-sized avatar
  • Seattle
  • 06:13 (UTC -07:00)

Highlights

  • Pro
Block or Report

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... Programmatically access your Firefox bookmarks
    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 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... Makefile for Markdown -> PDF using pandoc
    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... This script will download a cloud image of many Linux distros and create a Proxmox 6 KVM template from it.
    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... A bash script to update a Cloudflare DNS A record with the external IP of the source machine
    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... script for use with `nsupdate` to update linux client DNS on a DNS server... in this instance, I am targeting a Windows Server DNS server 2003/2008/2012+. I have manually created the PTR and A records once, and granted the Everyone ACE the "Write" permission in the DACL of the PTR and A records.
    1
    #!/bin/sh
    2
    #original from http:https://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/.*:https://`
    5
    HOST=`hostname`