I hereby claim:
- I am wayanjimmy on github.
- I am wayanjimmy (https://keybase.io/wayanjimmy) on keybase.
- I have a public key ASDx_T8HYMbbISEOLAb7ZzWRYpp30e3tMkhW4cH_-8o0mAo
To claim this, I am signing this object:
git config core.filemode false |
public class Base64Encoder { | |
/** | |
* Encode some data and return a String. | |
*/ | |
public final static String encode(byte[] d) { | |
if (d == null) return null; | |
byte data[] = new byte[d.length + 2]; | |
System.arraycopy(d, 0, data, 0, d.length); | |
byte dest[] = new byte[(data.length / 3) * 4]; |
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "0.1.0", | |
"command": "php-cs-fixer", | |
"isShellCommand": true, | |
"args": ["fix", "${file}", "--config", "${workspaceRoot}/.php-cs"], | |
"showOutput": "never" | |
} |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_URI} !^public | |
RewriteRule ^(.*)$ public/$1 [L] | |
</IfModule> |
sudo apt-get update -y | |
sudo apt-get install -y nginx | |
sudo apt-get install -y python-software-properties | |
sudo add-apt-repository -y ppa:ondrej/php | |
sudo apt-get update -y | |
sudo apt-get install -y php7.1 php7.1-fpm php7.1-cli php7.1-common php7.1-mbstring php7.1-gd php7.1-intl php7.1-xml php7.1-mysql php7.1-mcrypt php7.1-zip | |
sudo apt-get install php-curl |
$log.info('imagePath', imagePath); | |
if (imagePath.substring(0, 21) == 'content://com.android') { | |
var photoSplit = imagePath.split('%3A'); | |
var imageURI = | |
'content://media/external/images/media/' + photoSplit[1]; | |
window.FilePath.resolveNativePath(fileEntry.nativeURL, function(response) { | |
upload(response); | |
$log.info(response); | |
}); |
{ | |
"name": "jimboy/testbaligram", | |
"authors": [ | |
{ | |
"name": "Wayan Jimmy", | |
"email": "[email protected]" | |
} | |
], | |
"repositories": [ | |
{ |
I hereby claim:
To claim this, I am signing this object:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="Your SSID Here" | |
proto=RSN | |
key_mgmt=WPA-PSK | |
pairwise=CCMP TKIP | |
group=CCMP TKIP | |
psk="YourPresharedKeyHere" |
FROM ruby:2.5.0-alpine | |
RUN apk update && apk add nodejs build-base libxml2-dev libxslt-dev postgresql postgresql-dev | |
RUN mkdir /app | |
WORKDIR /app | |
COPY Gemfile ./Gemfile | |
COPY Gemfile.lock ./Gemfile.lock | |
RUN bundle install -j 20 |