This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}| $find = 'jquery-1\.4\.4' | |
| $replace = 'jquery-1\.5\.1' | |
| $match = '*.cshtml' , '*.vbhtml' | |
| $preview = $true | |
| foreach ($sc in dir -recurse -include $match | where { test-path $_.fullname -pathtype leaf} ) { | |
| select-string -path $sc -pattern $find | |
| if (!$preview) { | |
| (get-content $sc) | foreach-object { $_ -replace $find, $replace } | set-content $sc | |
| } |
| 0x00 0 STOP | |
| 0x01 3 ADD | |
| 0x02 5 MUL | |
| 0x03 3 SUB | |
| 0x04 5 DIV | |
| 0x05 5 SDIV | |
| 0x06 5 MOD | |
| 0x07 5 SMOD | |
| 0x08 8 ADDMOD | |
| 0x09 8 MULMOD |
| #!/usr/bin/env python3 | |
| # Distributed under the MIT software license | |
| import binascii, struct, sys | |
| from PIL import Image | |
| def div_roundup(x,y): | |
| return (x+y-1)//y | |
| f = open(sys.argv[1], 'r') | |
| outfilename = sys.argv[2] |
| // -> Soldity | |
| // ********** | |
| // Your Soldity contract | |
| event Created(bytes32 indexed identifier); | |
| contract MyContract { | |
| function MyContract(bytes32 identifier) { | |
| Created(identifier); | |
| } |
Testing subscript and superscript
Testing subscript subscript level 2
Testing superscript superscript level 2
| using System; | |
| using System.Collections.Generic; | |
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Attributes.Jobs; | |
| namespace ForEachVsAddRange | |
| { | |
| [MemoryDiagnoser] | |
| public class Benchmark | |
| { |
Src Reference: http://bernaerts.dyndns.org/download/ubuntu/install-mozilla-addon Article: http://bernaerts.dyndns.org/linux/74-ubuntu/271-ubuntu-firefox-thunderbird-addon-commandline
sudo apt-get install xvfb
sudo Xvfb :99.0 -ac
export DISPLAY=:99.0