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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Do not edit this file, it will be overwritten on install. | |
| Copy the file to $HOME/.config/openbox/ instead. --> | |
| <openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude"> | |
| <resistance> | |
| <strength>10</strength> | |
| <screen_edge_strength>20</screen_edge_strength> | |
| </resistance> | |
| <focus> | |
| <focusNew>yes</focusNew> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>plotrowsv1.mbtiles</title> | |
| <meta charset="utf-8"/> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/> | |
| <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.css' rel='stylesheet' /> | |
| <style> | |
| html, body, #map {width:100%; height:100%; margin:0; padding:0;} |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Docker 301</title> | |
| <meta charset="utf-8"> | |
| <style> | |
| @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic); | |
| * { | |
| font-family: 'Ubuntu Mono'; |
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
| { | |
| "workbench.statusBar.visible": false, | |
| "workbench.activityBar.visible": false, | |
| "window.menuBarVisibility": "toggle", | |
| "workbench.editor.enablePreview": false, | |
| "telemetry.enableTelemetry": false, | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 15, | |
| "editor.lineHeight": 26, | |
| "editor.fontLigatures": true, |
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
| const winston = require('winston'); | |
| const logger = winston.createLogger({ | |
| level: 'debug', | |
| exitOnError: true, | |
| format: winston.format.combine( | |
| winston.format.colorize(), | |
| winston.format.simple(), | |
| ), | |
| transports: [ |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Docker 201</title> | |
| <meta charset="utf-8"> | |
| <style> | |
| @import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic); | |
| @import url(https://fonts.googleapis.com/css?family=Indie+Flower); | |
| * { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8' /> | |
| <title>Pune Tree Map</title> | |
| <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
| <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.52.0/mapbox-gl.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.52.0/mapbox-gl.css' rel='stylesheet' /> | |
| <style> |
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
| body:before { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| content:"Stop Procrastination!"; | |
| background: orangered; | |
| z-index: 99999; | |
| text-align: center; |
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
| # volume up or down | |
| alias vol+="amixer -D pulse sset Master 5%+" | |
| alias vol++="amixer -D pulse sset Master 10%+" | |
| alias vol+++="amixer -D pulse sset Master 15%+" | |
| alias vol-="amixer -D pulse sset Master 5%-" | |
| alias vol--="amixer -D pulse sset Master 10%-" | |
| alias vol---="amixer -D pulse sset Master 15%-" | |
| alias srcedit='nano +99999 ~/.bashrc && source ~/.bashrc' | |
| alias srcupdate='source ~/.bashrc' |
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
| // ==UserScript==// | |
| // @name Remove Famous LinkedIn Posts | |
| // @namespace RemoveFamousLinkedInPosts | |
| // @description Remove Famous LinkedIn Posts | |
| // @include https://www.linkedin.com/* | |
| // ==/UserScript== | |
| var MAX_NUM_LIKES = 150; | |
| var DEBUG = false; | |
| var INTERVAL = 500; |