Instance | Branch |
---|
This file contains hidden or 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
function solve() { | |
const notesButton = document.querySelector('.game-controls-item.game-controls-pencil'); | |
notesButton.dispatchEvent(new Event('mousedown')); | |
notesButton.dispatchEvent(new Event('mousedown')); | |
const game = JSON.parse(localStorage.getItem('main_game')); | |
const solution = game.solution; | |
const values = game.values.map(value => value.editable); | |
const keyCodes = { '1': 49, '2': 50, '3': 51, '4': 52, '5': 53, '6': 54, '7': 55, '8': 56, '9': 57 }; |
This file contains hidden or 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
build |
This file contains hidden or 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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
opacity: 0.85, | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
This file contains hidden or 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
alias gi="git init" | |
alias gc="git checkout" | |
alias gcb="git checkout -b" | |
alias gb="git branch" | |
alias gs="git status" | |
alias ga="git add" | |
alias gaa="git add ." | |
alias gc="git commit" | |
alias gcm="git commit -m" | |
alias gpl="git pull" |
This file contains hidden or 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
#include <stdio.h> | |
#include <string.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#define RECORD_COUNT 10 | |
struct _Person { | |
char name[22]; | |
char ID[10]; |
This file contains hidden or 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
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": -1, | |
"editor.fontFamily": "Fira Code Medium, SF Mono Light, Office Code Pro D Regular, Operator Mono Light, 'Fira Code', Hack, Menlo, Inconsolata, Consolas, 'Courier New', monospace", | |
"editor.fontWeight": "300", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 19, | |
"editor.tabSize": 2, | |
// Theme Settings | |
"workbench.iconTheme": "material-icon-theme", |
This file contains hidden or 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
unbindall | |
bind "0" "slot10" | |
bind "1" "slot1" | |
bind "2" "slot2" | |
bind "3" "slot3" | |
bind "4" "slot4" | |
bind "5" "slot5" | |
bind "6" "slot6" | |
bind "7" "slot7" | |
bind "8" "slot8" |
This file contains hidden or 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 enigma.console.TextWindow; | |
import enigma.core.Enigma; | |
import enigma.console.Console; | |
import enigma.event.TextMouseEvent; | |
import enigma.event.TextMouseListener; | |
import enigma.console.TextAttributes; | |
import java.awt.Color; | |
import java.awt.event.KeyEvent; |
This file contains hidden or 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
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": -1, | |
"editor.fontFamily": "SF Mono Light, Office Code Pro D Regular, Operator Mono Light, 'Fira Code', Hack, Menlo, Inconsolata, Consolas, 'Courier New', monospace", | |
"editor.fontSize": 19, | |
"editor.tabSize": 2, | |
// Theme Settings | |
"workbench.iconTheme": "material-icon-theme", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"workbench.colorTheme": "An Old Hope", |
NewerOlder