For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
# This section of the documentation lists the properties available on | |
# CMake cache entries: | |
# | |
# http://cmake.org/cmake/help/v2.8.12/cmake.html#section_PropertiesonCacheEntries | |
# | |
# | |
# This code demonstrates retrieving the property values from a variable or | |
# cache entry. | |
# |
Rich Hickey on becoming a better developer
− Avatar Rich Hickey • 3 years ago Sorry, I have to disagree with the entire premise here.
A wide variety of experiences might lead to well-roundedness, but not to greatness, nor even goodness. By constantly switching from one thing to another you are always reaching above your comfort zone, yes, but doing so by resetting your skill and knowledge level to zero.
Mastery comes from a combination of at least several of the following:
#!/bin/bash | |
# An interactive script that allows you to delete multiple remote branches from | |
# a git repository with confirmation before deletion. | |
# | |
# Provide the path to the git repo as an argument to the script or it will | |
# prompt you for the path to the repo | |
# | |
# @version 0.1 | |
# @author Evan Reeves <[email protected]> |
Thanks to this article by Christoph Berg
Directories and files
~/
#define BOOST_TEST_MODULE subcommand options | |
#include <boost/test/unit_test.hpp> | |
#include <boost/program_options.hpp> | |
#include <boost/variant/variant.hpp> | |
#include <boost/variant/get.hpp> | |
struct GenericOptions { | |
bool debug_; | |
}; |
#!/usr/bin/env python | |
# An example of decoding/encoding datetime values in JSON data in Python. | |
# Code adapted from: http://broadcast.oreilly.com/2009/05/pymotw-json.html | |
from datetime import datetime | |
import json | |
from json import JSONDecoder | |
from json import JSONEncoder |