This is a basic Webpack project template for a web app written in ES6 & LESS.
This assumes you have a directory structure as follows:
package.json
webpack.config.js
src/
| # see rkengler.com for related blog post | |
| # https://www.rkengler.com/how-to-capture-network-traffic-when-scraping-with-selenium-and-python/ | |
| import json | |
| import pprint | |
| from selenium import webdriver | |
| from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
| capabilities = DesiredCapabilities.CHROME |
| BIG iOS URL SCHEME LIST | |
| HAD TO MAKE A DROPBOX FILE BECAUSE THIS LIST WAS TOO LONG TO POST IN THE COMMENTS OR NOT MAKE THE WORKFLOW APP TAKE FOREVER TO READ IT. | |
| ☠JAILBREAK/SYSTEM APPS | |
| -------------------------- | |
| activator:// | |
| itms-apps:// | |
| itms-services:// |
| # Elements | |
| Fundamental building blocks of MIT Technology Review's digital styles. | |
| ## Doctype | |
| {{ organization }} makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects. | |
| ### HTML | |
| ```html | |
| <!DOCTYPE html> | |
| <html lang="en"> |
| #!/bin/bash | |
| # This script automatically sets the version and short version string of | |
| # an Xcode project from the Git repository containing the project. | |
| # | |
| # To use this script in Xcode, add the script's path to a "Run Script" build | |
| # phase for your application target. | |
| set -o errexit | |
| set -o nounset |
| #/bin/sh | |
| # Update: 2014-06-24 | |
| # Author: YoungShook | |
| # compress application. | |
| if [ "${CONFIGURATION}" = "Release" ]; then | |
| # Local Display App Name And Default Icon@2x.png ------------ need developer custom | |
| ICON_NAME="Icon-76@2x.png" |
| /* | |
| * Little example of how to use ```socket-io.client``` and ```request``` from node.js | |
| * to authenticate thru http, and send the cookies during the socket.io handshake. | |
| */ | |
| var io = require('socket.io-client'); | |
| var request = require('request'); | |
| /* | |
| * This is the jar (like a cookie container) we will use always |
| #!/usr/bin/python | |
| # fix-xcode | |
| # Rob Napier <robnapier@gmail.com> | |
| # Script to link in all your old SDKs every time you upgrade Xcode | |
| # Create a directory called /SDKs (or modify source_path). | |
| # Under it, put all the platform directories: | |
| # MacOSX.platform iPhoneOS.platform iPhoneSimulator.platform | |
| # Under those, store the SDKs: |
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |
| // Scraping Made Easy with jQuery and SelectorGadget | |
| // (http://blog.dtrejo.com/scraping-made-easy-with-jquery-and-selectorga) | |
| // by David Trejo | |
| // | |
| // Install node.js and npm: | |
| // http://joyeur.com/2010/12/10/installing-node-and-npm/ | |
| // Then run | |
| // npm install jsdom jquery http-agent | |
| // node numresults.js | |
| // |