SELECT UNIX_TIMESTAMP() * 1e3 + 1;
+--------------------------+
|UNIX_TIMESTAMP() * 1e3 + 1|
+--------------------------+
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
// ©jdehorty | |
// @version=5 | |
indicator('Machine Learning: Lorentzian Classification', 'Lorentzian Classification', true, precision=4, max_labels_count=500) | |
import jdehorty/MLExtensions/2 as ml | |
import jdehorty/KernelFunctions/2 as kernels | |
type Settings |
{ | |
"name": "norik-io-monorepo", | |
"private": true, | |
"version": "0.0.0", | |
"scripts": { | |
"develop:backend": "yarn --cwd backend develop", | |
"develop:frontend": "wait-on http://localhost:1337/admin && yarn --cwd frontend develop -- -p 8080", | |
"develop": "cross-env FORCE_COLOR=1 npm-run-all -l -p develop:*" | |
}, | |
"devDependencies": { |
FROM alpine | |
ADD . /app/ | |
WORKDIR /app |
/ # echo $0 | |
/bin/sh | |
/ # exit |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
) | |
func handler(w http.ResponseWriter, r *http.Request) { |
kubectl get all -A | |
kubectl delete all --all --all-namespaces |
DELIMITER $$ | |
CREATE PROCEDURE LOADGEN(SIZE INT) | |
DETERMINISTIC | |
READS SQL DATA | |
BEGIN | |
DECLARE i INT unsigned DEFAULT 1; | |
WHILE (i <= SIZE) | |
DO | |
INSERT INTO ping(name) VALUES ('ping'); | |
INSERT INTO ping(name) VALUES ('pong'); |
kubectl config set-context dev-342
➜ /etc mysql --help | grep "Default options" -A 1
Default options are read from the following files in the given order: /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf