Get Adobe Flash player
Aug
31
2010
0

cufon – fonts for the people . . . customized wordpress fonts

once upon a time back in ‘99 the first browsers 2 of them , netscape and internet explorer , had some kind of a customized  font support , which worked better in IE (get the font locally and then use it on your tags ) . netscape is a forgotten project but IE didn’t make something with it .

now i recently found something that is working almost perfect in most of the browsers less Internet Explorer :d .

cufón . its use is pretty simple but to implement it in wordpress takes some time especially if you want to use custom fonts for the #storycontent id that wraps around the text blogcontent.  above all, you must find "complete fonts"  for normal, bold and italic style, punctuation and symbols  support. nevertheless there are a lot of options that cufon has to offer to trick wordpress.
 it seems that in opera when you switch in fullscreen , this browser displayes the webpage in "fluid mode" . :(   
anyway beautiful project by Simo Kinnunen , i never thought i would see something like this . 

÷ expand to read more »

Written by ignition at: 03:58:35pm Tuesday, August - 2010 in: www |
Aug
26
2010
0

improved expandable < !--more--> post wordpress blog :)

at last!!!  i managed to get it to work after learning how to use single and double quotes in php , trying to understand a javascript script and searching for the lines to edit the <!–more–> wordpress option .

i hate the <!–more–> wordpress option because it splits the post in two when it sees this tag and throws the second half to trash . google will index only the first half and this s*&^*(#$%^ because i need the page with full posts so i can bring visitors that search randomly word pairs  ;) .

when wordpress publish, everything happens here “site.com/wp-includes/post-template.php”, and when it sees <!–more–> truncates the post then runs this

$output .= apply_filters( ‘the_content_more_link’, ‘ <a href=”‘ . get_permalink() . “#more-$id\” class=\”more-link\”>$more_link_text</a>”, $more_link_text );

we change it into this :

$output .= apply_filters( ‘the_content_more_link’, ‘ <script type=”text/javascript”>$(document).ready(function() { $(\’#expand-’.$id.’\').click(function() { $(\’#more-’.$id.’\').slideToggle(620); var temp= $(\’#expand-’.$id.’\').html() ; if ( temp.search(\’more\’) != -1 ) {  $(\’#expand-’.$id.’\').html( \’<b>&#247; collapse post &#171;</b>\’ ); } else { $(\’#expand-’.$id.’\').html( \’<b>&#247; expand post to read more &#187;</b>\’ );} return false; }); });</script> <div id=”more-’.$id.’” style=” display: none ;”>’.$content[1].’</div> <p title=”click” style=”cursor: help”  id=”expand-’.$id.’”><b>&#247; expand to read more &#187;</b>’, $more_link_text );
 
as you can see half of your content is kept in the second element of the array $content :p . add a jquery framework to the header of the html file . my wordpress transition plugin install it as default and treats  the simple “#” href link weird; . that's why we need a <p> tag .  but if you don't have this plugin installed you can use href :d .

many thanks to Karl Swedberg , his idea is brilliant .

÷ expand to read more »

Written by ignition at: 01:45:35pm Thursday, August - 2010 in: www |
May
24
2010
0

google seo idea working ooops . . .

let’s say you have to do a site with 20-25 pages and each page has less than 1k text . tough one, what should we do ??? google will not index this page always, sometimes maybe will index it who knows? .

but here’s a HINT . use a single Tabbed page & send all the traffic to that page .

scripts and idea briefly :

var origWidth, origHeight;
if (document.layers) {
origWidth = window.innerWidth; origHeight = window.innerHeight;
window.onresize = function() { if (window.innerWidth != origWidth || window.innerHeight != origHeight) history.go(0); }

} var cur_lyr; // holds id of currently visible layer

function swapLayers(id) { if (cur_lyr) hideLayer(cur_lyr); showLayer(id); cur_lyr = id; }

function showLayer(id) { var lyr = getElemRefs(id); if (lyr && lyr.css) lyr.css.visibility = “visible”; }

function hideLayer(id) { var lyr = getElemRefs(id); if (lyr && lyr.css) lyr.css.visibility = “hidden”; }

function getElemRefs(id) { var el = (document.getElementById)? document.getElementById(id): (document.all)? document.all[id]: (document.layers)? document.layers[id]: null;
if (el) el.css = (el.style)? el.style: el; return el; }

then play with layers IDs  swapLayers(‘Player_A’);showLayer(‘P_B’); return false;  , use div classes, add in your body  onload=”swapLayers(‘load_default_layer’);” and that’s all . OR you may use this wonderful solution “http://www.barelyfitz.com/projects/tabber/” with CSS styling . you may get impressive results . ;)

one more thing . if you want quick 1st page 1st position google result to your “page” for several keywords you should buy a domain containing the keywords you want, to obtain a good position . buy a  domain like keyword1.keyword2.keyword3.keyword4.com and redirect as parked_domain to “page” .  you may also add subdirectories /keyword5/keyword7/~keyword10 .  stylish ;) .

÷ expand to read more »

Written by ignition at: 01:56:55am Monday, May - 2010 in: www |
May
21
2010
0

headphones sound music how to choose

one simple “best” way is to buy the most expensive pair of headphones not ‘earphones’, which has the impedance around ~50 Ohms !!! this type of headphones fits on any portable audio device (iPod, Any cell-phone,laptop soundcard ) and offers impressive sound-quality .

any headphone with a higher impedance needs a headphone amplifier and that means more money .

good headphones brands are Grado, Sennheiser , AKG . else you may buy the rest …….

Written by ignition at: 05:08:31pm Friday, May - 2010 in: sounds |
May
18
2010
0

pgp mail fun hidden headers Thunderbird & Enigmail

tools needed : gnupg / thundirbird / enigmail

remove these chars  “Version: GnuPG v”  VERSION ” (“PRINTABLE_OS_NAME “)”  from gnupg-2.x.x\g10\armor.c  and ./configure; make; make install

create your gnupg key > use –s2k-count 65011712 :d

create in thundirbird >preferences >advanced > empty String “general.useragent.override” .

configure your enigmail plugin (uncheck “add enigmail comment in signature”)  and manage your pgp keys , then you should have a beautiful encrypted message with stealth headers.

Written by ignition at: 07:50:19pm Tuesday, May - 2010 in: software |
May
16
2010
0

virtualbox slackware 13.x virtual machine ping !!!

why ? because in VMWare 7, X doesn’t start i forgot the error . startx does not start :p . so i went to the free solution, Sun’s Virtualbox .

my setup is an old laptop running Windows Xp x64 , pppoe connection, firewall UP on all network interfaces :d . being a beginner i can tell you this is a nice piece of software, get rid of vmware . it’s free and works faster ;) . a full installation of slackware was quick, configuration easy and had no problems . now how to get a ping working from the virtualbox using “VirtualBox Host-Only Ethernet Adapter” (no VirtualBox NAT or Bridged adapter which is a kind of a host-only-eth) . first of all, I always hated the NAT solution offered by any Windows OSes ( 2000,XP,Vista, and probably 7, too) . i’ve used a little routix , wingate and others (google a bit) but wingate it’s wonderful .it is the best of all server solutions because it has a lot of options that are working. installation of wingate is easy so we shall skip to the configuration of slackware so we can ping outside . i think someone else can make this easier, but hey i am not a PRO . sorry :( . this page helped me out configuring the slackware virtual machine and you should find enough details to understand what i did . here is one of the latest wingate .

now. we bridge the “Local Area Connection”(Xp) and “VirtualBox Host-Only Ethernet Adapter” (VB) set an ip for this bridged network (192.168.5.7) then dial our pppoe connection . switch to slackware virtual-machine (run netconfig to waste some time), get tunctl *1, install it and

mkdir /dev/net ; mknod /dev/net/tun c 10 20

tunctl -t tap0 -u root ; brctl addbr br0

ifconfig eth0 0.0.0.0 promisc

brctl addif br0 eth0

ifconfig br0 192.168.5.17 netmask 255.255.255.0

addif br0 tap0 ; ifconfig tap0 up

route add default gw 192.168.5.7

____________________________________________________________________

add these lines or some of them to rc.local or another startup file, two nameservers in your resolv.conf , ping www.imissyou.org !!!! and we are done . that would be all.

*1 if you don’t have any idea about how to have some files available on your virtualmachine without network-drivers or shared-folders here’s one . get free iso creator , make an iso file with the files you want on your virtualmachine then mount your new iso image machine>settings>storage>Add cd/dvd device>media manager>add iso file .

÷ expand to read more »

Written by ignition at: 03:42:54pm Sunday, May - 2010 in: software |
May
16
2010
--

image changer wordpress blog

there are many ways to change your image-background , i found a lot of scripts that do a lot of things and their use is complicated . one simple way is to use custom file-names and variables  .  this works pretty well , use it in your “header.php” theme file :

<?php  // add your files ….
$bg_image=rand(1, 180);
echo “<style type=\”text/css\”> body { background: url(http://www.site.org/blog/wp-content/themes/images/load/custom”.$bg_image.”.jpg) no-repeat fixed center center #000; } </style> \n”
?>

Written by ignition at: 03:39:04pm Sunday, May - 2010 in: www |
May
16
2010
0

sound setup how to choose

if you love sounds clean sharp warm sounds, if you are a little “audiophile”, if sounds are giving you moods then use winamp or windows media player with the adaptX plugin add some of these , get yourself a very very good soundcard , an amplifier  and  2 speakers from here or from here or here , or maybe here and you will have impressive results .  else go for this .

choice of the right speakers is a problem so read some articles from here . hope it helps.

Written by ignition at: 03:21:55pm Sunday, May - 2010 in: sounds |
May
16
2010
--

[Hello World!]

Only after the last tree has been cut down.

Only after the last river has been poisoned.

Only after the last fish has been caught.

Only then will you find that money cannot be eaten. – Cree Indian Prophecy

Youth is happy because it has the capacity to see beauty -

Anyone who keeps the ability to see beauty never grows old.

I have the simplest tastes. I am always satisfied with the best .

One good thing about music, when it hits you, you feel no pain  .

Written by ignition at: 02:00:00am Sunday, May - 2010 in: configurations |
FIL INTERCOM
FIL INTERCOM (en/us)
FIL INTERCOM - Despre
FIL INTERCOM - About
FIL INTERCOM - Produse
FIL INTERCOM - Products
FIL INTERCOM - Contact
FIL INTERCOM - Contact (en/us)
SITEMAP CURELE de TRANSMISIE Trapezoidale Late Sincrone Speciale Dintate Benzi transportoare - FIL INTERCOM FILTRE compresoare aer pompe vid ventilatie ANDREAE desprefuire motoare - FIL INTERCOM PALETI din GRAFIT Palete din grafit - FIL INTERCOM PIESE COMPRESOARE Filtre Piese de schimb Lubrifianti Uleiuri - FIL INTERCOM POMPE VID Pompe de vacuum Filtre Separatoare aer ulei Piese schimb - FIL INTERCOM

"When they discover the center of the universe, a lot of people will be disappointed to discover they are not it." - Bernard Bailey
§ ° powered by Romarg Smart.Services+Hosting | use browser Firefox + 1280px ScreenWidth| © 2010 ignition .