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
# to be set | |
use_kaggle = False | |
competition_name = "" | |
base_folder = 'fastai_v3/' | |
from google.colab import drive | |
drive.mount('/content/gdrive/', force_remount=True) | |
root_dir = '/content/gdrive/My Drive/' | |
base_dir = root_dir + base_folder |
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
{ | |
"applyToListedOnly": false, | |
"automation": "", | |
"changeBrowserTheme": false, | |
"customThemes": [ | |
{ | |
"url": [ | |
"arxiv.org" | |
], | |
"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
let loaded_matchparen = 1 | |
let mapleader = " " | |
nnoremap <leader>h :wincmd h<CR> | |
nnoremap <leader>j :wincmd j<CR> | |
nnoremap <leader>k :wincmd k<CR> | |
nnoremap <leader>l :wincmd l<CR> | |
call plug#begin() | |
Plug 'alvan/vim-closetag' |
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
for_window [class=".*"] border pixel 0 | |
set $mod Mod4 | |
# is used in the bar {} block below. | |
font pango:monospace 8 | |
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork | |
# NetworkManager is the most popular way to manage wireless networks on Linux, | |
# and nm-applet is a desktop environment-independent system tray GUI for it. |
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
let loaded_matchparen = 1 | |
let mapleader = " " | |
:imap kj <Esc> | |
nnoremap <leader>h :wincmd h<CR> | |
nnoremap <leader>j :wincmd j<CR> | |
nnoremap <leader>k :wincmd k<CR> | |
nnoremap <leader>l :wincmd l<CR> |
This file has been truncated, but you can view the full file.
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
5.6030273e-02 | |
4.5349121e-02 | |
4.1198730e-02 | |
3.9642334e-02 | |
3.9093018e-02 | |
3.9031982e-02 | |
3.9154053e-02 | |
3.9306641e-02 | |
3.9520264e-02 | |
3.9703369e-02 |
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
let loaded_matchparen = 1 | |
let mapleader = " " | |
let maplocalleader="\<space>" | |
nnoremap <leader>h :wincmd h<CR> | |
nnoremap <leader>j :wincmd j<CR> | |
nnoremap <leader>k :wincmd k<CR> | |
nnoremap <leader>l :wincmd l<CR> | |
nnoremap <leader>nn :!node %<CR> |
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
drop table if exists "company" cascade; | |
create table "company" | |
( | |
id varchar(20) primary key, | |
name varchar(50) not null, | |
createdAt timestamptz not null default (now()) | |
); | |
drop table if exists "userlist" cascade; | |
create table "userlist" |
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
local cmd = vim.cmd | |
local fn = vim.fn | |
local g = vim.g | |
local opt = vim.opt | |
g.mapleader = " " | |
vim.cmd[[ |
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
{ | |
"[go]": { | |
"editor.tabSize": 4 | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.tabSize": 2 | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", |
OlderNewer