We do not collect any data. No personal data of the user is ever even involved in any way from the moment the app runs till the moment it is closed. This is literally a simple general tech GK quiz. We do not have any of your data, hence, we cannot share it with anyone.
This file contains 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
localStorage.setItem("journalList", {"\"Meteor\" Forschungsergebnisse":"\"Meteor\" Forschungsergeb.", | |
"2D Materials":"2D Mater.", | |
"3D Printing and Additive Manufacturing":"3D Print. Addit. Manuf.", | |
"AACN Clinical Issues":"AACN Clin. Issues", | |
"AACN Clinical Issues in Critical Care Nursing":"AACN Clin. Issues Crit. Care Nurs.", | |
"AADE Editors Journal":"AADE Ed. J.", | |
"AANA Journal":"AANA J.", | |
"AANNT Journal":"AANNT J.", | |
"AAOHN Journal":"AAOHN J.", | |
"AAPG Bulletin":"AAPG Bull.", |
This file contains 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 Demobug | |
// @version 0.1 | |
// @description Demo bug | |
// @author https://stackoverflow.com/users/2675672/gaurang-tandon | |
// @match *://*.stackoverflow.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains 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 Citation Helper for StackExchange | |
// @description Helps insert citations easily on StackExchange | |
// @author Gaurang Tandon | |
// @match *://*.askubuntu.com/* | |
// @match *://*.mathoverflow.net/* | |
// @match *://*.serverfault.com/* | |
// @match *://*.stackapps.com/* | |
// @match *://*.stackexchange.com/* | |
// @match *://*.stackoverflow.com/* |
This file contains 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 Comment Keyboard shortcuts | |
// @version 0.1 | |
// @description Bold, italics, link, and custom shortcuts for comments in Stack Exchange | |
// @author Gaurang Tandon | |
// @match *://*.askubuntu.com/* | |
// @match *://*.mathoverflow.net/* | |
// @match *://*.serverfault.com/* | |
// @match *://*.stackapps.com/* | |
// @match *://*.stackexchange.com/* |
This file contains 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 Markdown Shortcuts for StackExchange | |
// @version 0.1 | |
// @description easily insert common (cuztomizable) LaTeX shortcuts | |
// @author Gaurang Tandon | |
// @match *://*.askubuntu.com/* | |
// @match *://*.mathoverflow.net/* | |
// @match *://*.serverfault.com/* | |
// @match *://*.stackapps.com/* | |
// @match *://*.stackexchange.com/* |
This file contains 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
# Basic segtree (prerequisite) | |
Given n values `a[1], ..., a[n]`, you entertain two types of queries: | |
- point update: add `x` to the i-th value | |
- range query: query minimum value of `a[i]` in the range `l, r` | |
LIVE CODE. | |
# Simple lazy segtree |
This file contains 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 SSH clone button | |
// @version 0.1 | |
// @description For those who have SSH default in their repo | |
// @author Gaurang | |
// @match https://github.com/*/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
OlderNewer