Install Xcode command line tools, Homebrew, and Git on macOS
Install the following apps on your mac running macOS:
- (standalone) Xcode Command Line Tools
- Homebrew
- Git
Modified from: https://www.moncefbelyamani.com
/** | |
* Arrayadapter (for Android) with text filtering for the use with a TextWatcher. | |
* Note: the objects in the List need a valid toString() method. | |
* @author Tobias Schürg | |
* | |
*/ | |
public class FilteredArrayAdapter extends ArrayAdapter<ImageObject> { |
module Jekyll | |
class RenderImgTag < Liquid::Tag | |
def initialize(tag_name, text, tokens) | |
super | |
@url , *@val= text.split(/ /) | |
if @val.length > 0 | |
@width , *@height = @val[0].split(/x/) | |
end |
/** | |
* Code written by P. Gajland | |
* https://github.com/GaPhil | |
* | |
* IMPORTANT: | |
* This code is for educational and demonstrative purpose only. | |
* If you need to do serious encryption for "production" it is | |
* recommended to investigate more traditional libraries and | |
* gain some specific knowledge on cryptography and security. | |
*/ |
package com.github.manuelpeinado.toolbartest; | |
import android.graphics.Color; | |
import android.graphics.drawable.Drawable; | |
import android.os.Bundle; | |
import android.support.v7.app.ActionBarActivity; | |
import android.support.v7.widget.Toolbar; | |
import android.view.Menu; | |
import android.view.View; |
# Let's try out a table with kramdown class tag | |
| A simple | table | | |
| with multiple | lines| | |
{: .my-class } |
/** | |
* Converts an image to a dataURL | |
* @param {String} src The src of the image | |
* @param {Function} callback | |
* @param {String} outputFormat [outputFormat='image/png'] | |
* @url https://gist.github.com/HaNdTriX/7704632/ | |
* @docs https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement#Methods | |
* @author HaNdTriX | |
* @example | |
* |
package com.company; | |
import javax.crypto.Cipher; | |
import javax.crypto.Mac; | |
import javax.crypto.spec.IvParameterSpec; | |
import javax.crypto.spec.SecretKeySpec; | |
import java.security.MessageDigest; | |
import java.security.SecureRandom; | |
public class Main { |
Install the following apps on your mac running macOS:
Modified from: https://www.moncefbelyamani.com
/** | |
* Changes XML to JSON | |
* Modified version from here: http://davidwalsh.name/convert-xml-json | |
* @param {string} xml XML DOM tree | |
*/ | |
function xmlToJson(xml) { | |
// Create the return object | |
var obj = {}; | |
if (xml.nodeType == 1) { |