Skip to content

Instantly share code, notes, and snippets.

View xavadu's full-sized avatar

xavadu

View GitHub Profile
@xavadu
xavadu / vscode-settings.json
Last active October 11, 2017 16:25
VSCODE Nova theme dark teaks
// Dark Nova theme
"workbench.colorCustomizations": {
"editor.background": "#2D2D2D",
"sideBar.background": "#252526",
"activityBar.background": "#333333",
"editor.lineHighlightBackground": "#444440",
"input.background": "#3C3C3C",
"list.focusBackground": "#444440",
"tab.activeBackground": "#2D2D2D",
"tab.border": "#2D2D2D",
@xavadu
xavadu / settings.json
Last active April 17, 2018 16:12
VSCode settings
// Place your settings in this file to overwrite the default settings
{
// Controls the font family.
"editor.fontFamily": "'Menlo'",
// Controls the font size in pixels.
"editor.fontSize": 16,
// Controls the line height. Use 0 to compute the lineHeight from the fontSize.
"editor.lineHeight": 19,
"editor.wordWrap": "off",
"editor.autoIndent": true,
@xavadu
xavadu / rsvp.js
Last active May 25, 2018 10:32
MeetUp RSVP auto attendance
// RSVP auto attendance IA bot quantum processor compumundohipermegared
// Run the code in the main event page with the extension, when the RSVP be enabled you automatically will be mark as going
// https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija/related?hl=en
const rsvpBtn = document.getElementsByClassName('rsvpIndicator-rsvp-yesButton')[0];
const interval = setInterval(() => {
if (rsvpBtn.className.indexOf('disabled') == -1) {
rsvpBtn.click();
clearInterval(interval);
console.log('YAYYH!! RSVP Done!!');
} else {