- Clone the github repository onto your local machine.
$ git clone https://github.com/torvalds/linux.git
$ cd linux
- Configure the build
We will gather all URLs next - this may take a short while. Please remain patient. | |
(1) 3ddesktop -> http://desk3d.sourceforge.net/download.php | |
(2) 3dpong -> ftp://ftp.billsgames.com/unix/x/3dpong/src/3dpong-0.5.tar.gz | |
(3) 855resolution -> http://perso.orange.fr/apoirier/ | |
(4) a2png -> http://sourceforge.net/projects/a2png/files/a2png/0.1.5/a2png-0.1.5.tar.gz | |
(5) a2ps -> http://ftp.gnu.org/gnu/a2ps/a2ps-4.14.tar.gz | |
(6) a52dec -> http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz | |
(7) aalib -> http://sourceforge.net/projects/aa-project/files/aa-lib/1.4rc5/aalib-1.4rc5.tar.gz | |
(8) aamath -> http://fuse.superglue.se/aamath/aamath-0.3.tar.gz | |
(9) abcde -> http://abcde.googlecode.com/files/abcde-2.5.3.tar.gz |
module "combined_acm_certificate" { | |
source = "../../modules/acm_certificate_dns_validated_multi_zone" | |
domain_name = "infra.example.com" | |
zone_to_san = { | |
"infra.example.com" = [ | |
"*.infra.example.com", | |
"*.dev.infra.example.com", | |
"*.staging.infra.example.com", | |
"*.production.infra.example.com", |
from locust.stats import RequestStats | |
from locust import Locust, TaskSet, task, events | |
import os | |
import sys, getopt, argparse | |
from random import randint,random | |
import json | |
from locust.events import EventHook | |
import requests | |
import re | |
import grpc |
git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv
https://gist.github.com/ljharb/58faf1cfcb4e6808f74aae4ef7944cff
While attempting to explain JavaScript's reduce
method on arrays, conceptually, I came up with the following - hopefully it's helpful; happy to tweak it if anyone has suggestions.
JavaScript Arrays have lots of built in methods on their prototype. Some of them mutate - ie, they change the underlying array in-place. Luckily, most of them do not - they instead return an entirely distinct array. Since arrays are conceptually a contiguous list of items, it helps code clarity and maintainability a lot to be able to operate on them in a "functional" way. (I'll also insist on referring to an array as a "list" - although in some languages, List
is a native data type, in JS and this post, I'm referring to the concept. Everywhere I use the word "list" you can assume I'm talking about a JS Array) This means, to perform a single operation on the list as a whole ("atomically"), and to return a new list - thus making it mu
Go has excellent build tools that mitigate the need for using make
.
For example, go install
won't update the target unless it's older
than the source files.
However, a Makefile can be convenient for wrapping Go commands with
specific build targets that simplify usage on the command line.
Since most of the targets are "phony", it's up to you to weigh the
pros and cons of having a dependency on make
versus using a shell
script. For the simplicity of being able to specify targets that
can be chained and can take advantage of make
's chained targets,
global | |
log 127.0.0.1 local0 | |
user root | |
group root | |
daemon | |
defaults | |
log global | |
mode http | |
option httplog |
This Gist has been transfered into a Github Repo. You'll find the most recent version here.
When creating your rules for YARA keep in mind the following guidelines in order to get the best performance from them. This guide is based on ideas and recommendations by Victor M. Alvarez and WXS.