I need to Generate this:
From this endpoint:
https://firebasestorage.googleapis.com/v0/b/neso-c53c4.appspot.com/o/PDFs%2FPPT%2Fcs003_6_p
| 50.27.184.225:54321 | |
| 91.144.95.163:4145 | |
| 103.244.36.129:4145 | |
| 122.55.202.100:4145 | |
| 125.25.187.226:4145 | |
| 131.255.194.60:11337 | |
| 176.110.125.233:51327 | |
| 36.22.76.246:1080 | |
| 45.118.144.47:26591 | |
| 45.118.144.47:26643 |
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) |