http://digitalpbk.com/less-css/less-css-compiler-windows-lesscexe
Less
CSS Compiler for Windows (lessc.exe)
LESS is a language that helps
CSS Designers to write better manageable and extensible
CSS style sheets.
Current less compiler called lessc is only available for the *nix platforms, which can compile LESS files to
CSS.
Where is lessc.exe ?
lessc.exe for those who are in a hurry :) .
It is attached to the bottom of this post also so feel free to read on.
How to use the lessc.exe
This compiler is adapted from the .net port of less compiler ...
Published 1 year ago
http://digitalpbk.blogspot.com/2007/06/css-transparency-effects.html
CSS Transparency Effects
10% 20% 30% 40% 50% 60% 70% 80% 90% 100% Intro
CSS (Cascading Style Sheets) can be used to add cool effects to an ordinary looking web page. One such example is adding transparency effect to images or other portions including text of your website. in IEIn IE transparency is achieved by filter: alpha(opacity=XXX) where XXX takes value from 0 to 100. It indicates the % of opacity required.For example produces a semi transparent google logo.in FirefoxIn firefox the same ...
Published 4 years, 11 months ago
http://digitalpbk.blogspot.com/2007/06/google-talk-chat-themes.html
Making Google talk Chat Themes
IntroMaking of a google talk chat theme is similar to making a 4 page HTML website with a
CSS file. The following assumes you are using windows XP. Please unhide hidden files and folders.The default chat themes for google talk are located inX:\Documents and Settings\[Profile Name; Eg: Administrator.000]\Local Settings\Application Data\Google\Google Talk\themes\system\chatwhere X: is the drive windows is installed.[Profile Name] is your user name on windows ...
Published 4 years, 11 months ago
http://digitalpbk.blogspot.com/2007/06/buttons-with-rollover-effect.html
Buttons with Rollover Effect
IntroIn this article, I am going to explain how to make a simple link that looks like a button with roll over effects using only
CSS.First we have to decide on the dimensions of the image etc. And make an image that has the following format: The default image and then the rollover images.The above image is 382x225 containing 3 images each of 382x75 stacked top to bottom.The first image is the default image. The second is the hover image i.e., the image that is shown ...
Published 4 years, 11 months ago
http://digitalpbk.com/drupal/remove-flash-tracking-addthis-module-drupal-5
tracking can be disabled. In drupal 5 the tracking can be disabled by adding the following line of code to
addthis.module
addthis_disable_flash = true; to the function _addthis_create_button so that the function is as shown below
function _addthis_create_button($node=NULL, $teaser = FALSE) {
global $addthis_counter;
$addthis_counter++;
if ($addthis_counter == 1) {
drupal_add_css((drupal_get_path('module', 'addthis')
.'/addthis.css'));
drupal_add_js(sprintf(' ...
Published 2 years, 6 months ago
http://digitalpbk.blogspot.com/2007/04/using-php-for-more-than-html.html
Using PHP for more than HTML
IntroIt is mostly thought that PHP can be used only for making dynamic web pages. No. PHP can also be used to make dynamic images (jpg,gif,bmp,png..), javascript codes (js), Style sheets (
css), XML files and in the advanced cases pdf's, docs etc.So How do we know the php is a different file ?By default the php file is rendered as a HTML file. The server does not need any recognition for the format of the php file, i.e, server doesn't care what the format is ...
Published 5 years, 1 month ago
http://digitalpbk.blogspot.com/2006/12/introduction-to-xss-part-1.html
Introduction to XSS Part 1
This document is purely for illustrative purposes only. I am not responsible for any losses arising to the websites mentioned below. Webmasters please be more alert...What is it?XSS stands for cross site scripting (
CSS) Since
CSS is already taken by Cascaded Style Sheets, it is named XSS X standing for a Cross. It is a kind of hacking which allows you to deface websites, loggin as another user etc. IntroductionLet us start by looking how websites work. Starting ...
Published 5 years, 5 months ago
http://digitalpbk.com/windows-gadgets/how-make-windows-gadget-windows-7
How to make a Windows Gadget in Windows 7
This is an introduction to developing windows gadgets on the Microsoft Windows 7 Operating System. A windows gadget is a small piece of UI that floats around on your desktop. This is the version 2 of the Windows Sidebar which appeared in Windows Vista operating system. All gadgets are simply a collection or group of HTML/JS(JScript)/
CSS files and a bunch of assets described by a gadget.xml placed in a .gadget Folder. This tutorial assumes you know ...
Published 1 year, 7 months ago