/config/dev.exs
config :logger, level: :info
.iex.exs
Set a directory as a git repo
git init
Stage files to be committed
git add .
Commit files to local database
(On MacOs) | |
You need to create a link to the application and locate it in the local bin folder | |
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime | |
source: | |
http://olivierlacan.com/posts/launch-sublime-text-3-from-the-command-line/ |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Snake Sanders</string> |
Creating Symlink: | |
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/local/bin/airport | |
Example of sniffing in monitor mode: | |
sudo airport en1 sniff 1 | |
This sniffs on channel 1 and saves a pcap capture file to /tmp/airportSniffXXXXXX.pcap (where XXXXXX will vary). | |
You can view this with tcpdump -r <filename> or by opening it in wireshark. |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- Generated by: TmTheme-Editor --> | |
<!-- ============================================ --> | |
<!-- app: http://tmtheme-editor.herokuapp.com --> | |
<!-- code: https://github.com/aziz/tmTheme-Editor --> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>SnakeSnaders</string> |
require "fileutils" | |
# Version 3.1 | |
# | |
# Description: This script solves the problem when opening docx files with the new office 360. Some documents report "Xml parsing error" | |
# This is due to an deprecated xml tag. This script parses the docx and removes them. | |
# | |
# Requires 7zip installed and added to the path. | |
# | |
# usage: |