Kaizeku Ban

"So many evil plans, so little time…"

  • Registration is Closed
  • Log-in
  • Home
  • About
    • Comment Policy
    • Disclosure Policy
    • Bookmarks
    • Most used software
  • Downloads
  • Projects
  • RSS
  • Frontpage
  • ›
  • Page 3 of 11
    • Jul
    • 30
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Firefox 3 Easter Eggabout mozilla and robots

    Posted by ck 2 months, 1 week ago

    Filed under Mozilla Firefox.

    Firefox 3 easter egg Mozilla Firefox 3 (codenamed Gran Paradiso) is the newest version of Mozilla Firefox, a web browser. It was released on June 17, 2008. The following Easter Egg can be found inside /toolkit.jar/ & /browser.jar/. If you browse this page with Firefox 3 Click the “Firefox URI” to view the Easter Egg page.

    The book of Mozilla (11:9)

    Mammon slept. And the beast reborn spread over the earth and its numbers
    grew legion. And they proclaimed the times and sacrificed crops unto the fire, with the cunning of foxes. And they built a new world in their own image as promised by the sacred words, and spoke of the beast with their children. Mammon awoke, and lo! it was naught but a follower. from The Book of Mozilla, 11:9

    Read the rest of this entry

    Tags:
    • firefox3, 
    • Owned
    • Rated 3
       
    • 3 Comments »
    • July 30, 2008 at 7:55 am
    • August 12, 2008 at 11:47 am
    • 0.3
    • url
    • Jul
    • 23
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Workaround for WP Image CaptionWordpress 2.6 shortcode

    Posted by ck 2 months, 2 weeks ago

    Filed under WordPress.

    wordpress caption shortcodeI’m not really fond with the new image caption short code. The caption template is not usable for me and for most of WordPress savvy user out there.

    WP caption structure

    <div style="width: 169px" class="wp-caption alignnone" id="attachment_14">
     <a rel="attachment wp-att-14" href="http://www.whatever.com/attachment/">
     <img width="159" height="300" class="size-medium wp-image-14" title="Lorem ipsum" alt="Lorem ipsum" src="http://www.whatever.com/image.png"/>
     </a>
     <p class="wp-caption-text">Lorem ipsum</p>
    </div>

    From the above HTML code the whole image content is wrap using a block elements "<div>".

    The issue

    If the below condition is met it will render the whole document invalid.

    1. Image caption is placed inside a paragraph.
    2. Wordpress wpautop (default filters) is enabled; wpautop will auto append <p> on raw text content.

    Read the rest of this entry

    Tags:
    • 2.6, 
    • shortcode, 
    • wp constant, 
    • wp_filters
    • Rated 3
       
    • 3 Comments »
    • July 23, 2008 at 1:47 pm
    • July 24, 2008 at 5:14 am
    • 0.3
    • url
    • Jul
    • 22
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    bypass bleachportal nag countreset counter

    Posted by ck 2 months, 3 weeks ago

    Filed under JavaScript.

    KonSimple javascript code to bypass the bleachportal download counter.

    javascript:time=0;void(0);
    Instruction

    Copy paste the above code inside your browser address-bar, press enter and you are ready to go. (better save it as bookmark)

    Read the rest of this entry

    Tags:
    • bleach, 
    • no-script
    • Rated 3
       
    • 1 Comment »
    • July 22, 2008 at 6:40 am
    • August 13, 2008 at 1:47 pm
    • 0.3
    • url
    • Jul
    • 21
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Wordpress 2.6 Permalink Bug fixesfeatures defect

    Posted by ck 2 months, 3 weeks ago

    Filed under WordPress.

    WordPress 2.6 Permalinks Structure bugThere is a critical bug with Wordpress 2.6 (not a major headache actually ). Check out the full ticket at Wordpress development trac #7306.

    2.6 Permalink Defect

    [...] 404 error appears on all permalinks when blog uses following permalink structure; /index.php/%postname%/. Clicking any post headings will give 404 error. Also archives /index.php/2008/07/ will give 404 error [...]

    This issue arise if you set WP permalink structure to “/index.php/%postname%/“.

    Read the rest of this entry

    Tags:
    • 2.6, 
    • permalinks, 
    • upgrade, 
    • wp_rewrite
    • Rated 3
       
    • 5 Comments »
    • July 21, 2008 at 11:43 am
    • July 22, 2008 at 9:54 am
    • 0.3
    • url
    • Jul
    • 16
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    How to create specific CSS selector base on WP Post Type and Post IDWordpress Theme tips

    Posted by ck 2 months, 3 weeks ago

    Filed under Themes & WordPress.

    While spending my time stalking wordpress support forum, I stumbled on this 6 days old unresolved topics ” using page/post id to specify per-page css in 2.5″.

    chibi hate you mod by chaoskaizerI’m about to upgrade a site from Wordpress 2.3 to the latest version. I’ve previously been employing the page id in order to have page specific CSS, e.g., pages with either 0, 1 or 2 sidebars.

    For example, if the url is http://site.com/page1, the page is styled with a combination of a template and CSS to specify the width of primary:

    #page1 #primary {margin-left: 0;width: 890px; }

    I’ve read in some other posts here that Wordpress 2.5 no longer uses this, and now the post ID is used instead [...] ~ hauntedtapedeck

    Workaround

    Basically, what we need is a unique CSS Selector for specific post & custom page inside the template.

    firebug html console

    Read the rest of this entry

    Tags:
    • CSS, 
    • wp_query
    • Rated 3
       
    • 5 Comments »
    • July 16, 2008 at 6:55 am
    • August 27, 2008 at 1:02 pm
    • 0.3
    • url
    • Jul
    • 13
    • http://www.gravatar.com/avatar/649985c64185458d259a66f5dd8b1b18?s=58&d=http://blog.kaizeku.com/wp-content/themes/wp-istalker-pb/images/gravatar.png&r=G

    Photoshop CS3 Easter EggAdobe Red Pill Production

    Posted by ck 3 months ago

    Filed under Photoshop.

    Photoshop CS3 Easter Egg exceprtBorrowing from the movie matrix, the terms blue pill and red pill have become a popular metaphor for the choice between blissful ignorance (blue) and embracing the sometimes painful truth (red).Photoshop CS3 Easter Egg exceprt

    This is nifty tricks to view Adobe Photoshop CS3 Easter Egg.

    Adobe Photoshop CS3 About window

    Adobe photoshop CS3 Extended

    Adobe Red Pill

    Photoshop CS3 Easter Egg

    Adobe Red Pill Bruce Fraser

    Redpill is a term that describes a human who has been freed from the Matrix

    Level Mask: channel RGB, Set 137,0.10,255
    tribute to bruce fraser

    Adobe Red Pill Easter Kitty

    Channel Mixer > output: gray, red:+40, green: +40, blue: +20
    easter bunny
    Read the rest of this entry

    Tags:
    • adobe, 
    • adobe red pill, 
    • easter egg, 
    • Owned, 
    • tips
    • Rated 3
       
    • 4 Comments »
    • July 13, 2008 at 2:30 am
    • July 30, 2008 at 9:00 am
    • 0.3
    • url
Page 3 of 11  «12345»...Last »
  •  Kaizeku Ban

    chaoskaizer kaizeku ban I'm Avice (Chaoskaizer) De’véreux and I welcome you on my site, which is my technical playground and web log.
  •  Pages

    • About
    • Downloads
    • Projects
  •  Taxonomy

    2.6 Animepaper badge blackhat blogosphere blueprint code_view CSS filters firefox3 firefox_vulnerability gd geshi Google goro grid css hook iStalker JavaScript lunarpages memory_corruption microsoft mozilla mp3 no-script Owned pagerank safari security SEO social_network spam stylesheet theme traffic_sharing Trends typography update vulnerability wakoopa wallpaper web design widget WordPress wp26
  •  Topics

    • Animepaper (11)
    • Black Hat (3)
    • CSS (3)
    • Flickr (2)
    • Gallery (1)
    • Google (3)
    • Google Chrome (1)
    • Internet Browser (2)
    • iStalker (3)
    • JavaScript (6)
    • Mozilla Firefox (4)
    • Music (2)
    • Owned (1)
    • Photoshop (3)
    • plugins (3)
    • ranting (3)
    • Resources (1)
    • SEO (2)
    • shortcode (2)
    • Themes (3)
    • Traffic Sharing (1)
    • tutorial (1)
    • Userpage (4)
    • Wallpapers (1)
    • Web Crawler (1)
    • Web Development (1)
    • Web Services (3)
    • WordPress (18)
    • wpistalker (6)
  •  RSS Wakoopa

    • BlazeDVD October 11, 2008
    • Firefox October 11, 2008
    • phpDesigner October 11, 2008
    • Pidgin October 11, 2008
    • µTorrent October 11, 2008
    • Thunderbird October 11, 2008
  •  Archives

    • October 2008
    • September 2008
    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • March 2008
    • February 2008
    • October 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
  •  Blogroll

    • animepaper
    • artician
    • Chris Hutchinson
    • deviantArt
    • Noah Ark
    • Sakurab
  •  Badge

top© copyright 2006 - 2008, Kaizeku Ban.

XHTML XML CSS 508