I hereby claim:
- I am alesvaupotic on github.
- I am alesvaupotic (https://keybase.io/alesvaupotic) on keybase.
- I have a public key whose fingerprint is 4E7A 4FBE E74C 1432 7279 78B3 5EB3 825F 9F55 DBE6
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "extends": "@tsconfig/svelte/tsconfig.json", | |
| "compilerOptions": { | |
| "baseUrl": ".", | |
| "paths": { | |
| "$components/*": ["./src/components/*"], | |
| "$/*": ["./src/*"] | |
| } | |
| }, | |
| "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] |
| rm -rf .git | |
| git init | |
| git add . | |
| git commit -m "Initial commit" | |
| git branch -m main | |
| git remote add origin git@github.com:USERNAME/REPO.git | |
| git push -u --force origin main | |
| CREATE TABLE `uporabnik` ( | |
| `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, | |
| `ime` VARCHAR(50) NULL DEFAULT '' COLLATE 'utf8mb4_0900_ai_ci', | |
| `org_ulica` VARCHAR(50) NULL DEFAULT '' COLLATE 'utf8mb4_0900_ai_ci', | |
| PRIMARY KEY (`id`) USING BTREE, | |
| INDEX `ime` (`ime`) USING BTREE | |
| ); | |
| INSERT INTO `uporabnik` (`ime`, `org_ulica`) VALUES ('Prvi', 'Prva ulica 1'); | |
| INSERT INTO `uporabnik` (`ime`, `org_ulica`) VALUES ('Drugi', 'Druga ulica 2'); |
| git init | |
| git remote add origin git@github.com:USERNAME/REPOSITORY.git | |
| git add * | |
| git commit -am 'Init' | |
| git push -f origin HEAD:main | |
| <p>Drag the following link into your Bookmarks Bar</p> | |
| <a href="javascript:i=prompt('Search Google for JS in last two years');if(i)location.href='https://www.google.com/search?q='+escape(i)+' -angular -vue -ember -react -jquery js javascript after:'+((new Date()).getFullYear()-2)+'-01-01';">JS</a> |
| Blade::if('edit', function () { | |
| return ( request()->route()->getActionMethod()==='edit'); | |
| }); | |
| Blade::if('create', function () { | |
| return ( request()->route()->getActionMethod()==='create'); | |
| }); | |
| Blade::if('index', function () { | |
| return ( request()->route()->getActionMethod()==='index'); |
| Open Command Prompt as Administrator | |
| assoc .="No Extension" | |
| ftype "No Extension"="C:\Program Files (x86)\Notepad++\notepad++.exe" "%1" | |
| assoc "No Extension"\DefaultIcon=%SystemRoot%\System32\imageres.dll,-102 |
| #as sudo | |
| zfs set compression=lz4 containers | |
| zfs get compressratio containers | |
| lxc config set images.auto_update_cached true | |
| lxc config set images.remote_cache_expiry 1 | |
| lxc config set images.auto_update_interval 0 | |