This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Title":"Bad Boys for Life", | |
"Year":"2020", | |
"Rated":"R", | |
"Released":"17 Jan 2020", | |
"Runtime":"124 min", | |
"Genre":"Action, Comedy, Crime, Thriller", | |
"Director":"Adil El Arbi, Bilall Fallah", | |
"Writer":"Chris Bremner (screenplay), Peter Craig (screenplay), Joe Carnahan (screenplay), Peter Craig (story), Joe Carnahan (story), George Gallo (characters)", | |
"Actors":"Will Smith, Martin Lawrence, Vanessa Hudgens, Alexander Ludwig", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exec=env STEAM_FRAME_FORCE_CLOSE=1 /usr/bin/steam %U |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'store.movieActors' doesn't exist | |
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) | |
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) | |
at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) | |
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490) | |
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425) | |
at com.mysql.jdbc.Util.getInstance(Util.java:408) | |
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:944) | |
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3933) | |
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3869) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.sympy.org/latest/modules/matrices/matrices.html#module-sympy.matrices.matrices | |
from sympy.interactive.printing import init_printing | |
init_printing(use_unicode=False, wrap_line=False) | |
from sympy.matrices import Matrix, eye, zeros, ones, diag, GramSchmidt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Fake Click</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name lazy all images | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description make all images lazy load | |
// @author You | |
// @match http://127.0.0.1:8080/lazyimages.html* | |
// ==/UserScript== | |
(function() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get a list of proxies from proxy nova | |
*/ | |
const https = require('https') | |
const cherio = require('cherio') | |
const proxyNova = {} | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Piazza iFrames | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://piazza.com/class/kcepkdy03ke5cu?cid=11 | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// tested with [email protected] and 8.0.0 | |
import { dump } from 'auth0-deploy-cli'; | |
dump({ | |
output_folder: './dump-test', | |
format: 'yaml', | |
config: { | |
AUTH0_DOMAIN: "<YOUR_TENANT_DOMAIN_HERE>", | |
AUTH0_CLIENT_ID: "<MACHINE_TO_MACHINE_CLIENT_ID_HERE>", | |
AUTH0_CLIENT_SECRET: "<MACHINE_TO_MACHINE_CLIENT_SECRET_HERE>", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//@version=5 | |
//Moving averages based on VWMA and Bitmex's leverage liquidation multipliers | |
strategy("Bitmex LLVWMA", overlay=true) | |
// ===Inputs=== | |
int len_inp = input(defval=50, title="Length") | |
int offset_inp = input(defval=0, title="Offset") | |
// ===MA's=== |