-
There was a library I remember seeing that implemented some measure of chaining (similar to JQuery's?), might have been related to futures? Dunno.. should find it again.
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
Source: http://news.ycombinator.com/item?id=1176294 | |
andrewljohnson 715 days ago | link | |
0. The zeroth rule of SEO is get your site listed for a search for your site. If your site is bobsfishingtips.com, make sure if someone searches for Bob's Fishing Tips, you get found. This means simply getting at least one real site to link the name of your site to you, or maybe a couple sites if you have some common word like Yelp. | |
1. After that, make sure people link to you with proper anchor text for other keywords. If you want people to search for "fishing tips" and find you, then several people will need to link you something like this: | |
This site has great <a href=http://www.mysite.com>fishing tips</a>. |
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
rails g model identity name:string email:string password_digest:string |
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 | |
echo "-----------------------------------------------" | |
echo "A very simple script to make nmap scanning a little quicker to kick off" | |
echo "By Glenn '/dev/alias' Grant (devalias.net)" | |
echo "v0.3" | |
echo "-----------------------------------------------" | |
_iphost=$1 | |
_now=$(date +"%Y%m%d-%H%M") | |
_nmapopts="-A -vvv ${@:2}" | |
_nmapoptshidden="--webxml" |
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
# Reverse-SecureString | |
# Version: 1.0 (20130729) | |
# Created By: Glenn 'devalias' Grant (http://devalias.net) | |
# License: The MIT License (MIT) - Copyright (c) 2013 Glenn 'devalias' Grant (see http://choosealicense.com/licenses/mit/ for full license text) | |
function Reverse-SecureString([string]$secureString,[string]$key) | |
{ | |
$objSecString=ConvertTo-SecureString -String $secureString -Key ([Byte[]]$key.Split(" ")) | |
$secString=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($objSecString) | |
$plaintext=[System.Runtime.InteropServices.Marshal]::PtrToStringAuto($secString) | |
return $plaintext |
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
@echo off | |
@rem ---------------- | |
@rem Config - Banner | |
@rem ---------------- | |
set BAT_VER=0.1 (20130703) | |
set BANNER_DASH=-------------------------------- | |
set BANNER_NAMEVER=Erpscan Automator v%BAT_VER% | |
set BANNER_BY=Created By: Glenn 'devalias' Grant (http://devalias.net) | |
set BANNER_UPDATES=Updates at: https://gist.github.com/alias1/6118709 | |
set BANNER_LICENSE=License: The MIT License (MIT) - Copyright (c) 2013 Glenn 'devalias' Grant (see http://choosealicense.com/licenses/mit/ for full license text) |
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
def enable_ntlm_authentication(user = "", password = "", url = ""): | |
print "[+][devalias.net] Enabling NTLM authentication support" | |
# Import ntlm library | |
try: | |
# import ntlm | |
from ntlm import HTTPNtlmAuthHandler | |
print "[+][devalias.net][NTLM Authentication] NTLM Support Library Loaded!" | |
except ImportError: | |
print "[-][devalias.net][NTLM Authentication] Program could not find module : ntlm (Is the ntlm library installed/available locally?" | |
sys.exit (1) |
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
require 'formula' | |
require 'requirement' | |
class Ruby192EqualGreater < Requirement | |
fatal true | |
# default_formula 'ruby' | |
satisfy { | |
ruby_ver_required = Version.new('1.9.2') |
- Version: 0.2 (20131126)
- Created By: Glenn 'devalias' Grant (http://devalias.net)
- License: The MIT License (MIT) - Copyright (c) 2013 Glenn 'devalias' Grant (see http://choosealicense.com/licenses/mit/ for full license text)
- vFeed URL: https://github.com/toolswatch/vfeed
- vFeed.sh announcement/info: http://blog.devalias.net/post/67532513020/vfeed-wrapper-helper-scripts-for-speed-and-efficiency
- Updated to support vFeed Beta v0.4.6
OlderNewer