View keyring.rb
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
=begin | |
Your lock key ring correction | |
=end | |
hide_me | |
loop do | |
lastLine = get |
View variables.rb
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
var = "this is a local variable" | |
@var = "this is an instance variable" | |
@@var = "this is a class variable" | |
$var = "this is a global variable" | |
VAR = "this is a constant" | |
def example_one | |
var = "local" | |
p "Yes this #{var} variable can be accessed here" | |
end |
View person.rb
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
class Person | |
def look_around | |
puts "looks around carefully." | |
end | |
def witness_transformation | |
puts "Suddenly, #{@name} transforms into a #{$gender} named #{@new_name} right before your eyes!" | |
end |
View con-remote-example2.ps1
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
function con-remote { | |
# Look for a parameter to be sent for the computer name | |
param( | |
# Supply a computer name parameter | |
$name=$(Write-Host "You must specify the computer name as an argument."), | |
# Supply a routine to perform like OST | |
[string]$arg1 | |
) | |
if ($name -ne $null) { | |
if (Test-Connection -Computername $name -BufferSize 16 -Count 1 -Quiet) { |
View PowerShell-ISE.bat
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
cd C:\ | |
C:\Windows\System32\runas.exe /env /noprofile /user:corp\username "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noprofile -command \"start-process powershell_ise -verb RunAs\"" |
View example.rb
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
10.times do | |
puts "This will be printed 10 times" | |
end |
View Gemfile
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
gem 'jquery-ui-rails' |
View ajax_controller.rb
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
class AjaxController < ApplicationController | |
skip_authorization_check | |
def ncaa_teams | |
if params[:search] | |
like= "%".concat(params[:search].concat("%")) | |
teams = NcaaTeam.where("name like ?", like) | |
else | |
teams = NcaaTeam.all |
View Gemfile
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
gem 'kaminari' # Pagination |
View application_controller.rb
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
# Track request logging during development | |
around_filter :global_request_logging | |
def global_request_logging | |
logger.info "=> USERAGENT: #{request.headers['HTTP_USER_AGENT']}" | |
logger.info "=> REQUEST_FORMAT: #{request.format}" | |
begin | |
yield | |
ensure | |
logger.info "=> RESPONSE_STATUS: #{response.status}" |
NewerOlder