I hereby claim:
- I am glsee on github.
- I am glsee (https://keybase.io/glsee) on keybase.
- I have a public key ASBQkSct-nO_BUWqS1q4uSCOGU3el8YaenXKuuVTPb-gYAo
To claim this, I am signing this object:
/** | |
* MathQuill \vec | |
*/ | |
body { | |
min-height: 100%; | |
font-size: 100%; | |
} | |
.harpoon { |
/** | |
* MathQuill - \sum | |
*/ | |
p { | |
font-size:300%; | |
} | |
.bigsymbol { | |
position:relative; | |
text-align: center; |
/** | |
* MathQuill - Top Bottom Script | |
*/ | |
body { | |
} | |
.block { | |
display: inline-block; | |
} |
/** | |
* MathQuill \hat | |
*/ | |
body { | |
min-height: 100%; | |
font-size: 100%; | |
} | |
.hat { |
<?php | |
/* Greatest Common Divisor */ | |
function gcd($x, $y) { | |
if ($y === 0) return $x; | |
return abs(gcd($y, $x % $y)); | |
} | |
/* Least Common Multiples */ | |
function lcm($x, $y) { |
// myapp/app/app.php | |
// ... | |
// route definitions | |
$app->mount('/myapp/subscribers', include 'controller/subscriber.php'); | |
// later I tried these: |
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> |
I hereby claim:
To claim this, I am signing this object:
By default, all Jetbrains IDE on Windows uses Windows Command Prompt in its terminal. For Docker Toolbox users, it is probably more intuitive to use the Docker Quickstart Terminal (which is essentially Windows Git bash prompt with initialized with a script from Docker Toolbox.
To do that, follow the instructions below:
"C:\Program Files\Git\bin\bash.exe" --cd="C:\Program Files\Docker Toolbox" --login -i "C:\Program Files\Docker Toolbox\start.sh"
#!/bin/bash | |
# Thanks goes to @pete-otaqui for the initial gist: | |
# https://gist.github.com/pete-otaqui/4188238 | |
# | |
# Original version modified by Marek Suscak | |
# | |
# works with a file called VERSION in the current directory, | |
# the contents of which should be a semantic version number | |
# such as "1.2.3" or even "1.2.3-beta+001.ab" |