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
abusaidm.html-snippets | |
akamud.vscode-theme-onedark | |
alefragnani.Bookmarks | |
alefragnani.project-manager | |
bam.vscode-file-templates | |
batisteo.vscode-django | |
christian-kohler.npm-intellisense | |
christian-kohler.path-intellisense | |
codezombiech.gitignore | |
DavidAnson.vscode-markdownlint |
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 | |
(set -x; brew update;) | |
(set -x; brew cleanup;) | |
#(set -x; brew cask cleanup;) | |
red=`tput setaf 1` | |
green=`tput setaf 2` | |
reset=`tput sgr0` |
Forked from CSS-Tricks's Pen Collapsing Margins: Vertical.
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
# Git over http setting | |
#Set this to the root folder containing your Git repositories. | |
SetEnv GIT_PROJECT_ROOT E:/GitRepos | |
# Set this to export all projects by default (by default, | |
# git will only publish those repositories that contain a | |
# file named “git-daemon-export-ok” | |
SetEnv GIT_HTTP_EXPORT_ALL | |
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
-- This script is used to analyze tcp stream from the input | |
-- libcap file. | |
-- This scirpt current only works well with tshark | |
-- Usage: | |
-- tshark -X lua_script:TcpStreamAnalyze.lua -r inputfile -R display_filter | |
do | |
filter = "ip.addr == 192.168.201.53 && ip.addr == 192.168.201.46 && tcp.port == 80" | |
local streams_table = {} -- table to store all tcp streams |
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
-- A simple script to analyze Tcp Sequence Numbers | |
-- Usega: wireshark -X lua_script:TcpSeqRetrans.lua | |
-- open a pcap file in wireshark, and then select | |
-- the 'TOOLS/Tcp Sequence Analyze' menu. | |
-- menu function | |
function tsa_menu_func() | |
-- tsa analyze function | |
function tsa_do(ip1, ip2) |
NewerOlder