I hereby claim:
- I am andyli on github.
- I am andyli (https://keybase.io/andyli) on keybase.
- I have a public key whose fingerprint is DF01 A922 9726 D0FA 42F7 5706 6DAC 3C44 8773 381A
To claim this, I am signing this object:
suffix="_nogps" | |
for f in "$@" | |
do | |
extension=${f##*.} | |
newfile="${f%.$extension}$suffix.$extension" | |
/usr/local/bin/exiftool -gps:all= -xmp:geotag= "$f" -o "$newfile" | |
done |
const express = require('express'); | |
const Telegraf = require("telegraf"); | |
const MySQLSession = require('telegraf-session-mysql'); | |
const token = process.env.TGBOT_TOKEN; | |
const telegraf = new Telegraf(token); | |
const session = new MySQLSession({ | |
host: process.env.MYSQL_ENDPOINT, | |
user: process.env.MYSQL_USER, | |
password: process.env.MYSQL_PASSWORD, |
I hereby claim:
To claim this, I am signing this object:
@echo off | |
reg add "HKCU\Software\Microsoft\Internet Explorer\Styles" /f | |
reg add "HKCU\Software\Microsoft\Internet Explorer\Styles" /v "MaxScriptStatements" /t REG_DWORD /d 0xFFFFFFFF /f |
I hereby claim:
To claim this, I am signing this object:
Compiling homework.mzn | |
Running homework.mzn | |
A = 3; | |
B = 4; | |
C = 0; | |
D = 9; | |
E = 2; | |
F = 5; | |
G = 8; | |
H = 6; |
@:native("$.prompt") | |
extern class Impromptu { | |
@:selfCall // @:selfCall avoid generation of `new` | |
public function new(msg:Dynamic, ?options:Dynamic):Void; | |
static public function setDefaults(options:Dynamic):Void; | |
static public function open(states:Dynamic, ?options:Dynamic):Impromptu; | |
} | |
class Test { |
#include<iostream> | |
using namespace std; | |
int main(int argc, char** argv) { | |
char c = 'a'; | |
const char * a = &c; | |
// *a = 'b'; // error: read-only variable is not assignable | |
cout << *a << endl; //a | |
c = 'b'; |
Here is a list of open source implementations of command line argument escaping.
<?xml version="1.0" encoding="utf-8"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata> | |
<id>haxe</id> | |
<version>3.1.3</version> | |
<title>Haxe</title> | |
<authors>Haxe Foundation</authors> | |
<licenseUrl>http://haxe.org/foundation/open-source.html</licenseUrl> | |
<projectUrl>http://haxe.org/</projectUrl> | |
<iconUrl>http://haxe.org/img/haxe-logo.svg</iconUrl> |