I hereby claim:
- I am neuthral on github.
- I am greenlion (https://keybase.io/greenlion) on keybase.
- I have a public key ASBxkjeTDfLFboh9h35hqNAYxfJepggbh59TYgHuFc23Nwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <!-- Meta Information --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta name="csrf-token" content="{{ csrf_token() }}"> | |
| <link rel="shortcut icon" href="telescope.ico"> | |
| <title>Telescope{{ config('app.name') ? ' - ' . config('app.name') : '' }}</title> |
| #!/usr/bin/env sh | |
| # Download lists, unpack and filter, write to stdout | |
| curl -s https://www.iblocklist.com/lists.php \ | |
| | sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \ | |
| | xargs wget -O - \ | |
| | gunzip \ | |
| | egrep -v '^#' |
| <?php | |
| namespace App\Exceptions; | |
| use Log; | |
| use Exception; | |
| use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; | |
| class Handler extends ExceptionHandler | |
| { |
| Building off of @Gavin's answer: | |
| Making lazygit a function instead of an alias allows you to pass it an argument. I have added the following to my .bashrc (or .bash_profile if Mac): | |
| function lazygit() { | |
| git add . | |
| git commit -a -m "$1" | |
| git push | |
| } |
| #! /bin/bash | |
| REQUIRED_CONNECTION_NAME="Wired connection 1" | |
| VPN_CONNECTION_NAME="bender" | |
| activ_con=$(nmcli con status | grep "${REQUIRED_CONNECTION_NAME}") | |
| activ_vpn=$(nmcli con status | grep "${VPN_CONNECTION_NAME}") | |
| if [ "${activ_con}" -a ! "${activ_vpn}" ]; | |
| then |
| #!/bin/bash | |
| /opt/TurboVNC/bin/vncserver -3dwm -geometry 1280x720 |
| Ubuntu Forums | |
| HOWTO: Easily modify dependencies of a .deb file | |
| Printable View | |
| Show 75 post(s) from this thread on one page | |
| Page 1 of 3123NextLastLast | |
| December 10th, 2007Loevborg | |
| HOWTO: Easily modify dependencies of a .deb file | |
| Save the following script as "videbcontrol", | |
| Code: |
| #!/usr/bin/env bash | |
| sudo nice tar czf /media/bender/STOREJET/system_backup.tar.gz --exclude=/home \ | |
| --exclude=/media --exclude=/dev \ | |
| --exclude=/mnt --exclude=/sys \ | |
| --exclude=/run --exclude=/proc / |
| #!/bin/bash | |
| configfile=/etc/vfio-pci0.cfg | |
| vfiobind() { | |
| dev="$1" | |
| vendor=$(cat /sys/bus/pci/devices/$dev/vendor) | |
| device=$(cat /sys/bus/pci/devices/$dev/device) | |
| if [ -e /sys/bus/pci/devices/$dev/driver ]; then | |
| echo $dev > /sys/bus/pci/devices/$dev/driver/unbind |