View gcp-storage-assets.sh
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/sh | |
export ASSETS_FOLDER="../.next/static" | |
export GCP_BUCKET="eu.apps.trisbee.com/pay" | |
export VERSION="test-gzip-3" | |
TIME_START=$(date +%s) | |
gsutil -m -q \ | |
cp -r -z "js,css,html,json" \ |
View myFAQ.js
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 my wanna be database | |
// | |
// a) I can turn off/on every faq item for each individual country | |
// b) all locales are by default handled via lingui, and there are no duplicates | |
// c) it can be easily refactored to API response in future :) | |
// | |
export const faqItems = [ | |
{ | |
id: 'whenMoney', |
View .bash_aliases
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
function compress () { | |
if [ -z "$1" ]; then | |
# display usage if no parameters given | |
echo "Usage: compress <path/folder-or-file> <new-file.tar.gz>" | |
return 1 | |
fi | |
tar cf - $1 -P | pv -s $(du -sb $1 | awk '{print $1}') | gzip > $2 | |
} |
View domains.txt
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
# gmail typos | |
gmall.com,gmail.com | |
gmeil.com,gmail.com | |
gmaol.com,gmail.com | |
gnail.com,gmail.com | |
gmaii.com,gmail.com | |
gmail.comm,gmail.com | |
gmail.con,gmail.com | |
gmaiiil.com,gmail.com | |
gmil.com,gmail.com |
View .bash_aliases
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
# system | |
alias apt='echo "apt"' | |
alias sudo='echo "sudo"' | |
alias apt-get='echo "apt-get"' | |
alias uname='echo "uname"' | |
alias service='echo "service"' | |
alias du='echo "du"' | |
alias df='echo "df"' | |
alias btrfs='echo "btrfs"' | |
alias shred='echo "shred"' |
View gist:e229888c7cb8a400851976dd59f029ca
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
# Deployment | |
*Build action* process: | |
``` | |
# copy database parameters | |
cp "$DPSETTINGSPATH" docroot/sites/default/settings.production.php | |
# fix chmods | |
chmod 644 docroot/sites/default/settings.production.php |
View aws_linux_docker_install.sh
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
#!/usr/bin/env bash | |
sudo amazon-linux-extras install docker -y | |
sudo systemctl enable docker | |
sudo systemctl start docker | |
sudo service docker start | |
DOCKER_COMPOSE_VERSION=$(curl -s https://api.github.com/repos/docker/compose/releases/latest | sed -n 's/.*tag_name":\s"\(.*\)".*/\1/p' | head -1) | |
sudo curl -L https://github.com/docker/compose/releases/download/$DOCKER_COMPOSE_VERSION/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose |
View mojave.sh
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 | |
readonly VM_RES="1366x768" | |
readonly NAME="Hackintosh" | |
VBoxManage modifyvm "$NAME" --usbxhci on --firmware efi --chipset ich9 --mouse usbtablet --keyboard usb | |
VBoxManage setextradata "$NAME" "CustomVideoMode1" "${VM_RES}x32" | |
VBoxManage setextradata "$NAME" VBoxInternal2/EfiGraphicsResolution "$VM_RES" | |
VBoxManage modifyvm "$NAME" --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff | |
VBoxManage setextradata "$NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" | |
VBoxManage setextradata "$NAME" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" |
View DevTools.java
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
package helper; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
public final class DevTools | |
{ | |
public static String dump(Object stuff) throws JsonProcessingException { | |
System.out.println(convertObject(stuff)); | |
return null; |
View RouterFactory.php
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
<?php | |
namespace App; | |
use Nette; | |
use Nette\Application\Routers\RouteList; | |
use Nette\Application\Routers\Route; | |
use Kdyby\Doctrine\EntityManager; | |
use App\Model\CatalogModel; | |
use App\Model\PageModel; |
NewerOlder