An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| #Author: Marcel Pinheiro Caraciolo | |
| #Confusion Matrix Generator | |
| #Version: 0.1 | |
| #email: caraciol at gmail . com | |
| from pprint import pprint as _pretty_print | |
| import math | |
| class ConfusionMatrix(object): |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Box Shadow</title> | |
| <style> | |
| .box { | |
| height: 150px; | |
| width: 300px; | |
| margin: 20px; |
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
| import javafx.animation.FadeTransition; | |
| import javafx.application.Application; | |
| import javafx.beans.property.ReadOnlyObjectProperty; | |
| import javafx.collections.*; | |
| import javafx.concurrent.*; | |
| import javafx.geometry.*; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.*; | |
| import javafx.scene.effect.DropShadow; | |
| import javafx.scene.image.*; |
| <?php | |
| /*############################# | |
| * Developer: Mohammad Sharaf Ali | |
| * Designation: Web Developer | |
| * Version: 2.0 | |
| * | |
| * Changes from Version 1.0: | |
| * - Updated to use a new API endpoint that returns JSON data instead of plain text | |
| * - Replaced file_get_contents with cURL for improved error handling and performance |
| "use strict"; | |
| // Load plugins | |
| const autoprefixer = require("autoprefixer"); | |
| const browsersync = require("browser-sync").create(); | |
| const cp = require("child_process"); | |
| const cssnano = require("cssnano"); | |
| const del = require("del"); | |
| const eslint = require("gulp-eslint"); | |
| const gulp = require("gulp"); |
Here's a list of mildly interesting things about the C language that I learned mostly by consuming Clang's ASTs. Although surprises are getting sparser, I might continue to update this document over time.
There are many more mildly interesting features of C++, but the language is literally known for being weird, whereas C is usually considered smaller and simpler, so this is (almost) only about C.
struct foo {
struct bar {
int x;