An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
Includes HTTP-Header information in the output
| import sys | |
| def j(lineno): | |
| frame = sys._getframe().f_back | |
| called_from = frame | |
| def hook(frame, event, arg): | |
| if event == 'line' and frame == called_from: | |
| try: | |
| frame.f_lineno = lineno |
| const os = require("os"); | |
| const fs = require("fs"); | |
| const Emitter = require('events'); | |
| var wslNetworkInterfaces = function() { | |
| console.log("WSL has no idea what interfaces are available."); | |
| return { | |
| "Loopback Pseudo-Interface 1": [ | |
| { | |
| "address": "::1", |
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
Includes HTTP-Header information in the output
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
This configuration is no longer updated
| π | π | π | π |
π© | π | π | π | π¨ | π° | π£ | π’ | π | π | π² | π± |
| π« | π | π‘ | π€ | πͺ | π | π·
π | π΅ | πΏ | π | π | πΆ | π | π½ | π | π | π | β€οΈ | π | π | π | π | π | π | π | β¨
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
| Index: Source/JavaScriptCore/interpreter/Interpreter.cpp | |
| =================================================================== | |
| --- Source/JavaScriptCore/interpreter/Interpreter.cpp (revision 80598) | |
| +++ Source/JavaScriptCore/interpreter/Interpreter.cpp (working copy) | |
| @@ -75,6 +75,8 @@ | |
| namespace JSC { | |
| +Instruction* globalVPC; | |
| + |