- Download source files
- Run
npm installto install all dependencies. - Run
npm run buildto bundleapp.jsintobundle.js
- Open
index.htmlin a browser.
| 最近使用pip3总会timeout,试了试下面的镜像站,速度却非常快 | |
| https://mirror.tuna.tsinghua.edu.cn/help/pypi/ | |
| pip install -i https://pypi.tuna.tsinghua.edu.cn/simple | |
| --- | |
| BasedOnStyle: LLVM | |
| IndentWidth: 4 | |
| --- | |
| Language: Cpp | |
| BreakBeforeBraces: Allman | |
| ColumnLimit: 0 | |
| NamespaceIndentation: All |
| const octokit = require('@octokit/rest')(); | |
| octokit.authenticate({ | |
| type: 'token', | |
| token: 'xxxxxx your token xxxxxxxx' | |
| }); | |
| async function paginate (method) { | |
| let response = await method({ | |
| owner: 'Junch', |
| //------------------------------------------------------------------------------ | |
| // pdbdump.c - dump symbols from .pdb and executable files (public domain). | |
| // - to compile; cl.exe /Ox /Zi pdbdump.c | |
| // - | |
| // - Martin Ridgers, pdbdump 'at' fireproofgravy.co.uk | |
| //------------------------------------------------------------------------------ | |
| #include <stdio.h> | |
| #include <Windows.h> | |
| #include <DbgHelp.h> |
| gtest |
To accomplish this tutorial you already need a previous copy of OSX installed on VMWare Player or Workstation.
First of all you need to acquire a legal copy of OSX El Capitan from the App Store. This tutorial will not cover this part. Sorry :)
Download the latest version of VMWare Unlocker and use the relative binary to unlock it ( based on your Host OS ).
| // Cut off IIS virtual path (base url) from the request url when running via IISNODE | |
| // with URL Rewrite | |
| // | |
| // Add "APPL_MD_PATH" to "promoteServerVars" iisnode attribute in web.config | |
| var iisNodeBaseUrl = function () { | |
| return function (req, res, next) { | |
| var appMdPath = req.headers['x-iisnode-appl_md_path']; | |
| if (appMdPath) { | |
| var rootPos = appMdPath.search("/ROOT"); |
| #!/usr/bin/python | |
| import os, sys | |
| import re | |
| regex='^2015.+(\d\d.+)' | |
| for file in os.listdir("."): | |
| m = re.match(regex, file) | |
| if m is not None: | |
| print m.group(1) |