Rails 6 & Svelte with preloaded data
rails new rails-6-svelte --webpack=svelte
cd rails-6-svelte
rails generate controller welcome index
.rainbow-wrapper { | |
position: absolute; | |
left: 0; | |
right: 0; | |
top: 0; | |
height: 10px; | |
width: 100%; | |
overflow: hidden; | |
} |
#!/usr/bin/env bash | |
if [[ "$1" == "-" ]]; then | |
shift | |
fi | |
if [ -z "$1" ]; then | |
echo "Missing argument USER" | |
exit 1 | |
fi |
#include QMK_KEYBOARD_H | |
// Layers | |
#define _BASE 0 // Base (QWERTY) | |
#define _FN 3 // Function | |
#define BASE DF(_BASE) | |
// Aliases | |
#define ___V___ KC_TRNS |
@ECHO OFF | |
ECHO Flashing file %~1 | |
ECHO. | |
mdloader_windows.exe --first --download "%~1" --restart | |
PAUSE |
rails new rails-6-svelte --webpack=svelte
cd rails-6-svelte
rails generate controller welcome index
// https://www.poebuilds.cc/ | |
(function() { | |
function createElementFromHTML(htmlString) { | |
var div = document.createElement('div'); | |
div.innerHTML = htmlString.trim(); | |
// Change this to div.childNodes to support multiple top-level nodes | |
return div.firstChild; | |
} |
diff --git a/src/scry/completion_provider.cr b/src/scry/completion_provider.cr | |
index 29e0d36..f67438c 100644 | |
--- a/src/scry/completion_provider.cr | |
+++ b/src/scry/completion_provider.cr | |
@@ -1,4 +1,5 @@ | |
require "./log" | |
+require "compiler/crystal/codegen/target" | |
require "compiler/crystal/crystal_path" | |
require "./completion/*" |
#!/bin/sh | |
# Redirect output to stderr. | |
exec 1>&2 | |
# enable user input | |
exec < /dev/tty | |
consoleregexp='^\+.*console\.log(' | |
# CHECK | |
if test $(git diff --cached | grep $consoleregexp | wc -l) != 0 | |
then |
#!/usr/bin/env bash | |
if [ "$1" != "add" ] && [ "$1" != "remove" ] || [ -z "$2" ]; then | |
[ -z "$2" ] && echo "Missing hostname" || echo "Unknown option '$1'" | |
echo "Unknown option '$1'" | |
echo "Usage:" | |
echo " $0 add <hostname>" | |
echo " $0 remove <hostname>" | |
exit 1 | |
fi |
# | |
# Arch Linux / Fedora sudoers entries | |
# | |
sudo tee /etc/sudoers.d/vagrant > /dev/null << EOL | |
# Allow passwordless startup of Vagrant with vagrant-hostsupdater. | |
Cmnd_Alias VAGRANT_HOSTS_ADD = /bin/sh -c echo "*" >> /etc/hosts | |
Cmnd_Alias VAGRANT_HOSTS_REMOVE = /usr/bin/sed -i -e /*/ d /etc/hosts | |
%wheel ALL=(root) NOPASSWD: VAGRANT_HOSTS_ADD, VAGRANT_HOSTS_REMOVE |