This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form novalidate class="md-layout-row md-gutter" @submit.prevent="validateUser"> | |
<md-card class="md-flex-50 md-flex-small-100"> | |
<md-card-header> | |
<div class="md-title">PMI Calculator</div> | |
</md-card-header> | |
<md-card-content> | |
<div class="md-layout-row md-layout-wrap md-gutter"> | |
<div class="md-flex md-flex-small-100"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<form novalidate class="md-layout-row md-gutter" @submit.prevent="validateUser"> | |
<md-card class="md-flex-50 md-flex-small-100"> | |
<md-card-header> | |
<div class="md-title">PMI Calculator</div> | |
</md-card-header> | |
<md-card-content> | |
<div class="md-layout-row md-layout-wrap md-gutter"> | |
<div class="md-flex md-flex-small-100"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var path = require('path') | |
const merge = require('webpack-merge'); | |
const NpmInstallPlugin = require('npm-install-webpack2-plugin'); | |
var webpack = require('webpack') | |
var ManifestPlugin = require('webpack-manifest-plugin') | |
var InlineChunkManifestHtmlWebpackPlugin = require('inline-chunk-manifest-html-webpack-plugin') | |
var WebpackChunkHash = require("webpack-chunk-hash") | |
var HtmlWebpackPlugin = require('html-webpack-plugin') | |
var ExtractTextPlugin = require('extract-text-webpack-plugin') | |
var CleanWebpackPlugin = require('clean-webpack-plugin') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[email protected] /Users/hanxue/DrRed/Quest-electron | |
├─┬ UNMET DEPENDENCY [email protected] | |
│ ├─┬ UNMET DEPENDENCY [email protected] | |
│ │ └── UNMET DEPENDENCY [email protected] | |
│ ├── UNMET DEPENDENCY [email protected] | |
│ ├─┬ UNMET DEPENDENCY [email protected] | |
│ │ └── UNMET DEPENDENCY [email protected] | |
│ ├─┬ UNMET DEPENDENCY [email protected] | |
│ │ └── UNMET DEPENDENCY [email protected] | |
│ ├─┬ UNMET DEPENDENCY [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cpan Alien::SVN | |
Loading internal null logger. Install Log::Log4perl for logging messages | |
Reading '/Users/hanxue/.cpan/Metadata' | |
Database was generated on Tue, 07 Nov 2017 15:54:18 GMT | |
Running install for module 'Alien::SVN' | |
Checksum for /Users/hanxue/.cpan/sources/authors/id/M/MS/MSCHWERN/Alien-SVN-v1.8.11.0.tar.gz ok | |
'YAML' not installed, will not store persistent state | |
---- Unsatisfied dependencies detected during ---- | |
---- MSCHWERN/Alien-SVN-v1.8.11.0.tar.gz ---- | |
Module::Build [build_requires] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm install -g pnpm | |
/usr/local/bin/pnpm -> /usr/local/lib/node_modules/pnpm/lib/bin/pnpm.js | |
/usr/local/bin/pnpx -> /usr/local/lib/node_modules/pnpm/lib/bin/pnpx.js | |
> [email protected] install /usr/local/lib/node_modules/pnpm/node_modules/drivelist | |
> prebuild-install || node-gyp rebuild | |
prebuild-install info begin Prebuild-install version 2.3.0 | |
prebuild-install info looking for local prebuild @ prebuilds/drivelist-v5.2.6-node-v57-darwin-x64.tar.gz | |
prebuild-install info looking for cached prebuild @ /Users/hanxue/.npm/_prebuilds/https-github.com-resin-io-modules-drivelist-releases-download-v5.2.6-drivelist-v5.2.6-node-v57-darwin-x64.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load initial page and store cookies in webmshare_cookies.txt | |
curl 'https://webmshare.com/'--cookie-jar webmshare_cookies.txt -H 'dnt: 1' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: en-US,en;q=0.9' -H 'upgrade-insecure-requests: 1' -H 'user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3250.0 Safari/537.36' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'authority: webmshare.com' --compressed | |
# Upload and Re-use the cookie, with file size and other form fields | |
curl 'https://webmshare.com/upload' -X POST --cebmshare_cookies.txt -H 'origin: https://webmshare.com' -H 'accept-encoding: gzip, deflate, br' -H 'content-type: multipart/form-data; boundary=----WebKitFormBoundaryfCpoSYnkWaeAUHI7' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'cache-control: max-age=0' -H 'authority: webmshare.com' -H 'referer: https://webmshare.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
from flask_restful import Resource, Api, reqparse | |
app = Flask(__name__) | |
api = Api(app) | |
parser = reqparse.RequestParser() | |
class PostAndPatch(Resource): | |
def post(self): |
