Skip to content

Instantly share code, notes, and snippets.

View shaond's full-sized avatar
👨‍💻

Shaon Diwakar shaond

👨‍💻
View GitHub Profile
@shaond
shaond / countries
Created January 22, 2022 10:49 — forked from kalinchernev/countries
Plain text list of countries
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua & Deps
Argentina
Armenia
Australia
Austria
@shaond
shaond / vscode.settings.json
Created June 27, 2018 11:23
[vscode] Stop the dracula theme from italising keywords in cpp (C++) files
{
"editor.fontFamily": "Source Code Pro",
"editor.fontSize": 16,
"editor.tabSize": 2,
"workbench.colorTheme": "Dracula Soft",
"editor.formatOnSave": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
@shaond
shaond / proxy.js
Last active June 27, 2018 11:28
Node.js code to proxy an upstream webpage using cheerio
var http = require('http');
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res) {
var request = require('request');
var url = req.query.url;