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
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 requests | |
import json | |
url = "https://api.github.com/markdown" | |
payload = { | |
"text": "**Hello** world !", | |
"mode": "gfm", | |
"context": "aviaryan/Clipjump" | |
} | |
r = requests.post(url = url, data = payload) |
When working with plotting like gnuplot
or ggplot2
or just navigating your
filesystem on the command line, it would be nice to be able to view bitmap or
vector graphics easily.
This is all for the ideal of hybrid GUI TUI interface!!
However this turns out to be difficult. However I found pretty much 5 ways to
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
#!/bin/bash | |
GITHUB_USERNAME=rubo77 | |
if [ "$1" == "" ]; then | |
echo 'usage: gistfile-post.sh filename [gistname]' | |
exit 0 | |
fi | |
# 0. file name for the Gist |
#ifndef SPFLOAT | |
#define SPFLOAT double | |
#endif |
2017-03-03 fm4dd
The gcc compiler can optimize code by taking advantage of CPU specific features. Especially for ARM CPU's, this can have impact on application performance. ARM CPU's, even under the same architecture, could be implemented with different versions of floating point units (FPU). Utilizing full FPU potential improves performance of heavier operating systems such as full Linux distributions.
These flags can both be used to set the CPU type. Setting one or the other is sufficient.
{ | |
tokens=[ | |
space='regexp:\s+' | |
identifier='regexp:[a-zA-Z][a-zA-Z0-9_]*' | |
integer-constant='regexp:\d+' | |
character-constant='regexp:[a-zA-Z]' | |
floating-constant='regexp:[+-]?([0-9]*[.])?[0-9]+f' | |
enumeration-constant='regexp:[a-zA-Z][a-zA-Z0-9_]*' // Same as identifier | |
] |