Universal login
How to find things in Internet
Arduino
http://www.robotev.com/biblioteka.php
Följ sitt fotbollslag under specialiserade webbplatser.
Vänligen tänk hur ti förbättra denna tjänst i kommentarerna nedan.
| Webbsida | FOTBOLLSLAG |
| http://www.Alltomhacken.se | Alltomhacken.se |
| http://www.alltomhelsingborgif.se | Helsingborg IF |
| http://www.alltomhammarby.se | Hammarby |
| http://www.alltomgais.se | Gais |
| http://www.alltomelfsborg.se | Elfsborg |
| http://www.alltodjurgarden.se, http://www.alltomdjurgården.se, http://www.alltomdjurgarden.se, http://www.alltodjurgården.se | Djurgården |
| http://www.designnews.se | Design news |
| http://www.psspy.se | Dagens PS |
| http://www.alltombrommapojkarna.se | Brommapojkarna |
| http://www.alltomtrelleborgff.se | Alltomtrelleborgff.se |
| http://www.alltomorgryteis.se | Alltomorgryteis.se |
| http://www.xn--alltomrebrosk-nmb.se | Alltomörebrosk.se |
| http://www.alltomorebrosk.se | Alltomorebrosk.se |
| http://www.alltommalmoff.se | Alltommalmoff.se |
| http://www.alltomkalmarff.se | Alltomkalmarff.se |
| http://www.alltomifkgoteborg.se | Alltomifkgoteborg.se |
| http://www.alltomifelfsborg.se | Alltomifelfsborg.se |
| http://www.alltomhalmstadbk.se | Alltomhalmstadbk.se |
| http://www.alltomhacken.se | Alltomhacken.se |
| http://www.alltomgefleif.se | Alltomgefleif.se |
| http://www.allamotornyheter.se | allamotornyheter.se |
| http://www.alltomaik.se | AIK Fotboll |
A lot of work last weeks.
Check those
The interesting think is that two of them are on Rails (www.mebelicomfort.com, shop.djibutzo.com) , one of them is on WordPress and the last one is on some custom PHP framework.
And meanwhile we are doing a lot of refactoring on our company website psspy.se, which finally is starting to look good.
After so much work I think that I will be tired but I am ready now for 6 websites for 1 week.
Usefull tool to find fast the password. http://www.wpacracker.com/
I have start using Pidgin to read blogs, stay online on twitter, and facebook.
I recommend this to all my friends.
Предимства
Недостатъци
Извод
Ако можете изберете друг доставчик.
get the gem from here
http://github.com/timcharper/spork
How to fix the Missing error
http://chrisblunt.com/blog/2009/08/28/rails-configuring-rspec-for-spork/
Check those links if you want to be ontop of the securuty
Faithful to the rule that I must blog everything that took me more than 15min searching in google I am here again.
This time the post is related to my notebook which mousepad doesnt support double tap (poor lenovo :) )
Emulate3buttons – this is the magic key. Wonder how to use it? Just click left+right at the same time.
Also be aware: in the new distros this setting is not changed from xorg.conf check this article
http://www.seebs.net/log/articles/459/disabling-emulate3buttons-on-ubuntuleft+left+right clicks right clicks
The rest is a copy/paste from the post above
The problem is that you can’t just override this in xorg.conf anymore. You need to use xinput. xinput’s powerful, clever, flexible… and totally over the heads of a lot of users. Here’s a script to run from .xinitrc or the equivalent which disables Emulate3Buttons on any input devices which have it. (It’s now called “Middle Button Emulation”, mind.)
#!/bin/sh
xinput list | sed -ne 's/^[^ ][^V].*id=\([0-9]*\).*/\1/p' | while read id
do
case `xinput list-props $id` in
*"Middle Button Emulation"*)
xinput set-int-prop $id "Middle Button Emulation" 8 0
;;
esac
done
How this works: We first obtain a list of ID numbers, disregarding those where the second character on the line was V, because xinput list-props doesn’t work on the "Virtual[...] lines for the generic keyboard and mouse. For each such device, we check to see whether it has the feature; if so, we disable it. (The number 8 indicates that we’re setting an 8-bit value; it doesn’t really matter. The disabled state is 0.)
© 2026 Ivo Bardarov
Theme by Anders Norén — Up ↑