Checking out SugarCRM in terms of features and capabilities:
Helps when you are running Ubuntu on your laptop:
http://www.howtoforge.com/installing-sugarcrm-community-edition-on-ubuntu-8.10
Checking out SugarCRM in terms of features and capabilities:
Helps when you are running Ubuntu on your laptop:
http://www.howtoforge.com/installing-sugarcrm-community-edition-on-ubuntu-8.10
Its interesting that one can still get an adrenalin rush from coding…
Ever wanted to be able to move a set of opening and closing tag from one part of the document to another? Across 100 files?
This was a quick hack I did up over a night in Ruby.
#### Initialisation ############
files = Array.new
filelines = Array.new
locationfiletype = “/home/yuit/*.html”
destinationfolder = “/home/yuit/Desktop/”
loggingfolder = “/home/yuit/Desktop/”#### loading all files into memory ######
files = Dir["#{locationfiletype}"]
files.each do |f|
# puts “#{f}”filename = “#{f}”.split(’/')
filelines = IO.readlines(”#{f}”)
puts “Opening file #{f}”############################################
## initial scanning : Form tag replacement##
############################################
a = 0
foundstarttagsource = false
foundendtagsource = false
foundstarttagdestination= false
foundendtagdestination = false
locationstarttagsource = 0
locationstarttagdestination = 0
locationendtagsource = 0
locationendtagdestination = 0filelines.each do |g|
if “#{g}”.include? “