OS:
CentOS6
Output of uname -a
:
$ uname -a
Linux localhost.localdomain 2.6.32-358.2.1.el6.x86_64 #1 SMP Wed Mar 13 00:26:49 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
Chrome version:
require 'test/unit' | |
# implementation | |
class Duration | |
def in_seconds(raw_duration) | |
match = raw_duration.match(/PT(?:([0-9]*)H)*(?:([0-9]*)M)*(?:([0-9.]*)S)*/) | |
hours = match[1].to_i | |
minutes = match[2].to_i | |
seconds = match[3].to_f | |
seconds + (60 * minutes) + (60 * 60 * hours) |
Exec { | |
logoutput => 'on_failure' | |
} | |
exec { 'some_command' : | |
#..., | |
logoutput => true | |
} |
<?xml version="1.0"?> | |
<bookstore specialty="novel"> | |
<book style="autobiography"> | |
<author> | |
<first-name>Joe</first-name> | |
<last-name>Bob</last-name> | |
<award>Trenton Literary Review Honorable Mention</award> | |
</author> | |
<price>12</price> | |
</book> |
#Mounting the share is a 2 stage process: | |
# 1. Create a directory that will be the mount point | |
# 2. Mount the share to that directory | |
#Create the mount point: | |
mkdir share_name | |
#Mount the share: | |
mount_smbfs //username:password@server.name/share_name share_name/ |
wget https://chromedriver.googlecode.com/files/chromedriver_linux64_2.3.zip | |
unzip chromedriver_linux64_2.3.zip | |
sudo cp chromedriver /usr/bin/chromedriver | |
sudo chown root /usr/bin/chromedriver | |
sudo chmod +x /usr/bin/chromedriver | |
sudo chmod 755 /usr/bin/chromedriver |
OS:
CentOS6
Output of uname -a
:
$ uname -a
Linux localhost.localdomain 2.6.32-358.2.1.el6.x86_64 #1 SMP Wed Mar 13 00:26:49 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
Chrome version:
class MyResource | |
include HTTParty | |
debug_output $stdout # <= will spit out all request details to the console | |
#... | |
end |
p (1..100).map{|i|o="";o<<"Fizz" if i%3==0;o<<"Buzz" if i%5==0;o<<i.to_s if o=="";o} | |
#84 chars |
require 'net/http' | |
class HttpClient | |
def initialize(base_url, username = nil, password = nil) | |
@base_url = base_url | |
@username = username | |
@password = password | |
end | |
def get(path, headers = {}) |
curl -H 'Content-Type:application/xml' -X PUT -d '<?xml version="1.0" encoding="UTF-8" standalone="yes"?><thing></thing>' http://192.168.0.1:8080/some/resource/ --user admin:password |