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
[ | |
{ | |
"_id": "62d30558bcfa950f0a373eb4", | |
"title": "rice", | |
"cost": 21.5 | |
}, | |
{ | |
"_id": "62d30602bcfa950f0a373eb5", | |
"title": "daal", | |
"cost": 17.7 |
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 JEE Mains Answers capture | |
// @match https://test.cbexams.com/* | |
// @description This script detects parses your entered answers into a computer readable format | |
// ==/UserScript== | |
const returnData = [] // stores all the answers | |
const cb = document.createElement('input') |
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 fs = require("fs"); | |
interface Job { | |
downloadFolder?: null | String; // null, | |
chunks?: number; // 0, | |
overwritePackagizerEnabled?: true | false; // true, | |
extractAfterDownload?: null | "UNSET" | "TRUE" | "FALSE"; // "UNSET", | |
priority?: | |
| null | |
| "HIGHEST" |
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
{ | |
"test": "data" | |
} |
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
cmake_minimum_required(VERSION 3.10) | |
project(eigen-example) | |
add_executable(${PROJECT_NAME} main.cpp) | |
IF(PLATFORM_PSP) | |
find_package(PkgConfig REQUIRED) | |
pkg_check_modules(EIGEN3 REQUIRED eigen3) |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<style> | |
body { | |
font-family: "Courier New", Courier, monospace; |
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== | |
// @license MIT | |
// @name Get all downloadable content from MIT OpenCourseWare | |
// @match https://ocw.mit.edu/courses/* | |
// @description Get a button to download all the content from a course and lot to console | |
// ==/UserScript== | |
var res = []; | |
const mainButton = document.createElement("button"); |
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
// | |
// Compile for emscripten using | |
// emcc -Iinclude SingleFileOpenGLTex.cpp \ | |
-O2 -std=c++14 -s TOTAL_MEMORY=33554432 -s USE_SDL_IMAGE=2 -s SDL2_IMAGE_FORMATS='["png"]' --preload-file examples/data -s USE_SDL=2 -o html/SingleFileOpenGLTex.html | |
// where the following images must be located in a subfolder | |
// - examples/data/test.png | |
// - examples/data/cartman.png | |
// - examples/data/cube-negx.png | |
// - examples/data/cube-negz.png | |
// |
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
"""Create a Metadata file with chapters for a Video | |
Usage: | |
* Place a `chapter.txt` file in the same directory as the video file. | |
with the following format: | |
00:00:00 Chapter 1 | |
00:00:00 Chapter 2 | |
... | |
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
@font-face { | |
font-family: "VictorMono Nerd Font"; | |
font-style: normal; | |
font-weight: 200; | |
src: url(https://github.com/ryanoasis/nerd-fonts/blob/master/patched-fonts/VictorMono/Semi-Bold/complete/Victor%20Mono%20SemiBold%20Nerd%20Font%20Complete.ttf?raw=true); | |
} | |
@font-face { | |
font-family: "VictorMono Nerd Font"; | |
font-style: normal; | |
font-weight: 400; |