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": 1, | |
"uid": 1113869408211332572, | |
"layout": | |
[ | |
[ | |
[ | |
"KC_TAB", | |
"KC_Q", | |
"KC_W", |
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
<?php | |
$gjp = "your_encoded_gjp_here"; | |
$gjpdecode = str_replace("_", "/", $gjp); | |
$gjpdecode = str_replace("-", "+", $gjpdecode); | |
$gjpdecode = base64_decode($gjpdecode); | |
class XORCipher { | |
public static function cipher($plaintext, $key) { |
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
import plotly as pl | |
from math import * | |
from numpy import * | |
trace = { | |
"x": [], | |
"y": [] | |
} | |
for i in arange(0, 10, .1): |
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
1>C:\Users\Anton\source\repos\connect-4-ai\connect-4-ai\board.cpp(103): message : see reference to class template instantiation 'std::array<std::tuple<int,int>,10>' being compiled | |
1>C:\Users\Anton\source\repos\connect-4-ai\connect-4-ai\board.cpp(103,133): error C2440: 'initializing': cannot convert from 'initializer list' to 'int' | |
1>C:\Users\Anton\source\repos\connect-4-ai\connect-4-ai\board.cpp(103,54): message : The initializer contains too many elements | |
1>C:\Users\Anton\source\repos\connect-4-ai\connect-4-ai\board.cpp(103,62): error C2078: too many initializers |
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
[ | |
Does any opertion with any two numbers | |
Examples: | |
134+55= | |
78-47= | |
13*14= | |
64/8= | |
45%3= | |
6^3= | |
Always remember to put an equal sign on the end |