I hereby claim:
- I am praveenperera on github.
- I am praveenperera (https://keybase.io/praveenperera) on keybase.
- I have a public key ASA7gaHjs_VF4UG15CNroeYzQhJ-Zy28Vr7Nt5agSPK8pAo
To claim this, I am signing this object:
# STEP 1 - DEPS GETTER | |
FROM hexpm/elixir:1.10.2-erlang-22.2.7-alpine-3.11.3 AS deps-getter | |
# setup up variables | |
ARG APP_NAME | |
ARG APP_VSN | |
ARG PHOENIX_SUBDIR=. | |
ENV APP_NAME=${APP_NAME} \ | |
APP_VSN=${APP_VSN} |
use crossbeam_channel as channel; | |
use ignore::WalkBuilder; | |
use std::path::{Path, PathBuf}; | |
#[derive(Debug)] | |
enum Message { | |
FoundPath(Result<ignore::DirEntry, ignore::Error>), | |
DoneScanning, | |
} |
#!/bin/bash | |
# Options | |
# | |
# -V, --verbose | |
# Enable verbose output for the installer | |
# | |
# -f, -y, --force, --yes | |
# Skip the confirmation prompt during installation | |
# |
sudo chown -R $(whoami) /usr/local | |
sudo chown -R $(whoami) $(brew --prefix)/* | |
sudo chown -R "$USER":admin /usr/local | |
sudo chown -R "$USER":admin /Library/Caches/Homebrew | |
const path = require("path"); | |
const glob = require("glob"); | |
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); | |
const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); | |
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin"); | |
const WebpackNotifierPlugin = require("webpack-notifier"); | |
const CopyWebpackPlugin = require("copy-webpack-plugin"); | |
const isProduction = process.env.NODE_ENV === "production"; | |
const ImageminPlugin = require("imagemin-webpack-plugin").default; |
#!/bin/sh | |
# Heavily modified from https://github.com/japaric/trust/blob/gh-pages/install.sh. | |
help() { | |
cat <<'EOF' | |
Install a binary release of a Rust crate hosted on GitHub. | |
Usage: | |
install.sh [options] |
apiVersion: certmanager.k8s.io/v1alpha1 | |
kind: ClusterIssuer | |
metadata: | |
name: letsencrypt-prod | |
spec: | |
acme: | |
email: [email protected] | |
server: https://acme-v02.api.letsencrypt.org/directory | |
privateKeySecretRef: | |
name: letsencrypt-prod |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/perl -w | |
# -*- Mode: CPerl -*- | |
# | |
# This code was developped by IDEALX (http://IDEALX.org/) and | |
# contributors (their names can be found in the CONTRIBUTORS file). | |
# Copyright (C) 2000-2004 IDEALX | |
# Copyright (C) 2005-2011 Nicolas Niclausse | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by |
const fs = require('fs') | |
const path = require('path') | |
const definedTypes = { | |
'PropTypes.string': 'string', | |
'PropTypes.bool': 'bool', | |
} | |
const files = fs.readdirSync('src') | |
.filter(file => file[0] === file[0].toUpperCase() && file[0] !== '_') |