Skip to main content

Posts

Showing posts with the label TIPS N TRICKS

Photoshop Works

Some Nice Facebook Tips.

How to Place Facebook Chat On Firefox Sidebar If you are using Firefox, you can place the Facebook Chat at the sidebar. How to Download Facebook Photo Albums FacePAD: Facebook Photo Album Downloader allows you to download your friends’ facebook albums, Events albums, and Group Albums, en masse, with the click of a button. How to Share Flickr Photos to Facebook Flickr2Facebook is an unofficial Flickr to Facebook uploader(bookmarklet) which allows you upload photos to Facebook from Flickr. How to Update Facebook without Using Facebook hellotxt and Ping.fm both introduced features that let Facebook administrators update Facebook Pages. How to Schedule Facebook Messages Sendible lets you schedule Facebook messages ahead of time so you can send messages to your friends, customers or colleagues in the future. How to "Friend" Someone on Facebook & Hide It From Your Status Updates A short tutorial on Makeuseof to guide you how to hid...

10 steps to backup your blog

1. Blogger Backup Utility - It is a simple utility that can help you backup your blogger blog posts to local disk. Check out screenshots for complete view of utility in action. 2. BlogBackupr - It is a web based blog backup service. It allows you to backup Blogger, Wordpress and self-hosted Wordpress Blogs. It can backup articles, user comments and blog categories of your blog . Ability to backup images will be added soon. 3. HTTrack Website Copier - This free software allows you to create a mirror copy of the blog on your computer . It builds recursively all directories, getting HTML, images, and other files from the server to your computer. 4. BlogBackupOnline - A free web based service that allows you to backup your blog. You can restore blog content anytime using the backup created with this service. It is also very useful in case you are shifting from one blogging service to another. For example switching from blogger to wordpress. 5. Official Blogg...

Computer Extension and its Associated Program

Extension Associated Program ASC ASCII Text AVI Animated Video BAT DOS Batch File BMP Bitmap Graphic CAB Compressed Archive COM Program DAT Data file DLL Dynamic Link Library DOC Microsoft Word Document DOT Microsoft Word Template DWG AutoAD Drawing File EPS Encapsulated PostScript EXE Executable Program FLA Flash Movie GIF Image ( G raphics I nterchange F ormat) HQX Compressed Archive (MAC) HTM HTML Hyper Text Markup Language ICO Icon INI Windows Initialization JPG Image ( J oint P hotographic Group) LOG Text Log MAX PaperPort Scanned Image MDB Microsoft Access Database MID MIDI MOV Quicktime Movie MP3 Audio MPC Microsoft Project Calendar MPG Media MPP Microsoft Project MPV Microsoft Project View NSF Lotus Notes Database NTF Lotus Notes DB Template OST Microsoft Outlook Offline folder PAB Microsoft Outlook Personal Address Book PCX PC Paintbrush Bitmap Graphic PDF Adoble Acrobat Portable Document PIC Bitmap Graphic PIF Windows Program Informat...

Write N Read *.doc file Into ORACLE Database (CLOB)

This ths the Working Example Using Oradynaset to write .doc file into Oracle CLOB field =============================================== Put this Code in the form Top Global gSession As OraSession Global gDatabase As OraDatabase Call This Function to save document =============================================== Private Sub SaveDoc() ' On Error Resume Next intDoc_type = Me.cboDocumentName.ItemData(cboDocumentName.ListIndex) strDocName = Replace(Trim(Me.cboDocumentName.Text), "'", "''") StrCourt = Replace(Trim(Me.cboCourt.Text), "'", "''") lngCaseNo = Val(txtCaseNo.Text) Dim objrst As OraDynaset Set objrst = gDatabase.DbCreateDynaset("Select *from DOC_ARCHIVE where CASE_NO=" & lngCaseNo & " and DOC_TYPE=" & intDoc_type & "", &H2) If Not objrst.EOF Then MsgBox "Document file is already uploaded for this type", vbOKOnly Exit Sub objrst.Close O...

How to put “Read more...” in BlogSpot

These are the steps: 1. Login to blogspot of course you must login first after sign up, click the layout menu on the dashboard and then click edit HTML on the edit HTML window, make sure you check Expand Template Widget, wait until it finish the loading. you must find the code below (use ctrl + f ) <div class='post-header-line-1'/> <div class='post-body entry-content'> After you found the code, you can copy paste the code below under the code above <b:if cond='data:blog.pageType == "item"'> <style>.fullpost{display:inline;}</style> <p><data:post.body/></p> <b:else/> <style>.fullpost{display:none;}</style> After you copy paste the code, watch the code below it <p><data:post.body/></p> <div style="'clear:"> <!– clear for photos floats –> </div> And then between <p><data:post.body/></p...

Diarrhea kills 64 in Jajarjot

GURU MURAT YADAV BANKE, July 8: With four additional deaths on Tuesday, death toll from diarrhea in Jajarkot has jumped to 64, according to Bir Bahadur Giri, vice-president of Jajarkot chapter of Federation of Nepalese Journalists. Jajarkot district administration said it can confirm 60 deaths, but admitted it has received reports of 64 deaths so far. Among those dead on Tuesday are Nare Nepali of Majkot-3, Karsinghe B K of Korbap-9, Kamala Rokaya of Laha-9, and Bhim Bahadur Shahi of Pulma-9. Two teams - one from Kathmandu and other from Regional Health Directorate - have reached the affected district. But the teams have only managed to conduct inspection so far and will start their work from Wednesday only, according to Regional Health Director Ananda Shrestha. The team that reached there from Kathmandu includes four members from the Epidemiology and Disease Control Division, while the team from the Regional Directorate includes six members led by the Directorate’s deputy-direc...

Simple Connection to MySQL with PHP

The MySQL database is one of the most popular among PHP developers. It's my database of choice, and has held up remarkably well in multiple e-commerce situations. Therefore, you would be correct in assuming that there are numerous well-documented PHP functions you can use in conjunction with your MySQL databases. Here is a an example: Before you begin, you must know the name of the server on which the database resides, and have a valid username and password for that server. Then, start your PHP code by creating a connection variable:   <?     $connection = mysql_connect ( "servername" , "username" , "password" ); Test that a connection was established and if it wasn't, print an error message and exit the program:       if (!$connection) {         echo "Couldn't make a connection!";         exit;     } If you have mad...

Add Meta tags to your blogger (BlogSpot) blog

Here is how to add Meta tags to your blogger (BlogSpot) blog: 1 . Sign in to your blogger dashboard>click the ' layout ' button [see the screenshot below] 2 .Click on the 'Edit html' tab Here is the code you have to add <meta content= ' DESCRIPTION HERE ' name='description'/> <meta content= ' KEYWORDS HERE ' name='keywords'/> <meta content= ' AUTHOR NAME HERE ' name='author'/> DESCRIPTION HERE : Write your blog description KEYWORDS : Write the keywords of your blog AUTHOR NAME : Write the author's name ( Your name ) 3.Add the above code just after this [Look at the below screenshot] <b:include data='blog' name='all-head-content'/> Don't forget to add description and keywords. And save the changes. IMPORTANT: Several people were filling with just the keywords in the description. DON'T DO THAT. Google and other search engines will ban your site from...

IF Else in PHP

If/else statements are very useful because they allow your code to be expressed in certain situations but not in others. You can control when those situations occur by using control statements such as if/else. Before we delve any further, a basic If / Else statement in PHP looks like the following: Simply put, if a condition happens to be true, the code in pink will be executed. If the condition happens to be false, the code in orange, will be executed. The Else statement is optional though. If you do not specify an Else statement, your code will not do anything if the condition happens to be false. For example, here is the code without an Else statement: -------------------------------------------------------------------------------- Let's take an example involving a robot called kirupaTron that is programmed to do among many other things, cross a busy intersection. kirupaTron is at an intersection. He is programmed to wait for the Walk light before crossing the int...

XML Parsing using PHP

Introduction This tutorial is a continuation of the previous XML tutorial I have written. Because I have already written some background information (very little) I will not add that into this tutorial in order to save space and time. The other tutorial can be found at this link. Formatting XML Ok, since I already went over the basics for formatting XML data and the basics of PHP/XML parsing I'm just going to jump right into the XML and PHP without much of an explanation. For this project I decided to create a mock-news headline parser. Basically, we have our XML file that has news headlines and a brief description of the story. Many of the news-tickers that you see on websites use a process similar to this (often called RSS). Now, on to our XML file. Creating our XML Just as with the last tutorial this XML file is quite simple. We have our highest level "news" tags which encase everything. The next level down is our "story" tags which split up each ...

Generating XML from the Database VB

1. Create a XML class to get data from the database Class clsXML ============================================= Public Function getTOPN() As ADODB.Recordset Dim strSql As String On Error GoTo GErr strSql = "select xmlserialize(content xmlelement(name " & """" & "Party" & """" & " ," & _ "xmlelement(name " & """" & "Party" & """" & ",integer(party))," & _ "xmlelement(name " & """" & "Party" & """" & ",party)," & _ "xmlelement(name " & """" & "W_cand" & """" & ",integer(w_cand))," & _ "xmlelement(name " & """" & "l_cand" & """" & ",integer(l_can...