Skip to content

Instantly share code, notes, and snippets.

View eddies's full-sized avatar

Edwin Shin eddies

  • TRA
  • in the space-time continuum
View GitHub Profile
@eddies
eddies / trelloCardNumbers.js
Last active January 24, 2018 03:00
Trello Card Numbers bookmarklet
javascript:void (function () {
let o = $('.card-short-id');
o.hasClass('hide') ? o.removeClass('hide').css({
'margin-right': '5px',
color: 'black',
'font-weight': 'bold'
}) : o.addClass('hide');
}());
@eddies
eddies / os-google.xml
Created January 24, 2018 11:50
Google US English OpenSearch Plugin for Firefox
<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>Google US</ShortName>
<Description>Google US</Description>
<InputEncoding>UTF-8</InputEncoding>
<moz:SearchForm>https://www.google.com/ncr</moz:SearchForm>
<Url type="text/html" method="get" template="https://www.google.com/search">
<Param name="gl" value="en"/>
<Param name="hl" value="en"/>
@eddies
eddies / apache-spark.rb
Created January 2, 2019 04:22
Apache Spark 2.2.0 Homebrew
class ApacheSpark < Formula
desc "Engine for large-scale data processing"
homepage "https://spark.apache.org/"
url "https://archive.apache.org/dist/spark/spark-2.2.0/spark-2.2.0-bin-hadoop2.7.tgz"
version "2.2.0"
sha256 "97fd2cc58e08975d9c4e4ffa8d7f8012c0ac2792bcd9945ce2a561cf937aebcc"
head "https://github.com/apache/spark.git"
bottle :unneeded