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:
| const { merge } = require('@neutrinojs/compile-loader'); | |
| const { ProvidePlugin } = require('webpack'); | |
| const env = require('@neutrinojs/env'); | |
| module.exports = { | |
| use: [ | |
| [ | |
| '@neutrinojs/react', | |
| { | |
| html: { |
| import React from 'react' | |
| import PropTypes from 'prop-types' | |
| import { request } from '../api' | |
| class Fetch extends React.Component { | |
| static propTypes = { | |
| url: PropTypes.string.isRequired, | |
| render: PropTypes.func.isRequired, | |
| loader: PropTypes.element, |
| const { ProvidePlugin } = require('webpack'); | |
| const path = require('path'); | |
| module.exports = { | |
| use: [ | |
| [ | |
| '@neutrinojs/react', | |
| { | |
| html: { | |
| title: 'sherly-married' |
| version: '3' | |
| services: | |
| db: | |
| image: postgres | |
| web: | |
| build: . | |
| command: bundle exec rails s -p 3000 -b '0.0.0.0' | |
| volumes: | |
| - .:/app | |
| ports: |
| 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 |
| 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" |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "name": "jimboy/testbaligram", | |
| "authors": [ | |
| { | |
| "name": "Wayan Jimmy", | |
| "email": "jimmyeatcrab@gmail.com" | |
| } | |
| ], | |
| "repositories": [ | |
| { |
| $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); | |
| }); |
| 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 |