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
<!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> |
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 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 '^#' |
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\Exceptions; | |
use Log; | |
use Exception; | |
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; | |
class Handler extends ExceptionHandler | |
{ |
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
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 | |
} |
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 | |
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 |
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 | |
/opt/TurboVNC/bin/vncserver -3dwm -geometry 1280x720 |
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
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: |
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 nice tar czf /media/bender/STOREJET/system_backup.tar.gz --exclude=/home \ | |
--exclude=/media --exclude=/dev \ | |
--exclude=/mnt --exclude=/sys \ | |
--exclude=/run --exclude=/proc / |
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 | |
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 |
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 | |
nvidia-settings -q GpuCoreTemp | grep -o '[1-9]*' |