To pupils: all binaries can be downloaded http://pan.baidu.com/s/1ntCChyp
After overwriting, maybe need to run chmod +x /path/to/sublime_text. For linux default installation, need to add sudo.
For programmers:
| #!/usr/bin/env bash | |
| read -p 'Document filename (with path): ' DOC_NAME_AND_PATH | |
| read -p 'Image Destination Path (directory): ' DOC_DESTINATION | |
| #Variables | |
| DOC_NAME_AND_EXT=$(basename $DOC_NAME_AND_PATH) | |
| DOC_EXT=${DOC_NAME_AND_EXT##*.} | |
| DOC_NAME=${DOC_NAME_AND_EXT%.*} | |
| PDF_FILENAME="$DOC_NAME.pdf" | |
| PDF_FILENAME_AND_PATH="$DOC_DESTINATION/$DOC_NAME" |
To pupils: all binaries can be downloaded http://pan.baidu.com/s/1ntCChyp
After overwriting, maybe need to run chmod +x /path/to/sublime_text. For linux default installation, need to add sudo.
For programmers:
| #change it to latest version | |
| NPS_VERSION=1.11.33.0; | |
| echo "Changing Directory to $HOME..." | |
| cd $HOME; | |
| echo "Nginx version to install: " && \ | |
| read NGINX_VERSION && \ | |
| echo "Downloading nginx-$NGINX_VERSION..." && \ | |
| wget http://nginx.org/download/nginx-$NGINX_VERSION.tar.gz && \ | |
| echo "Installing Nginx Dependencies..." && \ |
| <html> | |
| <head> | |
| <style> | |
| .item {width:300px; display: inline-block; } | |
| .item .itemtitle {font-weight:bold; font-size:2em;} | |
| .hidden {display:none;} | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Amalgam Comics Characters</h1> |
| worker_processes 4; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { | |
| default_type application/octet-stream; | |
| log_format main '$remote_addr - $remote_user [$time_local] "$request" ' | |
| '$status $body_bytes_sent "$http_referer" ' |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style> | |
| #jquery-component .alert { | |
| display: none; | |
| } |
| var Col = require('react-bootstrap/lib/Col') | |
| var PageHeader = require('react-bootstrap/lib/PageHeader') | |
| var React = require('react') | |
| var Row = require('react-bootstrap/lib/Row') | |
| var {connect} = require('react-redux') | |
| var {reduxForm} = require('redux-form') | |
| var DateInput = require('./DateInput') | |
| var FormField = require('./FormField') | |
| var LoadingButton = require('./LoadingButton') |