Skip to content

Instantly share code, notes, and snippets.

@btoone
btoone / curl.md
Last active June 29, 2024 16:01
A curl tutorial using GitHub's API

Introduction

An introduction to curl using GitHub's API.

The Basics

Makes a basic GET request to the specifed URI

curl https://api.github.com/users/caspyin
@motss
motss / simple-loading-screen.html
Last active July 20, 2017 18:31
simple loading screen
<!-- Credits to http://codepen.io/mikeambrosi/pen/JdEMmY -->
<html>
<head>
<style>
/* Run on https://autoprefixer.github.io/ to compile CSS */
.loading {
position: absolute;
top: 50%;
left: 50%;
margin: -15px 0 0 -15px;