- How many keys do you want ie. do you need function keys / cursor arrow keys / numpad?
- Do you like loud clicky keys, bumpy tactile, or linear fast to hit keys?
- Do you want to be able to swap out switches for different ones or mix / match your switches?
- Do you need it to be portable?
- Do you want LED lighting?
- Do you want to program it with macros to be highly custom?
- Do you want USB-c?
- Windows or Mac?
- Do you want split / ergonomic / ortholinear?
- Do you want to use custom / creative keycap sets or keep it OEM?
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
# Bitbucket Git Downloader | |
# Copyright (c) Davide Gironi, 2021 | |
# Released under GPLv3 | |
# Downloads all the repository from a Bitbucket account |
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
/** | |
* @usage: | |
* | |
* <RadioBox label="Foo" value="foo" v-model="MySelectedValue" /> | |
* <RadioBox label="Bar" value="bar" v-model="MySelectedValue" /> | |
* <RadioBox label="Baz" value="baz" v-model="MySelectedValue" /> | |
* | |
* data(){ | |
* return { | |
* MySelectedValue: "", |
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
Show hidden characters
{ | |
"presets": [ | |
["@babel/preset-env", { | |
"modules": false | |
}] | |
], | |
"plugins": [["@babel/plugin-transform-react-jsx"]] | |
} |
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
/* Reference by: http://easings.net/ */ | |
:root { | |
/* sine */ | |
--ease-in-sine: cubic-bezier(.47, 0, .745, .715); | |
--ease-out-sine: cubic-bezier(.39, .575, .565, 1); | |
--ease-in-out-sine: cubic-bezier(.445, .05, .55, .95); | |
/* quad */ | |
--ease-in-quad: cubic-bezier(.55, .085, .68, .53); | |
--ease-out-quad: cubic-bezier(.25, .46, .45, .94); |
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
// Add on element with overflow | |
-webkit-mask-image: -webkit-radial-gradient(white, black); |
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
var p1={ | |
x:0, | |
y:0 | |
}; | |
var p2={ | |
x:0, | |
y:1 | |
}; |
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
git clone --mirror https://github.com/keijiro/Foobar.git | |
git remote set-url --push origin https://[email protected]/keijiro/Foobar | |
git push --mirror |
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
-- | |
title: My Post | |
related_entries: | |
- /blog/related-post-1 | |
- /blog/related-post-2 | |
--- | |
This is actually your post's md file. I named it txt otherwise Github will try to format it as markdown and it looks funky. |
NewerOlder