wget -c http://cdn.sencha.com/ext/gpl/ext-6.2.0-gpl.zip
wget -c http://cdn.sencha.com/cmd/6.2.1/no-jre/SenchaCmd-6.2.1-linux-amd64.sh.zip
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
"github.com/Azure/go-ntlmssp" | |
) |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
"github.com/Azure/go-ntlmssp" | |
) |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"math/rand" | |
"os" | |
) |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta author="[email protected]"> | |
<meta date="29.11.2017"> | |
<title>babel 4 ie11 only</title> | |
<script type="text/javascript"> |
wget -c http://cdn.sencha.com/ext/gpl/ext-6.2.0-gpl.zip
wget -c http://cdn.sencha.com/cmd/6.2.1/no-jre/SenchaCmd-6.2.1-linux-amd64.sh.zip
// 09.04.2018 | |
// node --experimental-modules cssdownload.mjs | |
// downloads woff files embedded in links like https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons | |
import http from "http"; | |
import readline from "readline"; | |
import fs from "fs"; | |
const rl = readline.createInterface({ input: fs.createReadStream("css.css"), crlfDelay: Infinity }); | |
let idx = 0; |
// | |
// simple RC4 encryption routine with build flags for keyword, 02.05.2018 | |
// | |
package main | |
import ( | |
"crypto/rc4" | |
"fmt" | |
) |
package main | |
import ( | |
"encoding/base64" | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"github.com/Azure/go-ntlmssp" |
let decimal2HHMISS = function (decimalTimeString) { | |
let n = new Date(0, 0); | |
n.setSeconds(+decimalTimeString * 60 * 60); | |
return n.toTimeString().slice(0, 8); | |
}; |
WITH f | |
AS (SELECT object_name, | |
created, | |
ROWNUM rn, | |
COUNT (*) OVER (PARTITION BY NULL) cnt | |
FROM (SELECT object_name, created | |
FROM user_objects | |
WHERE ROWNUM < 17 --some kind of restriction | |
ORDER BY object_name)) | |
SELECT f.*, |