Skip to content

Instantly share code, notes, and snippets.

View lodestone's full-sized avatar
:octocat:
🤘Grokking Out 🤘

Matthew Petty lodestone

:octocat:
🤘Grokking Out 🤘
  • Kizmeta
  • Kansas City Area, Missouri
  • 14:30 (UTC -12:00)
View GitHub Profile
@lodestone
lodestone / coc_fzf.vim
Created October 9, 2019 02:23 — forked from RobertBuhren/coc_fzf.vim
Display coc.nvim diagnostics using FZF
function! s:format_coc_diagnostic(item) abort
return (has_key(a:item,'file') ? bufname(a:item.file) : '')
\ . '|' . (a:item.lnum ? a:item.lnum : '')
\ . (a:item.col ? ' col ' . a:item.col : '')
\ . '| ' . a:item.severity
\ . ': ' . a:item.message
endfunction
function! s:get_current_diagnostics() abort
" Remove entries not belonging to the current file.
@lodestone
lodestone / searchlink.rb
Created March 26, 2019 06:54 — forked from ttscoff/searchlink.rb
SearchLink creates Markdown links from automatic searches based on special syntax.
@lodestone
lodestone / tumblr-to-middleman.rb
Created April 6, 2018 17:48 — forked from matiaskorhonen/tumblr-to-middleman.rb
Tumblr blog post extraction code. Pretty much tailored for my needs when I migrated from Tumblr to Middleman, but this might still be of use to someone…
#!/usr/bin/env ruby
require "tumblr_client"
require "time"
require "yaml"
require "fileutils"
require "open-uri"
require "nokogiri"
require "loofah"
require "reverse_markdown"
@lodestone
lodestone / simple_gpio_with_javascript.js
Created August 30, 2017 21:42 — forked from chaddotson/simple_gpio_with_javascript.js
This snippet is intended to be the hello world equivalent for working with the raspberry pi gpio with node.js. This simply flashes an LED connected to pin 7 based on the duration.
/*
Requires:
- pi-gpio
- gpio-admin
This snippet is intended to be the hello world equivalent for working
with the raspberry pi gpio with node.js. This simply flashes an LED
connected to pin 7 based on the duration.
*/
@lodestone
lodestone / get_title_and_url.applescript
Created August 24, 2017 00:52 — forked from vitorgalvao/Get Title and URL.applescript
AppleScript and JavaScript for Automation to get frontmost tab’s url and title of various browsers.
-- AppleScript --
-- This example is meant as a simple starting point to show how to get the information in the simplest available way.
-- Keep in mind that when asking for a `return` after another, only the first one will be output.
-- This method is as good as its JXA counterpart.
-- Google Chrome
tell application "Google Chrome" to return title of active tab of front window
tell application "Google Chrome" to return URL of active tab of front window
-- Google Chrome Canary
@lodestone
lodestone / karabiner.json
Created June 14, 2017 16:52 — forked from ttscoff/karabiner.json
Karabiner Elements hyper key with escape
// This requires 0.91.3 or higher, check for beta updates
// copy below into ~/.config/karabiner/karabiner.json right below "simple_modifications"
"complex_modifications": {
"rules": [
{
"manipulators": [
{
"description": "Change caps_lock to command+control+option+shift. Escape if no other key used.",
"from": {
@lodestone
lodestone / README.md
Created May 5, 2017 06:29 — forked from simurai/README.md
Atom for minimalists

For minimalist ❤️ ers

minimalist

Just you, your code and nothing else.... :meditatingbuddha:

@lodestone
lodestone / Rakefile.rb
Created April 10, 2017 22:06 — forked from mojavelinux/ Rakefile.rb
Rake build tasks that use Asciidoctor APIs to produce common output formats for a book (or other type of publication) written in AsciiDoc.
=begin
To use this build script, first install the bundler gem:
$ gem install bundler
Then use the `bundle` command to install the dependencies into the project:
$ rm -rf Gemfile.lock .bundle
bundle config --local git.allow_insecure true
bundle config --local build.nokogiri --use-system-libraries
@lodestone
lodestone / colortrans.py
Created January 11, 2017 14:49 — forked from MicahElliott/colortrans.py
Convert values between RGB hex codes and xterm-256 color codes.
#! /usr/bin/env python
""" Convert values between RGB hex codes and xterm-256 color codes.
Nice long listing of all 256 colors and their codes. Useful for
developing console color themes, or even script output schemes.
Resources:
* http://en.wikipedia.org/wiki/8-bit_color
* http://en.wikipedia.org/wiki/ANSI_escape_code
@lodestone
lodestone / capybara cheat sheet
Created September 1, 2016 17:56 — forked from zhengjia/capybara cheat sheet
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')