I hereby claim:
- I am developernotes on github.
- I am developernotes (https://keybase.io/developernotes) on keybase.
- I have a public key ASDbxgC82b6__XQnmV46r9yEeibCm7rIHJjf0w44lqASTgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| require 'utils' | |
| class ListDependencies | |
| def run | |
| @command = <<-EOT | |
| brew list | while read cask; do | |
| printf "\e[1;34m%s ->\e[1;37m" "$cask"; | |
| brew deps $cask | awk '{printf(" %s ", $0)}'; echo ""; | |
| done |
I hereby claim:
To claim this, I am signing this object:
| package net.zetetic.tests; | |
| import android.util.Log; | |
| import net.sqlcipher.Cursor; | |
| import net.sqlcipher.database.SQLiteDatabase; | |
| import net.zetetic.ZeteticApplication; | |
| import java.io.File; | |
| import java.io.IOException; |
| (defun string-replace (old-value new-value source) | |
| "replace old-value with new-value from source" | |
| (with-temp-buffer | |
| (insert source) | |
| (goto-char (point-min)) | |
| (while (search-forward old-value nil t) | |
| (replace-match new-value nil t)) | |
| (buffer-substring (point-min) (point-max)))) | |
| (defun org-export-to-csv (file) |
| using System; | |
| using System.Drawing; | |
| using MonoTouch.Foundation; | |
| using MonoTouch.UIKit; | |
| using System.IO; | |
| using Mono.Data.Sqlcipher; | |
| namespace Demo |
| ["1", "2", "3", "4", "5"].map(function(x, y, z){return parseInt(x)}) |
| <?php | |
| try { | |
| $db = new SQLite3("demo.db"); | |
| $version = $db->query("PRAGMA cipher_version"); | |
| if($version){ | |
| var_dump($version->fetchArray()); | |
| } else { | |
| throw new Exception($db->lastErrorMsg()); | |
| } |
| // Oracle.DataAccess.Client.OracleDataReader | |
| private IntPtr m_pColumnsDataBuffer = IntPtr.Zero; | |
| private object m_disposeSyncObj = new object(); | |
| internal unsafe OracleDataReader(OracleConnection connection, IntPtr[] opsSqlCtx, IntPtr opsDacCtx, IntPtr opsErrCtx, OpoSqlValCtx* pOpoSqlValCtx, OpoDacValCtx* pOpoDacValCtx, MetaData metaData, int resultCount, CommandBehavior commandBehavior, Hashtable safeMapping, string commandText, int freeOpsSqlCtx, bool bFetchSizePropertySet) | |
| { | |
| int num = 0; | |
| this.m_bBOF = true; | |
| this.m_external = true; | |
| this.m_safeMapping = safeMapping; | |
| this.m_bFetchSizePropertySet = bFetchSizePropertySet; |
| #! /usr/bin/env sh | |
| firstTag=$(git tag | sort -r | head -1) | |
| secondTag=$(git tag | sort -r | head -2 | awk '{split($0, tags, "\n")} END {print tags[1]}') | |
| echo "Changes between ${secondTag} and ${firstTag}\n" | |
| git log --pretty=format:' * %s' ${secondTag}..${firstTag} |