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
| // diffchain by pineapples721 | |
| // Instructions | |
| // 1. Create a CAS program. | |
| // 2. Conenct your calculator to your PC. Launch the Connectivity Kit. | |
| // 3. Paste this in to the new CAS program. | |
| //2fns, 2vars | |
| #cas | |
| diff22(zfn,xfn,yfn):= | |
| begin |
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
| pandoc -f gfm -w jira -o outfile.jira infile.md | |
| # To import converted file into Confluence: | |
| # - Create new page | |
| # - Click on the body of the page, click on the " + \/" dropdown in toolbar ("Insert more content") and select "Markup" | |
| # - Paste the contents into the pop-up window (select "Confluence wiki" as the format) | |
| # - Note: The "Markdown" option in the import pop-up doesn't seem to work for Github flavored markdown (gfm). |
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
| const fs = require("fs"); | |
| const solc = require('solc') | |
| let Web3 = require('web3'); | |
| let web3 = new Web3(); | |
| web3.setProvider(new web3.providers.HttpProvider('http://localhost:8545')); | |
| var input = { | |
| 'strings.sol': fs.readFileSync('strings.sol', 'utf8'), | |
| 'StringLib.sol': fs.readFileSync('StringLib.sol', 'utf8'), |
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
| class Spec { | |
| def classes = [] | |
| def model(args) | |
| { | |
| def clazz = new Clazz().named(args.clazz) | |
| if (args.withAttributes) | |
| { |
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
| [package] | |
| name = "load-library-test" | |
| version = "0.1.0" | |
| authors = ["Henning Ottesen <henning@live.no>"] | |
| [dependencies] | |
| winapi = "0.2" | |
| kernel32-sys = "0.2.2" |
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
| (defun mmin-recoll-to-list (query) | |
| (interactive "sSearch: ") | |
| (let ((results | |
| (split-string | |
| (shell-command-to-string | |
| (concat "recoll -t -b " | |
| query)) | |
| "\n"))) | |
| (mapcar 'file-name-base results))) |
NewerOlder