These are the steps to build latest libvips (8.7.4) deb package on ubuntu 18.04
##1. install build scripts
# sudo apt install build-essential devscripts
##2. download vips source
package main | |
import ( | |
"net/http" | |
"fmt" | |
"time" | |
) | |
func handler(w http.ResponseWriter, r *http.Request) { | |
fmt.Printf("Request at %v\n", time.Now()) |
#! /bin/bash | |
# Copyright (c) 2021 Karol Babioch <[email protected]> | |
# 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 | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
These are the steps to build latest libvips (8.7.4) deb package on ubuntu 18.04
##1. install build scripts
# sudo apt install build-essential devscripts
##2. download vips source
<?php | |
namespace App\Providers; | |
use Laravel\Nova\Nova; | |
use Laravel\Nova\Cards\Help; | |
use Illuminate\Support\Facades\Gate; | |
use Laravel\Nova\NovaApplicationServiceProvider; | |
class NovaServiceProvider extends NovaApplicationServiceProvider |
# Arch Linux installation procedure on a Lenovo ThinkPad X200s | |
# BIOS boot (no UEFI), SSD + LVM + LUKS + TRIM + discards | |
# Randomize (or zero) drive contents | |
dd if=/dev/urandom of=/dev/sda | |
# Create GPT and partitions | |
# Use gdisk to ensure proper partition alignment | |
gdisk /dev/sda | |
# 100MB boot partition on /dev/sda1 type 8300 |
altscreen on | |
hardstatus on | |
hardstatus alwayslastline | |
startup_message off | |
termcapinfo xterm ti@:te@ | |
hardstatus string " %{= kC}%-w%{.rW}%n %t%{-}%+w %=%{..C} %H %{..C} %m/%d " | |
defscrollback 1000 | |
# Bind C-a v to copy buffer to Mac OS X clipboard. | |
bind v eval "writebuf" "exec sh -c 'pbcopy < /tmp/screen-exchange'" |
#Country ban with UFW#
Grab your different country ip addresses and save as Linux IPTables
http://www.ip2location.com/free/visitor-blocker
##Add country## Run the following command
#!/bin/bash | |
# proxvm | |
# Output in specifed format (default csv) all virtual machines on proxmox 4+ | |
SERVER=localhost | |
USERNAME=apiread@pve | |
PASSWORD=123456 | |
FORMAT=csv | |
while [[ $# > 0 ]]; do | |
key="$1" |
.vagrant |
<?php | |
/* | |
* This file is part of the Symfony package. | |
* | |
* (c) Fabien Potencier <[email protected]> | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this source code. | |
*/ |