03 Jan, 2011

Virus changes javascript files

Articles related to virus changes javascript files

An Introduction to PHP

http://digitalpbk.blogspot.com/2007/04/introduction-to-php-part1.html An Introduction to PHP PHP ?PHP stands for Hypertext Preprocessor. Well what is it ? In the world wide web we are familiar with the HTML page. The HTML page is static and does not change. What if we want a page that has some parts common and other parts different according to the browser or user that is visiting the site? Say for an example, a user's profile page. It is wasteful and time consuming to make each user a separate HTML page. Here is where Server side scripting comes in. Thus we ...
Published 4 years, 9 months ago

Firefox Browser within Browser

http://digitalpbk.blogspot.com/2007/01/firefox-browser-within-browser.html to functionality using JavaScript. To extend the browser, we modify parts of the browser UI by adding or modifying widgets. We add widgets by inserting new XUL DOM elements into the browser window, and modify them by using script and attaching event handlers. Have fun making tabs within tabs within tabs ......Did not work? Did not work ? What happened ? Lemme know ... Feel free to leave a comment ... ...
Published 5 years ago

Adding HTML elements dynamically to a page

http://digitalpbk.com/javascript/adding-html-elements-dynamically-page ; function addfield() { var e = document.createElement("div"); e.innerHTML = 'Value '+c+' : '; document.getElementById("extendable").appendChild(e); c++; } Value 1 : Add More The Code to add dynamic Input Elements The following is the simple javascript code that adds html input elements dynamically to the form. Add to the head tag within <script> tag: var c = 0; function addfield() { var e = document.createElement("div"); ...
Published 2 years, 2 months ago

JQuery make dynamic draggable and droppable containers

http://digitalpbk.com/jquery/drag-drop-make-dynamic-draggable-and-droppable-containers JQuery make dynamic draggable and droppable containers The jquery UI javascript has the Draggable and Droppable Interactions inorder to implement a drag drop UI. By default draggable and droppable containers are marked draggable and droppable by jQuery when the page loades, As shown in the code snippet below for the jQuery Drag code and jQuery Drop Code, jQuery Drop Code using jQuery droppable $(".dropTarget").droppable({ drop: function(event, ui) { // Drop Logic ...
Published 1 year, 11 months ago

Apache Solr MySQL Sample Data Config

http://digitalpbk.com/apachesolr/apache-solr-mysql-sample-data-config . Download the JDBC Driver Download the JDBC Driver for MySQL from http://mysql.spd.co.il/Downloads/Connector-J/mysql-connector-java-3.1.14.zip Put the "mysql-connector-java-3.1.14-bin.jar" in Solr Dir/example/lib Configuring Solr to Use MySQL Solr can be configured to connect to a MySQL Data base using the DataImportHandler. To do so first in solrconfig.xml (This file would be in Solr Dir/example/conf) add a new requestHandler which is handled by DIH (DataImportHandler). data ...
Published 1 year, 11 months ago

Timezone: PHP, Shell and Crontab

http://digitalpbk.blogspot.com/2009/05/crontab-server-timezone-php-date.html Timezone: PHP, Shell and Crontab Programming in different timezones can be a headache if not taken care off initially. Codes written to work in one time zone can go wrong when ported to a server that runs on another Timezone. There a few things to take care off when you change from server to server.PHPBy default PHP uses the Timezone that is set in the server or php.ini configuration files. Inorder to make a robust php code that can work in any server environment, it is always a good practice ...
Published 2 years, 8 months ago

The MP3 ID3 Tag

http://digitalpbk.blogspot.com/2007/03/mp3-id3-tag.html of useUSLT Unsynchronised lyric/text transcriptionWCOM Commercial informationWCOP Copyright/Legal informationWOAF Official audio file webpageWOAR Official artist/performer webpageWOAS Official audio source webpageWORS Official Internet radio station homepageWPAY PaymentWPUB Publishers official webpageWXXX User defined URL link frameReference from id3v2.4.0-frames.txt from id3.orgFrame FlagsFlag1 : Frame Status FlagsMSB: Bit8 : Not Used Must be 0 Bit7 : If SET the Frame is discarded when a change ...
Published 4 years, 10 months ago

Google Wave Review & Dev Preview

http://digitalpbk.blogspot.com/2009/08/google-wave-review-preview-dev.html of these conversation is called a Wave. And each item inside is a Wavelet, Those who have brushed upon their Signal processing subjects would ring a bell here. The waves are recorded in time and can be played back to see the conversation growing.It takes sometime to load and the javascript pretty much hangs around when we do something like resizing the windows. The pretty new scroll bar is cute.About bots, you can add bots to your conversation that augments information like if we type some keywords, the bots parse ...
Published 2 years, 6 months ago

XSS - Part 2 (Cookie stealing and Defacement)

http://digitalpbk.blogspot.com/2006/12/xss-part-2-cookie-stealing-and.html XSS - Part 2 (Cookie stealing and Defacement) Please note that this article is for educational purposes only, and is targeted at webmasters who have never seen this scenario. Please donot harm anyone. Disclaimer : I am not responsible for any damages arising due to methods specified in this page. Webmasters please fix it ASAP.In the first part we injected javascript successfully, and we got an alert. Now let us move to step 2 , defacing and cookie stealing.Cookie Stealing using XSSCookie ...
Published 5 years, 1 month ago

Remove old kernels in Ubuntu

http://digitalpbk.blogspot.com/2008/11/ubuntu-remove-old-kernel-grub-list-long.html Remove old kernels in Ubuntu Whenever a new kernel is applied ubuntu keeps the old one. This clogs up the grub and hard disk space and ends up having a lot of kernels to boot in the grub.To know the version that is currently running:uname -rand to remove all other kernels usesudo apt-get remove --purge 2.6.24-16-*change the 2.6.2x-xx- parts to remove those kernel. Make sure you dont remove the kernel you are using, or you will end up breaking the system. It is wise to keep a recent kernel ...
Published 3 years, 3 months ago

Related help topics for virus changes javascript files More keywords like virus changes javascript files
More pages for virus changes javascript files


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Tender Coconut water anyone ? Tender Coconut water anyone ? in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk