create ssh file to enable ssh
create wpa_supplicant.conf to automatically connect to wifi.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US
network={
create ssh file to enable ssh
create wpa_supplicant.conf to automatically connect to wifi.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US
network={
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
| import React from "react"; | |
| import ReactDom from "react-dom"; | |
| import AvatarCropper from "./AvatarCropper"; | |
| import $ from "jquery"; | |
| var App = React.createClass({ | |
| getInitialState: function() { | |
| var defaultProfile = document.getElementById('user-dp').getAttribute('profileimage'); | |
| return { | |
| cropperOpen: false, |
| { | |
| "name": "electron-quick-start", | |
| "version": "0.0.1", | |
| "description": "My First Electron Desktop App", | |
| "author": "Rudy Jessop", | |
| "license": "", | |
| "main": "main.js", | |
| "scripts": { | |
| "start": "electron main.js", | |
| "test": "echo \"No unit tests and e2e tests yet\" && exit 1", |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "scotch/box" | |
| config.vm.network "private_network", ip: "192.168.20.20" |
| <?php | |
| // For thumbnails | |
| $file = $request->file('file'); | |
| //Create thubmnail | |
| $thmname = time().$file->getClientOriginalName(); // Thumbnail naming | |
| $thmfilepath = $filesystem->disk('s3')->put('/tn_/'.$thmname, ''); | |
| $image = Image::make($file)->fit(115)->save($thmname); // For Thumbnail image save |