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
| redis-cli -h <redis-host> -n <redis-db> --raw hgetall <redis-hash-name> > output.txt |
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
| $> npm get registry | |
| https://registry.npmjs.org/ | |
| $> npm adduser | |
| Username: jtemplet | |
| Password: <password> | |
| Email: <email> | |
| $> npm login | |
| Username: jtemplet |
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/env ruby | |
| require 'rubygems' | |
| require 'git' | |
| require 'nokogiri' | |
| def get_git_config(git_base) | |
| config_vals = Hash.new | |
| token = git_base.config['pivotal.api-token'] | |
| proj_id = git_base.config['pivotal.project-id'] |
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
| import com.thoughtworks.selenium.*; | |
| import org.junit.After; | |
| import org.junit.Before; | |
| import org.junit.Test; | |
| import java.util.regex.Pattern; | |
| import org.openqa.selenium.internal.seleniumemulation.GetHtmlSource; |