Skip to content

Instantly share code, notes, and snippets.

@kell05
kell05 / mount_cifs_drive.md
Last active August 29, 2015 14:12
Mounting cifs drive

How to mount a drive as adhoc to a dir

id `whoami`
sudo  mount   -t cifs -v  //<drive ip address>/Media -o username=<drive user>,password=<drive passwd>,uid=1000,gid=1000 /home/User/Media/
Ok apologies if this is a bit long. I scraped much of it from notes (I added the swear words!) and some from my dev experience.
Think like a user. A person goes to your website to accomplish a goal (buy something, find the cheapest price for something, get informed on the product etc) design the site to meet the goals of the user.
Remember a website is just text, pictures, etc generated by a machine. No one cares if a machine says please or thank you. Customer Service assumes some sort of human interaction, every instance of customer service should be considered a FAILURE. Every time a customer has to contact a human means that something could not be accomplished via the website/application, this takes more time to accomplish, more frustrating. This leads to customer being less likely to buy the product. From the sellers perspective the less people they need to pay to answer questions. If you need customer service pick up the phone.
A website can not treat you as a human and I have never closed a ta
@kell05
kell05 / gist:1242391
Created September 26, 2011 14:45
Trim Strings (Removal of prepending and appending white space)
sub trim($) {
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}
@kell05
kell05 / CurrentDate.pl
Created November 23, 2011 11:25
Returns the current date in yyyymmdd format
sub current_date{
my ($d,$m,$y) = (localtime)[3,4,5];
# Normalise dates
($m+=1,$y+=1900);
# Check prefix with zero
$m = "0$m" if ($m < 10);
$d = "0$d" if ($d < 10);
#!/bin/bash
cd `ls -1t | sed -n 1p` # cd to latest dir
unzip *.zip -d deploydir/
// http://www.roseindia.net/java/example/java/io/java-write-to-file.shtml
// Tidy up the syntax by writting it this way...
// Check if fd can be a File obj or the textual name of the file
// http://docs.oracle.com/javase/1.4.2/docs/api/java/io/FileOutputStream.html
BufferredWriter buffWrite = new BufferredWriter(new FileOutputStream(fd));
@kell05
kell05 / gist:1875618
Created February 21, 2012 10:14
Passing regex
# http://stackoverflow.com/questions/125171/passing-a-regex-substitution-as-a-variable-in-perl
$pattern = qr/foo/;
print "match!\n" if $text =~ $pattern;
@kell05
kell05 / config.ru
Created March 7, 2012 14:13
Rails Lightweight Stack. Most of this is detailed on Crafting Rails Applications - http://pragprog.com/book/jvrails/crafting-rails-applications
# Run this file with `RAILS_ENV=production rackup -p 3000 -s thin`
# Be sure to have rails and thin installed.
require "rubygems"
# We are not loading Active Record, nor the Assets Pipeline, etc.
# This could also be in your Gemfile.
gem "actionpack", "~> 3.2"
gem "railties", "~> 3.2"
# The following lines should come as no surprise. Except by
@kell05
kell05 / gist:2881906
Created June 6, 2012 13:38
Redirecting Stdout to string
# For internal code
module Kernel
def capture_stdout &block
out = StringIO.new
$stdout = out
yield
return out
ensure
$stderr = STDOUT
end
# Example 1
def file_read(filename)
file = File.new(filename,'r')
yield file # file is the variable passed into the block (anything between do and end is a block) f is the variable used the access this in example 1 usage.
file.close
end
# Example 1 usage
file_read('temp.rb') do |f| # f is the file descriptor for accessing methods on the file
puts f.read # reads the whole file as a string puts is essentially println in java