I hereby claim:
- I am smartclash on github.
- I am inscrompt (https://keybase.io/inscrompt) on keybase.
- I have a public key ASAJ9vxI61yzRz6mCEZ24S2-Lc823OraS2neXYCEGncZ8go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "database/sql" | |
| "fmt" | |
| "net" | |
| "os" | |
| "github.com/go-sql-driver/mysql" | |
| "golang.org/x/crypto/ssh" |
| { | |
| "editor.fontFamily": "'Jetbrains Mono', monospace", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 35, | |
| "editor.minimap.enabled": false, | |
| "terminal.integrated.fontSize": 15, | |
| "terminal.integrated.cursorStyle": "line", | |
| "terminal.integrated.lineHeight": 1.3, | |
| "workbench.startupEditor": "welcomePage", |
| #include <stdio.h> | |
| int a[2][2] = {{0, 0}, {0, 0}}, b[2][2] = {{0, 0}, {0, 0}}, input; | |
| int res[2][2] = {{0, 0}, {0, 0}}, i, j, k; | |
| void printResult() { | |
| printf("\nThe result is\n"); | |
| for (i = 0; i < 2; i++) { |
| # Compute the GCD of two numbers | |
| def the_hcf(x, y): | |
| while(y): | |
| x, y = y, x % y | |
| return x | |
| hcf = the_hcf(300, 400) | |
| print("The HCF is", hcf) | |
| # ------------------------------------ |
| // 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: { | |
| materialBox: { | |
| scheme: 'material-darker', | |
| autoHideTitle: true, | |
| }, |
| /* =================================================================== | |
| * | |
| * Dazzle v1.0 Base Stylesheet | |
| * 04-27-2017 | |
| * ------------------------------------------------------------------ | |
| * | |
| * TOC: | |
| * 01. reset | |
| * 02. basic/base setup styles | |
| * 03. grid |
| { | |
| "explorer.openEditors.visible": 0, | |
| "workbench.activityBar.visible": false, | |
| "workbench.statusBar.visible": false, | |
| "editor.lineHeight": 35, | |
| "editor.fontSize": 18, | |
| "editor.minimap.enabled": false, | |
| "window.menuBarVisibility": "toggle", | |
| "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "editor.fontLigatures": true, |
| public class HelloWorld { | |
| public static void main(String[] args) { | |
| System.out.println("Hello World"); | |
| } | |
| } |
| <?php | |
| class Database extends CI_Model | |
| { | |
| public function run() | |
| { | |
| $this->load->dbforge(); | |
| $db = $this->dbforge; | |
| /* |