Skip to content

Instantly share code, notes, and snippets.

@aelk00
aelk00 / remove-likes.md
Last active March 1, 2024 00:58
Remove all your facebook likes
@samuelhorn
samuelhorn / pacman-vscode
Created November 28, 2020 00:11
Vscode pacman caret
.monaco-editor .cursors-layer .cursor {
background: transparent;
border-radius: 100%;
width: 30px !important;
background: conic-gradient(yellow 55deg, transparent 0 125deg, yellow 0);
transform: rotateZ(180deg);
animation: eat 0.5s linear infinite;
}
@keyframes eat {
@icecreammatt
icecreammatt / settings.json
Last active June 26, 2018 17:30
VSCode Settings
{
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Palenight Theme",
"window.zoomLevel": 1,
"workbench.iconTheme": "vscode-icons",
"editor.minimap.enabled": false,
"vim.easymotion": true,
"vim.leader": ",",
@icecreammatt
icecreammatt / keybindings.json
Last active June 26, 2018 17:30
VSCode Bindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+h",
"command": "workbench.action.navigateLeft"
},
{
"key": "ctrl+l",
"command": "workbench.action.navigateRight"
},
@mikechambers
mikechambers / paper.js
Created November 19, 2012 19:29
Paper.js Drawing Example
var thickness;
var strokeColor;
var text = new PointText(new Point(300, 200));
text.content = "Click and Drag to Draw";
text.characterStyle = {
fontSize:36,
fillColor:"#777777",//new RgbColor(119,119,119);
font:"Arial"
};