Skip to content

Instantly share code, notes, and snippets.

View neuthral's full-sized avatar
🦌
bubbling

neuthral neuthral

🦌
bubbling
View GitHub Profile
@neuthral
neuthral / layout.blade.php
Created September 5, 2019 13:58
Telescope/resources/views/layout.blade.php - assets dirty fix
<!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>
@neuthral
neuthral / getBlockLists.sh
Created July 2, 2019 16:47 — forked from johntyree/getBlockLists.sh
Make one large blocklist from the bluetack lists on iblocklist.com
#!/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 '^#'
@neuthral
neuthral / handler.php
Created June 1, 2019 15:10
Laravel log stack one line
<?php
namespace App\Exceptions;
use Log;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class Handler extends ExceptionHandler
{
@neuthral
neuthral / lazygit
Created December 12, 2018 04:00
Lazy git add, commit, push
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
}
@neuthral
neuthral / vpn_autoconnect.sh
Created November 11, 2018 14:17
vpn autoconnect #cli #network
#! /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
@neuthral
neuthral / vncServer.sh
Created November 11, 2018 14:16
vnc server example #cli #vnc
#!/bin/bash
/opt/TurboVNC/bin/vncserver -3dwm -geometry 1280x720
@neuthral
neuthral / thread.html
Created November 11, 2018 14:16
Easily modify dependencies of a .deb file #deb #cli #debian #ubuntu
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:
@neuthral
neuthral / system_backup.sh
Created November 11, 2018 14:13
system backup script #cli #backup
#!/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 /
@neuthral
neuthral / qemu_example.sh
Created November 11, 2018 14:12
qemu example script #cli #qemu
#!/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
@neuthral
neuthral / nvidia_temp.sh
Created November 11, 2018 14:12
nvidia temp #gpu #cli
#!/usr/bin/env bash
nvidia-settings -q GpuCoreTemp | grep -o '[1-9]*'