-
Info:
-
Command:
-
pacaur -S terminus-font
-
This file contains hidden or 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
# https://karabiner-elements.pqrs.org/docs/json/location/ | |
{ | |
"title": "Launch apps", | |
"rules": [ | |
{ | |
"description": "Launch iTerm with command + shift + t", | |
"manipulators": [ | |
{ | |
"from": { |
This file contains hidden or 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/sh | |
git clone --bare [email protected]:lidopaglia/dotfiles.git $HOME/.dotfiles | |
function dot { | |
/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME $@ | |
} | |
mkdir -p .dotfiles-backup | |
dot checkout |
This file contains hidden or 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 | |
// set the output-file | |
$outputfile = "/var/www/nyt/nyt.jpg"; | |
// set path to todays NYT frontpage | |
$pathToPdf="https://static01.nyt.com/images/".date('Y')."/".date('m')."/".date('d')."/nytfrontpage/scan.pdf"; | |
// check if there is any today | |
$file_headers = @get_headers($pathToPdf); |
This file contains hidden or 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
# Gnome Terminal Gruvbox | |
# | |
# Import/Export Gnome Terminal profile(s) with: | |
# | |
# dconf dump /org/gnome/terminal/legacy/profiles:/:a49b6940-a9ef-4922-b874-574cad1da151/ > ~/Downloads/gruvbox.dconf | |
# dconf load /org/gnome/terminal/legacy/profiles:/:a49b6940-a9ef-4922-b874-574cad1da151/ < ~/Downloads/gruvbox.dconf | |
# | |
# https://gist.github.com/reavon/0bbe99150810baa5623e5f601aa93afc | |
[/] |
Jack Rhysider, creator of the [Darknet Diaries][10] podcast, was recently interviewed on [Paul's Security Weekly Podcast #702][6] and the following books are [highlighted in the interview][8] as some of Jack's favorite.
- [Countdown to Zero Day: Stuxnet and the Launch of the World's First Digital Weapon][1] by Kim Zetter
This file contains hidden or 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/python2 | |
# -*- coding: utf-8 -*- | |
import sys | |
import getpass | |
import ldap | |
def getLdapUsers(): | |
ldap.set_option(ldap.OPT_X_TLS_REQUIRE_CERT, ldap.OPT_X_TLS_NEVER) | |
l = ldap.initialize('ldaps://ldap.example.com') |