An introduction to curl
using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
An introduction to curl
using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
I could not find a proper, detailed (and up-to-date) reverse-engineerment
of Omegle's text chat protocol on the internet, so here, have one made by analyzing the web app (web requests and source code).
The responses are beautified and the query strings split up and URI-decoded for
readability.
Note that "query string" refers to parameters encoded into the URL and
"form data" to parameters in the POST body which do not have to be URI-encoded.
TODO:
// Core import | |
import highlightjs from 'highlight.js/lib/highlight' | |
// Languages import | |
import javascript from 'highlight.js/lib/languages/javascript' | |
import bash from 'highlight.js/lib/languages/bash' | |
import yaml from 'highlight.js/lib/languages/yaml' | |
// Register languages | |
highlightjs.registerLanguage('javascript', javascript) |