This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[UTF8]{ctexart} | |
\usepackage{zhlipsum} | |
\usepackage{markdown} | |
\markdownSetup{ | |
renderers = { | |
link = {#1}, % Render a link as the link label. | |
emphasis = {\emph{#1}}, % Render emphasis using `\emph`. | |
}, | |
hybrid = true, | |
fencedCode=true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for systemd on 2.6.32-754.2.1.el6.x86_64 | |
Build date: 2020-02-03 10:02:01 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for systemd on 2.6.32-754.2.1.el6.x86_64 | |
Build date: 2020-01-20 15:18:26 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cassert> | |
#include <cmath> | |
#include <iostream> | |
#include <random> | |
#include <algorithm> | |
#include <limits> | |
#include <functional> | |
#include <map> | |
#include <vector> | |
#include <queue> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iterator> | |
#include <functional> | |
#include <algorithm> | |
#include <type_traits> | |
#include <vector> | |
#include <list> | |
#include <forward_list> | |
namespace { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <iterator> | |
#include <algorithm> | |
#include <type_traits> | |
#include <functional> | |
namespace yuuki { | |
namespace detail { | |
static const constexpr size_t __bsearch_thrd = 16; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% start of file `moderncv_demo.tex'. | |
%% Copyright 2006-2015 Xavier Danaux ([email protected]). | |
% | |
% This work may be distributed and/or modified under the | |
% conditions of the LaTeX Project Public License version 1.3c, | |
% available at http://www.latex-project.org/lppl/. | |
\documentclass[11pt,a4paper,sans]{moderncv} % possible options include font size ('10pt', '11pt' and '12pt'), paper size ('a4paper', 'letterpaper', 'a5paper', 'legalpaper', 'executivepaper' and 'landscape') and font family ('sans' and 'roman') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "svpng.inc" | |
#include <math.h> // fabsf(), fminf(), fmaxf(), sinf(), cosf(), sqrt() | |
#include <stdlib.h> // rand(), RAND_MAX | |
#define TWO_PI 6.28318530718f | |
#define W 512 | |
#define H 512 | |
#define N 256 | |
#define MAX_STEP 64 | |
#define MAX_DISTANCE 5.0f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
struct Person { | |
size_t age = 0; | |
std::string name; | |
Person& operator++() { // prefix | |
++age; | |
return *this; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install asciidoc | |
yum install xmlto | |
yum install zlib-devel | |
yum install cpan | |
version="2.9.5" | |
fname="git-${version}" | |
tarball="${fname}.tar.gz" | |
wget https://mirrors.edge.kernel.org/pub/software/scm/git/${tarball} |