Trac startup script.
Authorguda
I have cracked one bulgarian software for window
I want to start such a list so I will become maintain a Bulgarian list here which I will use for my website www.cenite.com
As a base source I will use this list here
Please submit your suggestions.
Note: I have removed a lot of words from the starting list.
Continue reading
Wow. What a nice idea.
http://code.google.com/p/quipt/
Note: if you want to make the test.html to work checkout and test on http://… it is some beta but it works great only in Firefox
My colegue bl8cki is real fan of making screenshots from web browsers. Those days he tries the python solution. And today he surprised all with one very nice firefox plugin
With this plugin you can use firefox with some command line parameters to make screenshots.
Here is how we will use it
- start the xvfb
mkdir /tmp/tmpfbdir Xvfb :1 -ac -screen 0 1600x1200x24 -fbdir /tmp/tmpfbdir
- run the firefox
firefox-2 --display=:1 --no-xshm -height 1024 -width 768 -savepng http://www.cenite.com
Windows solutions
http://webscripts.softpedia.com/script/Image-Galleries/Image-Tools/Website-Thumb-Generator-40121.html
http://web-tourist.net/login/login/view.php?st=1193 h
ttp://www.download32.com/website-thumbnail-generator-software.html
http://www.zubrag.com/scripts/website-thumbnail-generator.php
Multiplatform – I cant manage to compile it:
http://cutycapt.sourceforge.net/ http://iecapt.sourceforge.net/
Python:
http://www.burtonini.com/blog/computers/mozilla-thumbnail-20040614?showcomments=yes#
Firefox
http://pearlcrescent.com/products/pagesaver/
https://addons.mozilla.org/en-US/firefox/addon/1146
Another Linux/Ubuntu way:
aptitude install xvfb xfs xfonts-scalable xfonts-100dpi libgl1-mesa-dri subversion libqt4-webkit libqt4-dev g++
svn co https://cutycapt.svn.sourceforge.net/svnroot/cutycapt
cd cutycapt/CutyCapt
qmake
make
xvfb-run --server-args="-screen 0, 1024x768x24" ./CutyCapt --url=http://www.google.com --out=example.png
xvfb-run --server-args="-screen 0, 1024x768x24" ./CutyCapt --url=http://www.google.com --out=example.html --out-format=html
http://khtml2png.sourceforge.net/index.php?page=faq
Here is how to make random images generation for your website.
First you must put your images in a folder /public/images/random_images or what ever.
Second you put images there and mark the filenames with a prefix, which image to which section will be visible on.
index_bottom_1.jpg -> for the index page on the bottom :)
index_bottom_2.jpg -> for the index page on the bottom
featured_art_1.jpg -> some panel.
featured_art_2.jpg -> some panel.
and so on…
Paste this method in your base controller. This method will be called to make list for a specific image folder and “filter” the images that are supposed to be showed in the different regions in @variables.
before_filter :init_random_images protected # :) be carefull for this if you copy paste def init_random_images # collect some static images web_root = "images/imagestorage/random_images" all_images = Dir["#{RAILS_ROOT}/public/#{web_root}/*.jpg"] @random_head_images = [] @random_indexbtm = [] @random_featured = [] @random_sales = [] @random_services = [] @random_framing = [] @random_artistcollection = [] all_images.each do |f| if File.stat(f).file? @random_head_images << ("/#{web_root}/" + File.basename(f)) if f =~ /head_images_/ @random_indexbtm << ("/#{web_root}/" + File.basename(f)) if f =~ /indexbtm_/ @random_featured << ("/#{web_root}/" + File.basename(f)) if f =~ /featured_/ @random_sales << ("/#{web_root}/" + File.basename(f)) if f =~ /sales_/ @random_services << ("/#{web_root}/" + File.basename(f)) if f =~ /services_/ @random_framing << ("/#{web_root}/" + File.basename(f)) if f =~ /framing_/ @random_artistcollection << ("/#{web_root}/" + File.basename(f)) if f =~ /artistcollection_/ end end
Then paste this as a helper or in the base controller, to use it in your views. The method will give you from the images
array, count
number of images.
helper_method :get_random_image def get_random_image(images, count) requested_images = [] images_copy = images.clone [images_copy.size, count].min.times do index = rand(images_copy.size) requested_images << images_copy[index] images_copy.delete_at(index) end requested_images.flatten.compact end
here is an example how to use it.
<div id="static_logo" style="background:url(<%= get_random_image(@random_sales, 1) %>) no-repeat scroll left top;">
Future optimization
Put some caching, not to make
Dir["#{RAILS_ROOT}/public/#{web_root}/*.jpg"]
on every request.
10x Bl8cki to the nice code optimizations :)
I cant live without vim. Today is the day I understand this and have install vim on my home windows:) I hope that no one will start it accidently.
Ok. Here i will keep track of the commands that I use in vim.
configuring vim and nice screenshots tutorial
Here is more on the topic
- Open many files in tabs: vim -p file*
- Search & Replace: %s/something/nothing/g
- cntrl-space in vim is: cntr-n / cntrl-p
load words from all pl/pm files: ctags *.p?
- windows: :split / :vsplit
cntr-w – switch
:close
:only - tabs:
set tabstop=2
set autoindent
<< >> size is controller:shiftwidth=4
VimDiff
Keyboard Shortcuts:
do – Get changes from other window into the current window.
dp – Put the changes from current window into the other window.
]c – Jump to the next change.
[c – Jump to the previous change.
Ctrl W + Ctrl W – Switch to the other split window.
I have a case where the user must select items from a basket and use them with different forms.
It would be easy if the form could be one – less support.
I am starting with those two forms
- Helper form – Form with checkboxes
- Action form – the form that will do the real action based on the selected items in the helper form
Here is how it looks the helper form. All the checkboxes are tagged with the class=”selectable”. Here is rails example but you can implement it pure html.
<%= check_box_tag('selected[]', true, image.selected?, :class=>"selectable") %>
Then we can select all the checkboxes with this javascript.
var make_to_hidden = $$('input.selectable');
Put on your action form an id so we can access it easy in this case:
Lets add those checkboxes from the first form to the real action form with this javascript function
function import_selected_basket() { var make_to_hidden = $$('input.selectable'); make_to_hidden.each(function(item) { if (item.checked) { var new_item = new Element('input', { 'type': 'hidden', name: item.name, value: item.value }) $('mail_form').appendChild(new_item) } });
Its aways nice to know whats going on in rails field
http://railsenvy.com/2008/6/2/Railsconf-videos
Whats new for me was flog:
- http://on-ruby.blogspot.com/2007/12/flog-profiling-complexity.html
- http://ruby.sadi.st/Flog.html
Some more video links
От известно време си имаме на http://www.cenite.com чисто нова търсачка.
Преди беше просто досадно да се търси в сайта и макар, сайта върши работа.
Резултатите с новата търсачка са налице, вижте разликата:
- Преди за един резултат се чакаше приблизително от 2 до 4 (олеле) секунди.
- Търсеше се само в името на продукта
Сега:
- Търсенето става мигновенно – повече време отнема да се изобрази страницата от броузера :)
- Търсенето е едновременно в заглавието на продукта, както и в описанието му, като се дава превес в резултатите съдържащи ключовите думи в името на продукта.
- Може да се избира по кой полета да се търси, макар че не ми е останало време да публикувам HELP към търсачката.
- Сортиране по точност на намерите резултати.
- Отпаднаха притесненията за Иванчо ;drop table students;
Изглежда и посетителите също оценяват предимствата на новото търсене, от 1000 посетителя на ден в момента са над 2500 като всеки ден се увеличават.
© 2025 Gudasoft
Theme by Anders Norén — Up ↑