Hi John,
I am {name redacted}, a 4th year student @ {university in India}.
I was looking up for list reversal problem in stackoverflow and came across your solution. I liked the solution a lot and went ahead and checked out your profile on SO. Then I visited your linkedin profile and then I realized you are totally experienced developer.
I read ur summary( really loved ur philosophy on design!! simply awesome) and went through all your contributions to the developer world. I also visited all ur github repos and saw ur open source contributions. I really liked ur project awesomesauce although my javascript skill is not that proficient to understand most of your code.😁
This file contains 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
#!/bin/bash | |
set -e | |
# requires `jq` | |
function load_all_pages { | |
URL="$1" | |
DATA="" | |
until [ "$URL" == "null" ]; do | |
RESP=$(cf curl "$URL") | |
DATA+=$(echo "$RESP" | jq .resources) |
This file contains 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
--- | |
resources: | |
- name: my-resource | |
type: git | |
source: | |
branch: master | |
uri: https://github.com/pivotalservices/concourse-pipeline-samples.git | |
jobs: | |
- name: Run-automatically |
This file contains 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
{ | |
// This is roughly the implicit `tasks.json` that would have been generated | |
// by the `rls-vscode` extension to work around the issue raised in issue #359. | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "shell", | |
"label": "cargo build", | |
"command": "cargo", | |
"args": [ |
This file contains 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
source "https://rubygems.org" | |
ruby "2.5.0" | |
gem "paint" |
This file contains 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
-- full-text search in JSON/JSONB columns | |
CREATE INDEX transactions_fts ON transactions | |
USING gin (( to_tsvector('english', transactions) )) | |
-- parallelism now supported or improved in: | |
-- * bitmap heap scans | |
-- * merge joins | |
-- * btree index scans | |
-- partitioning |
This file contains 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
<div class="measure--lg"> | |
<div class="g"> | |
<div class="g-r"> | |
<section class="g-r-c-6-12 p1 mx1 home-list"> | |
<div class="block"> | |
<div class="list-meta-title"> | |
recent entries | |
<a href="http://localhost:3000/entries/" class="list-meta-all" title="see all entries">see all</a> | |
</div> | |
<ul class="list"> |
This file contains 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
require 'yaml' | |
class Hash | |
def fully_qualified_keys | |
map { |k,v| | |
v.fully_qualified_keys.map{ |a| "#{k}.#{a}" } rescue k.to_s | |
}.flatten | |
end | |
end |
This file contains 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
##################################### | |
# recipes.html | |
--- | |
layout: showcase | |
title: Recipes | |
description: my favorite recipes | |
--- | |
{% assign item_collection = site.recipes | sort: 'date_range' %} | |
##################################### |
This file contains 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
FROM alpine:latest | |
MAINTAINER John Feminella <jxf@jxf.me> | |
RUN apk add --update \ | |
inotify-tools \ | |
qemu-system-x86_64 \ | |
&& rm -rf /var/cache/apk/* | |
COPY mysqld.bin run.sh fs/etc.iso fs/data.ffs /unikernel/ | |
WORKDIR /unikernel | |
CMD ["/unikernel/run.sh"] |
NewerOlder