Skip to content

Instantly share code, notes, and snippets.

variable repositories {
default = {
"0" = "fakedata"
"1" = "deloominator"
}
}
resource "github_issue_label" "gardening-label" {
count = "${length(var.repositories)}"
repository = "${lookup(var.repositories, count.index)}"
@alirobe
alirobe / reclaimWindows10.ps1
Last active April 14, 2024 11:40
This Windows 10 Setup Script turns off a bunch of unnecessary Windows 10 telemetery, bloatware, & privacy things. Not guaranteed to catch everything. Review and tweak before running. Reboot after running. Scripts for reversing are included and commented. Fork of https://github.com/Disassembler0/Win10-Initial-Setup-Script (different defaults). N.…
###
###
### UPDATE: For Win 11, I recommend using this tool in place of this script:
### https://christitus.com/windows-tool/
### https://github.com/ChrisTitusTech/winutil
### https://www.youtube.com/watch?v=6UQZ5oQg8XA
### iwr -useb https://christitus.com/win | iex
###
###
@williamHuang5468
williamHuang5468 / SDR.md
Created January 31, 2016 05:19
實例、細節、成果

作者 AmosYang (Zzz...) 看板 Soft_Job 標題 Re: [請益] 大四 擔心未來找工作 時間 Mon Apr 7 01:43:31 2014 ───────────────────────────────────────

※ 引述《j999444 (渣94)》之銘言: : 1.像我現在這樣出去找工作能以實習公司的作品去面試嗎? : (因為都是自己在handle case的)

最近正好看到一些 interview 的文章,裡面有一點我覺得很有用

@jerodsanto
jerodsanto / Rakefile
Created January 10, 2015 16:51
A code dump showing how we generate "The Changelog Weekly" using the Trello API
require "rubygems"
require "bundler"
require_relative "lib/importer"
Bundler.setup
desc "Import from Trello board"
task :import do
Importer.new(File.dirname(__FILE__)).import ENV["ISSUE"]
end
@addyosmani
addyosmani / README.md
Last active April 2, 2024 20:18 — forked from 140bytes/LICENSE.txt
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version

@underhilllabs
underhilllabs / sinatra_dokku.md
Last active December 7, 2023 16:19
Setting up a Sinatra app on Dokku

There are a few additional steps I noticed to setting up a Sinatra app to work on Dokku. (These are probably also required for deploying an app to Heroku.)

original app.rb

require 'sinatra'

get '/' do
  "Your Sinatra app is not quite Dokku-fied!"
end
@tsechingho
tsechingho / unicorn.cap
Created March 31, 2014 11:28
capistrano 3 examples
namespace :load do
task :defaults do
set :unicorn_bin, :unicorn_rails
set :unicorn_pid, -> { shared_path.join('tmp', 'pids', 'unicorn.pid') }
set :unicorn_config, -> { current_path.join('config', 'unicorn.rb') }
set :unicorn_gemfile, -> { current_path.join('Gemfile') }
set :unicorn_env, -> { fetch(:rails_env) || fetch(:stage) }
set :unicorn_roles, :app
set :unicorn_sleep, 2
end
@ashrithr
ashrithr / sinatra.md
Last active December 31, 2016 04:58
Intro to Sinatra

Sinatra

Installation:

Dependencies: ruby

gem install sinatra
@nbibler
nbibler / gist:5307941
Last active October 7, 2021 09:38
A .powrc file which works with RVM's .rvmrc or .ruby-version (+ .ruby-gemset) configuration files.
if [ -f "$rvm_path/scripts/rvm" ]; then
source "$rvm_path/scripts/rvm"
if [ -f ".rvmrc" ]; then
source ".rvmrc"
fi
if [ -f ".ruby-version" ]; then
rvm use `cat .ruby-version`
fi
Oniguruma Regular Expressions Version 5.9.1 2007/09/05
syntax: ONIG_SYNTAX_RUBY (default)
1. Syntax elements
\ escape (enable or disable meta character meaning)
| alternation
(...) group