Skip to content

Instantly share code, notes, and snippets.

@ziogaschr
ziogaschr / Installation.md
Created September 30, 2022 18:29 — forked from 1activegeek/Installation.md
Automatically disable Wifi when an Ethernet connection (cable) is plugged in on a Mac

ADAPTED FOR MY OWN USE

Modified for use on M1Max Macbook Pro using a desktop dock for ethernet, and wifi when off dock.

Overview

This is a bash script that will automatically turn your wifi off if you connect your computer to an ethernet connection and turn wifi back on when you unplug your ethernet cable/adapter. If you decide to turn wifi on for whatever reason, it will remember that choice. This was improvised from this mac hint to work with Yosemite, and without hard-coding the adapter names. It's supposed to support growl, but I didn't check that part. I did, however, add OSX notification center support. Feel free to fork and fix any issues you encounter.

Most the credit for these changes go to Dave Holland.

Requirements

@ziogaschr
ziogaschr / core-geth_rpc-discovery_1.11.21-unstable.json
Last active January 13, 2021 13:07
Core-Geth Discovery JSON (1.11.21-unstable)
{
"openrpc": "1.2.6",
"info": {
"title": "Core-Geth RPC API",
"version": "1.11.21-unstable/generated-at:2021-01-13T15:03:27+02:00"
},
"servers": [{ "url": "http://127.0.0.1:8545", "name": "tcp" }],
"methods": [
{
"name": "admin_addPeer",
@ziogaschr
ziogaschr / geth-jsonrpc-transports-shell.sh
Created December 7, 2020 17:22 — forked from meowsbits/geth-jsonrpc-transports-shell.sh
How to hit geth's JSON RPC over different transports.
#!/usr/bin/env bash
# HTTP
curl -X POST $(curl icanhazip.com/v4):8545 --data '{"jsonrpc":"2.0","method":"trace_transaction","params":["0x552280896083bfe801a1f70c84011d1b4195a2c08d2221f80245380775cd6270"],"id":1}' -H "Content-Type: application/json
http --json POST http://localhost:8545 id:=$(date +%s) method='rpc_discover' params:='[]'
# Websocket
echo rpc.discover | websocat -B 650000 -n1 --jsonrpc ws://localhost:8546
# IPC
@ziogaschr
ziogaschr / web3-ebakus-examples.html
Last active March 11, 2020 11:16
Examples on how to use the web3-ebakus
<!DOCTYPE html>
<html>
<head>
<title>Ebakus examples</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0" />
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js@1.2.6/dist/web3.min.js"></script>
<script src="https://unpkg.com/web3-ebakus"></script>
@ziogaschr
ziogaschr / wplarissameetup.php
Created October 23, 2018 11:37
Example plugin for the presentation "WordPress hooks 
and plugin development" at the Larissa WordPress meetup
<?php
/*
* Plugin Name: Plugin Development Larissa Meetup
* Description: Intro to plugin development at WordPress Larissa Meetup
* Plugin URI: https://speakerdeck.com/wpgr/
* Author: Chris Ziogas
* Author URI: https://www.linkedin.com/in/ziogaschr/
* Version: 1.0
*/

Keybase proof

I hereby claim:

  • I am ziogaschr on github.
  • I am ziogaschr (https://keybase.io/ziogaschr) on keybase.
  • I have a public key ASBevRAjabDL1XrTY6PfxNt6pW_fYNbHJNCsilll-eGICAo

To claim this, I am signing this object:

This Gist contains the script and generated output file for an Acer B276HUL.

The pre-generated file below is known to work with:

  • OS X Mavericks
  • OS X Yosemite
  • OS X El Capitan

For El Capitan:

  1. Restart your Mac while holding Command-R: this puts your Mac into Recovery Mode.
@ziogaschr
ziogaschr / jwt_to_json_slack.js
Last active April 10, 2016 11:44
JWT to JSON converter that can be used as a Slack Command at https://putsreq.com
// Parse JWT and respond with a JSON
// Used for slack command
//
// Created by Chris Ziogas on 4/9/2016
//
// For using it copy the following code in https://putsreq.com
// and then register a new Slack command
// polyfill for window.btoa and window.atob
!function(){function t(t){this.message=t}var r="undefined"!=typeof exports?exports:this,e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";t.prototype=new Error,t.prototype.name="InvalidCharacterError",r.btoa||(r.btoa=function(r){for(var o,n,a=String(r),i=0,c=e,d="";a.charAt(0|i)||(c="=",i%1);d+=c.charAt(63&o>>8-i%1*8)){if(n=a.charCodeAt(i+=.75),n>255)throw new t("'btoa' failed: The string to be encoded contains characters outside of the Latin1 range.");o=o<<8|n}return d}),r.atob||(r.atob=function(r){var o=String(r).replace(/=+$/,"");if(o.length%4==1)throw new t("'atob' failed: The string to be decoded is not correctly encoded.");for(var n,a,i=0,c=0,d="";a=o.charAt(c++);~a&&(n=i%4?64*n+a:a,i++%4)?d+=String.fromCharCode(255&n>>(-2*i&6)):0)
@ziogaschr
ziogaschr / rwdurl
Created March 18, 2016 10:58 — forked from zachleat/rwdurl
A command line utility to open a url with a bunch of different screen widths (and organize the windows).
# My Chrome developer profile is in the `Profile 1` directory, make sure to update with yours.
# Best on an ultra wide monitor.
function rwdurl() {
open -n -g -a "Google Chrome" --args --new-window --profile-directory=Profile\ 1 --app="data:text/html,<html><body><script>window.moveTo(0,0);window.resizeTo(320,1395);window.location='$1';</script></body></html>"
open -n -g -a "Google Chrome" --args --new-window --profile-directory=Profile\ 1 --app="data:text/html,<html><body><script>window.moveTo(330,0);window.resizeTo(480,1395);window.location='$1';</script></body></html>"
open -n -g -a "Google Chrome" --args --new-window --profile-directory=Profile\ 1 --app="data:text/html,<html><body><script>window.moveTo(815,0);window.resizeTo(640,1395);window.location='$1';</script></body></html>"
open -n -g -a "Google Chrome" --args --new-window --profile-directory=Profile\ 1 --app="data:text/html,<html><body><script>window.moveTo(1460,0);window.resizeTo(800,1395);window.location='$1';</script></body></html>"
open -n
@ziogaschr
ziogaschr / animation-pseudo-code.markdown
Last active August 29, 2015 14:19
Animations Pseudo-code using keyframes

Animations Pseudo-code using keyframes

// the below will be the images that you send over
var hexagon_shape = svg()
var checkmark_icon = svg()

// the views that are on the screen
var consent_view