System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
System: Debian/Ubuntu/Fedora. Might work for others as well.
As mentioned here, to update a go version you will first need to uninstall the original version.
To uninstall, delete the /usr/local/go
directory by:
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
// NOTE: I added the .js extension to this gist so it would have syntax highlighting. This file should have NO file extension | |
{ | |
// Settings | |
"passfail" : false, // Stop on first error. | |
"maxerr" : 100, // Maximum error before stopping. | |
"esversion" : 6, // allowing ES6 | |
// Predefined globals whom JSHint will ignore. |
<?php | |
/** | |
* Get an excerpt | |
* | |
* @param string $content The content to be transformed | |
* @param int $length The number of words | |
* @param string $more The text to be displayed at the end, if shortened | |
* @return string | |
*/ |
// Usage: | |
// get_id_by_slug('any-page-slug'); | |
function get_id_by_slug($page_slug) { | |
$page = get_page_by_path($page_slug); | |
if ($page) { | |
return $page->ID; | |
} else { | |
return null; | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Pierre subscriptions in feedly Cloud</title> | |
</head> | |
<body> | |
<outline text="all" title="all"> | |
<outline type="rss" text="ScaleScale.com" title="ScaleScale.com" xmlUrl="http://www.scalescale.com/feed/" htmlUrl="http://www.scalescale.com"/> | |
<outline type="rss" text="InfoQ" title="InfoQ" xmlUrl="https://www.infoq.com/fr/feed?token=SLR1jAj2muGO5L2U2sIUYaQgzGPlyuFP" htmlUrl="http://www.infoq.com"/> |
var donutChart; | |
(function() { | |
var w = 500, | |
h = 300, | |
r = 100, | |
innerRadius = 80, | |
transitionsDuration = 1000, | |
transitionsDelay = 250, | |
percentageTextSize = '2.0rem'; |