Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0"?>
<opml version="1.0"><head><title>Overcast Podcast Subscriptions</title></head><body><outline type="rss" text="North Star Podcast" title="North Star Podcast" xmlUrl="http://perell.libsyn.com/rss" htmlUrl="http://www.perell.com/podcast/"/><outline type="rss" text="Hurry Slowly" title="Hurry Slowly" xmlUrl="https://hurryslowly.co/feed/podcast/" htmlUrl="https://hurryslowly.co/"/><outline type="rss" text="Freakonomics Radio" title="Freakonomics Radio" xmlUrl="https://rss.art19.com/freakonomics-radio" htmlUrl="http://freakonomics.com/"/><outline type="rss" text="The DO Lectures - DO Audio" title="The DO Lectures - DO Audio" xmlUrl="https://www.thedolectures.com/do-podcast?format=rss" htmlUrl="https://www.thedolectures.com/do-podcast/"/><outline type="rss" text="Odd Lots" title="Odd Lots" xmlUrl="http://feeds.bloomberg.fm/BLM2009837477" htmlUrl="https://bloomberg.com/podcasts/odd_lots"/><outline type="rss" text="Positively Gotham Gal" title="Positively Gotham Gal" xmlUrl="http://feeds.soundclo
@yclian
yclian / podcast-addict.opml
Created February 7, 2019 00:54
Podcast Subscriptions
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<opml version="1.0">
<head>
<title>PodcastAddict registration feeds</title>
<dateCreated>Jan 25, 2019 07:30:40</dateCreated>
<dateModified>Jan 25, 2019 07:30:40</dateModified>
</head>
<body>
<outline text="a16z" type="rss" xmlUrl="http://feeds.soundcloud.com/users/soundcloud:users:62921190/sounds.rss" htmlUrl="http://www.a16z.com" />
<outline text="Accelerated Spanish: Learn Spanish online the fastest and best way, by Master of Memory" type="rss" xmlUrl="http://acceleratedspanishmasterofmemory.libsyn.com/rss" htmlUrl="http://SpanishInOneMonth.com" />
@yclian
yclian / release-checklist.md
Created May 24, 2017 06:38 — forked from jasonmp85/release-checklist.md
Release Checklist

These instructions assume you have $VERSION, $PROJECT, and $REPO environment variables set in your shell (e.g. 6.1.1, citus, and citus). With those set, code from most steps can be copy-pasted.

After this checklist, you're still not done: open a release checklist in Enterprise and release there, too!

Prepare Project

  • Ensure all needed changes are in the relevant release-x.y branch. git log --cherry-pick --no-merges release-x.y...master can be helpful. Be sure to cherry-pick changes in the same order they were merged to the main branch (but do not cherry-pick merge commits themselves)
  • Add a CHANGELOG entry in the master branch summarizing meaningful changes
  • Use git cherry-pick to add the new CHANGELOG entry to the release-x.y branch
  • Use git tag -a -s v$VERSION to create an annotated, signed tag for the release. Summarize the release in the one-line tag annotation (beneath 52 characters). Push the tag with git push origin v$VERSION
@yclian
yclian / Jenkinsfile
Last active June 2, 2016 06:28
Terraform on Jenkins
node {
def ak = "<AWS_ACCESS_KEY>"
def id = "${env.JOB_NAME}-${env.BUILD_ID}"
def wd = pwd()
def run = "docker run --rm -u `id -u jenkins` -v ${wd}:/tmp/${id} -w=/tmp/${id} -e AWS_ACCESS_KEY_ID=${ak} -e AWS_SECRET_ACCESS_KEY=${env.ask} --entrypoint=/go/bin/terraform hashicorp/terraform:full"
git credentialsId: '<CREDS_ID>', url: '<GIT_URL>'
withCredentials([[$class: 'StringBinding', credentialsId: '<CREDS_ID_2>', variable: 'ask']]) {
@yclian
yclian / car.js
Last active August 29, 2015 14:25
// Run: `node --harmony car.js`
"use strict";
var Car = function(brand) {
this.brand = brand;
this.vroom = function() {
console.log(this.brand + " is slow");
@yclian
yclian / index.js
Created August 28, 2014 14:08 — forked from edokeh/index.js
//
// _oo0oo_
// o8888888o
// 88" . "88
// (| -_- |)
// 0\ = /0
// ___/`---'\___
// .' \\| |// '.
// / \\||| : |||// \
// / _||||| -:- |||||- \
@yclian
yclian / settings.xml.part
Created June 17, 2014 17:57
Atlassian Plugin Repository
<pluginRepositories>
<pluginRepository>
<id>atlassian.mirror</id>
<url>https://maven.atlassian.com/content/groups/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
@yclian
yclian / git.diff
Last active August 29, 2015 14:02
Additional configuration for Gradle to publish JaCoCo report to Sonar
build.gradle | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/build.gradle b/build.gradle
index cc52b8f..c053194 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,6 +5,7 @@ apply from: "${ext.scriptDir}/common/java.gradle"
apply from: 'libraries.gradle'
@yclian
yclian / maven-wadl-plugin.xml
Created February 18, 2014 06:21
Sample configuration of Maven WADL Plugin
<plugin>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>maven-wadl-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>generate</id>
<goals>
<goal>generate</goal>
@yclian
yclian / build.gradle
Last active December 18, 2015 10:48
`build.gradle` for `spark-demo`.
apply plugin: 'java'
apply plugin: 'idea'
apply from: 'libraries.gradle'
defaultTasks 'build'
group = 'com.yclian.demo.spark'
repositories {
mavenCentral()