I need to Generate this:
From this endpoint:
https://firebasestorage.googleapis.com/v0/b/neso-c53c4.appspot.com/o/PDFs%2FPPT%2Fcs003_6_p
I need to Generate this:
From this endpoint:
https://firebasestorage.googleapis.com/v0/b/neso-c53c4.appspot.com/o/PDFs%2FPPT%2Fcs003_6_p
@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; |
"""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 | |
... | |
// | |
// 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 | |
// |
// ==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"); |
<!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; |
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) |
{ | |
"test": "data" | |
} |
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" |
// ==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') |