This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################################################## | |
| ####### unblock this for openwrt ddns to work | |
| ######################################################## | |
| @@||myden.ddns.net^ | |
| ######################################################## | |
| ####### unblock Twitter URL shorteners | |
| ######################################################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Homebrew Formula for Google Test | |
| # Usage: brew install --HEAD https://gist.githubusercontent.com/ssreekanth/4ffaf013d0311b03f430b0f1f30a3420/raw/1705e778bbad9089dc81b2aae7c7e639d14f78fb/gtest.rb | |
| require 'formula' | |
| class Gtest < Formula | |
| desc "Google Test" | |
| homepage "https://github.com/google/googletest" | |
| head "git://github.com/google/googletest.git", :using => :git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # ----------------------------------------------------------------------------- | |
| # @author Sreekanth S | |
| # ----------------------------------------------------------------------------- | |
| # | |
| function binary_exists() { | |
| which ${1} &> /dev/null | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| const electron = require('electron'); | |
| const {app} = electron; | |
| const {BrowserWindow} = electron; | |
| const {client} = require('electron-connect'); | |
| let mainWindow; | |
| app.on('window-all-closed', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ ~ cd /usr/local | |
| ➜ local git:(master) git status | |
| On branch master | |
| nothing to commit, working directory clean | |
| ➜ local git:(master) git diff origin/master | |
| ➜ local git:(master) brew config | |
| HOMEBREW_VERSION: 0.9.5 |