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"' |
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 |
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 |
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" |
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; |
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; |
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
let popHandler = () => { | |
document.getElementById("id22a").click(); // click on your stupid fake go back button | |
} | |
window.addEventListener('popstate', popHandler, {once: true}) | |
window.history.pushState(null,null,null) |
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 | |
echo "Starting fresh containers for DEVELOPMENT" | |
docker/variables.sh dev.env | |
docker-compose -f docker/dev/docker-compose.yml up --build --remove-orphans |
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
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.Locale; | |
import java.util.PropertyResourceBundle; | |
import java.util.ResourceBundle; | |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# Check if browser support WebP images | |
RewriteCond %{HTTP_ACCEPT} image/webp | |
# Check if WebP replacement image exists | |
RewriteCond %{DOCUMENT_ROOT}/$1.$2.webp -f | |
# Serve WebP image instead | |
RewriteRule (.+)\.(jpe?g|png)$ $1.$2.webp [T=image/webp,E=accept:1] | |
</IfModule> | |
<IfModule mod_headers.c> |