2008-08-18

శ్రీదీపిక » Technical: An intermediate way to generate Indic Pdf’s using iText/iTextsharp

2008-08-18 12:40 PM దిలీపు మిరియాల
An intermediate way to generate Indic Pdf’s using iText/iTextsharp Introduction I am working/dealing with Indic scripts for my project and I got so many problems due to partial/no support given by the s/w’s or Libraries/Languages/Frameworks. I tried to resolve my problems. One of them is generating PDF’s dynamically. You know iTextSharp is a wonderful library for generating PDf [...]

వీవెనుడి టెక్కునిక్కులు: అత్యుత్తమ తెలుగు బ్లాగులు (రెండవ దఫా)

2008-08-18 03:17 AM వీవెన్
మీకు నచ్చిన, మీరు మెచ్చిన పది తెలుగు బ్లాగులు ఏవి అని క్రితం సారి నేను అడిగి సంవత్సరం గడిచింది. (కూడలి 100కి ఆ జాబితాలే మూలం.) అప్పుడు చాలా మంది తమకు నచ్చిన బ్లాగులను ఎన్నుకున్నారు. మరోసారి ఆలాంటి అంతర్మధనానికి సిద్ధంకండి. ఈ సంవత్సర కాలంలో చాలా కొత్త బ్లాగులు వచ్చాయి, పాతవి కొన్ని మూగబోయాయి, మరి కొన్ని మూతబడ్డాయి. ఇప్పుడు తాజాగా మీరు మెచ్చే మరియు తప్పక చదివే  పది (పది మరీ తక్కువనిపిస్తే ఇరవై, ముప్పై, [...]

2008-08-11

Bharath Radhekrishna's Weblog: Email sending problem from Godaddy server solved in ASP.NET (108 situations)

2008-08-11 12:36 PM onetidbit

Hello  everybody. When I am trying to send an email with HTML format the values are coming from database i felt problem with godaddy server.

నేను ఒకసారి GoDaddy ద్వారా ఈమెయిలు పంపిస్తుంటే చాలా ప్రొబ్లెంస్ వచ్చాయి
నేను వాటిని పరిశోధించి చివరికి చిన్న సమాధానం కనుకునా ఏమైనా సందేహం వుంటే మెయిల్ చెయ్యండి

Email; radhek@gmail.com

To solve that we must add relay hosting.

I’d just like to add that when you’re sending email via “relay-hosting.secureserver.net” you will be able to send email via the GoDaddy server but it will not work if you run it locally. This is normal - it’s a security feature.

Code below

using system.net.mail namespace.

const string SERVER = “relay-hosting.secureserver.net”;

System.Net.Mail.MailMessage objMail = new System.Net.Mail.MailMessage();

objMail.From = new MailAddress(“”);objMail.To.Add(MailId);

objMail.Bcc.Add(BCC);

objMail.IsBodyHtml = true;

objMail.Subject = “Order Confirmation”;

objMail.Priority = System.Net.Mail.MailPriority.High;

objMail.Body = “<h1>hi</h1>”;

SmtpClient Client = new SmtpClient(SERVER);Client.Send(objMail);

U need to Specifie the SMTP CLIENT SERVER LIKE THAT

This is working with my Godaddy Server try out

2008-08-07

Bharath Radhekrishna's Weblog: Gmail down

2008-08-07 09:44 AM onetidbit

Hi friends My gmail account is not opening from yesterday night i.e 6th Aug 08 and also not opening today.

ఫైరుఫాక్సు లో జిమెయిల్ రావటం లేదు కాని అదే ఇంటర్నెట్ ఎక్సప్లోరర్ లో వస్తుంది

I dont know what happened exactly so I have send a mail to gmail team they send the following reply:

Hello,

Thank you for your report.

We are aware of this problem, and our engineers are making progress to
restore account access. You can find timely updates in the Gmail Help
Discussion group at:
http://groups.google.com/group/Gmail-Help-Announcements-and-Alerts-en/browse_thread/thread/f92b062153654584.
We apologize for any inconvenience this has caused.

Sincerely,

The Google Team

I dont know what happened this is drawback of google.

I have read many blogs and I found that same account is opening in IE.

I tried opening in IE it is working fine.

I dont know what happened with IE only its working.

I must switch to some other alternative to gmail.

2008-08-06

నా మదిలో ...: విండోసు ఉపకరణాలకి లినక్సు ప్రత్యామ్నాయాలు ...

2008-08-06 06:20 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
లినక్సు గురించీ, ఉబుంటు గురించీ నా ఇంతకు ముందు టపాలలో కొన్ని సార్లు చెప్పాను. ఎంత కాదనుకున్నా ఒప్పుకోవాల్సిన విషయమేమిటంటే విండోసు, మాక్ లాంటి కమర్షియల్ ఆపరేటింగు సిస్టమ్‌ లనే జనాలు ఎక్కువగా వాడతారు. జనాలు ఎందుకు లినక్సు ఉపయోగించరు అని ప్రశ్నించుకుంటే మామూలుగా వచ్చే సమాధానాలు చాలా వరకూ అపోహలనే అనిపిస్తుంది. ఒకప్పుడు వాడుకరులకి అనుకూలంగా కాక గీకులు మాత్రమే ఉపయోగించే విధంగా లినక్సు ఉండేది. అది

Bharath Radhekrishna's Weblog: How to know the width & height of an uploaded image in ASP.NET

2008-08-06 12:45 PM onetidbit

How to know the width & height of an uploaded image in ASP.NET

ఇమేజ్ యొక్క పొడవు వెడల్పు in ASP.NET

Import the namespace using System.IO;
Step 1:
using System.IO;

Step 2:
System.Drawing.Image UploadedImage = System.Drawing.Image.FromStream(Image1.PostedFile.InputStream);
Here Image1 is the name of uploaded image.

System.Drawing.Image.FromStream
Creates an Image from the specified data stream.
To know more visit: http://msdn.microsoft.com/en-us/library/system.drawing.image.fromstream.aspx

Step 3:
Now you can get width and height of image using

UploadedImage.Width
UploadedImage.Height

Bharath Radhekrishna's Weblog: Random number generation in ASP.NET

2008-08-06 12:29 PM onetidbit

Random number generation in ASP.NET

ఏదో ఒక్క నెంబర్ జనరేషన్ in ASP.NET

Step 1:

write a class file.
eg:

Create a cs file named as rand.cs

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.VisualBasic;

/// <summary>
/// Summary description for random_number
/// </summary>
public class random_number
{
public string GetRandomNumber(int length, string characterSet)
{

string randomData = “”;

int position = 0;

byte[] data = new byte[length];

int characterSetLength = characterSet.Length;

System.Security.Cryptography.RandomNumberGenerator random = System.Security.Cryptography.RandomNumberGenerator.Create();

random.GetBytes(data);

for (int index = 0; (index < length); index++)
{

position = data[index];

position = (position % characterSetLength);

randomData = (randomData + characterSet.Substring(position, 1));

}

return randomData;

}

}

step 2:

use this in codebehind of any aspx page

random_number r1 = new random_number();
string str= r1.GetRandomNumber(5, “ABCDEFGHIJLLMNOPQRSTUVWXYZ_1234567890″);

2008-08-05

Bharath Radhekrishna's Weblog: ASP.NET Tutorials

2008-08-05 12:06 PM onetidbit

ASP.NET లో బేసిక్స్ కావాలంటే చూడండి

http://quickstarts.asp.net/QuickStartv20/aspnet/Default.aspx

చాలా బాగా అర్ధమయ్యిది.

Bharath Radhekrishna's Weblog: Gridview operations Edit,Delete,Update

2008-08-05 11:42 AM onetidbit

గ్రిడ్ వ్యూ లో కొన్ని  ఆపరేషన్లు

BoundField in Grid view and bind the data to each field using “Edit Column” option in smarttag of grid view.

We can also add images to Edit and Delete option in Grid view “edit columns” by adding a “commandfield”.

String con1 = ConfigurationManager.ConnectionStrings["con"].ToString();

DataSet ds = new DataSet();

protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)

{

GridView1.EditIndex = -1;

bindata();

}

protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)

{

string i = GridView1.DataKeys[e.RowIndex].Value.ToString();

int j = Convert.ToInt32(i);

TextBox t1 = new TextBox();

t1 = (TextBox)GridView1.Rows[e.RowIndex].Cells [0].Controls [0];

TextBox t2 = new TextBox();

t2 = (TextBox)GridView1.Rows[e.RowIndex].Cells [1].Controls [0];

TextBox t3 = new TextBox();

t3 = (TextBox)GridView1.Rows[e.RowIndex].Cells [2].Controls [0];

SqlConnection con = new SqlConnection(con1);

string upt = “update Allergies set Allergy = @allergy, Symptoms = @symptom, Action_to_be_taken =@action where Allergy_id=” + j;

SqlCommand cmd = new SqlCommand(upt, con);

cmd.Parameters.Add(“@allergy”, SqlDbType.VarChar).Value = t1.Text;

cmd.Parameters.Add(“@symptom”, SqlDbType.VarChar).Value = t2.Text;

cmd.Parameters.Add(“@action”, SqlDbType.VarChar).Value = t3.Text;

con.Open();

cmd.ExecuteNonQuery();

con.Close();

GridView1.EditIndex = -1;

bindata();

}

protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)

{

GridView1.EditIndex = e.NewEditIndex;

bindata();

}

protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)

{

string i = GridView1.DataKeys[e.RowIndex].Value.ToString();

int j = Convert.ToInt32(i);

SqlConnection con = new SqlConnection(con1);

string del = “Delete from Allergies where Allergy_id=” + j;

SqlCommand cmd = new SqlCommand(del, con);

con.Open();

cmd.ExecuteNonQuery();

con.Close();

GridView1.EditIndex = -1;

bindata();

}

Bharath Radhekrishna's Weblog: Automatically refresh a page after a popup window has been closed in ASP.NET

2008-08-05 05:39 AM onetidbit

ఫొప్ అప్ బాక్స్ ముసివెసినా తర్వతా పరెంట్ పెజ్ రిఫ్రెష్ అవుతుంది

in popup.aspx write down the following line

Response.Write(”<script>window.opener.location=’sample.aspx’;window.close();</script>”)

this will close popup after clicking save button of popup and refresh the parent form.

భరత్ రాధే కృష్ణ

2008-08-04

Bharath Radhekrishna's Weblog: Generating serial numbers in Data controls

2008-08-04 07:06 AM onetidbit

If you want to generate serial number column in data controls just see below:

Gridview: Container.DataItemIndex+1

(For e.g. In gridview

<asp:TemplateField HeaderText=”S.No”>
<ItemTemplate><%#Container.DataItemIndex+1 %></ItemTemplate>
</asp:TemplateField>

)
Datalist:  Container.ItemIndex+1
Formview: Container.PageIndex+1

2008-08-02

వీవెనుడి టెక్కునిక్కులు: కూడలిలో టపాల జీవితకాలాన్ని పెంచడం

2008-08-02 07:03 AM వీవెన్
ప్రస్తుత కూడలిలో ఉన్న సమస్యల్లో మరోటి కూడలిలో టపాల జీవితకాలం. దీన్ని కూడలి ప్రస్తుత నిర్మాణాకృతిలోనే పరిష్కరించ ప్రయత్నం చేసాను. ఇది అంసంపూర్ణం మరియు తాత్కాలికం. (మరింత మెరుగైన పరిష్కారం కొత్త కూడలిలో ఆశించవచ్చు.) మొదటి పేజీలో ప్రస్తుతం కనిపించే టపాల సంఖ్యను 40కి పెంచాను. దీనివల్ల మొదటి పేజీ కొంత మెల్లగా లోడవవచ్చు. తేడా అంతగా తెలియకపోవచ్చులేండి. కానీ మీ టపా మరికాస్త ఎక్కువ సేపు కూడలిలో ఉంటుంది. బ్లాగుల పేజీలో ఇప్పుడు 60కి బదులుగా 70 టపాలు [...]

2008-07-29

వీవెనుడి టెక్కునిక్కులు: మార్చిన టపాలు ఇక కూడలిలో రావు!

2008-07-29 03:30 PM వీవెన్
మీరు (బ్లాగుస్పాట్ బ్లాగర్లు) టపాలో ఏ మార్పు చేసినా లేదా టపాల యొక్క లేబుళ్ళు మార్చినా అవి కూడలిలో తిరిగి దర్శనమిచ్చేవి. ఈ ఇబ్బందికరమైన సమస్యని ఎట్టకేలకు పరిష్కరించాను. అన్నట్టు, తర్వాతి తరం కూడలిపై పని మొదలైంది. (కూడలి మెరుగుపరచడం కోసం వస్తున్న టపాలు చదువుతున్నాను.) అయినా, ఇప్పట్లోనే ఇంకా ఏమీ ఆశించవద్దు.

2008-07-28

నా మదిలో ...: మైక్రోబ్లాగింగు... - కుచించుకుపోతున్న సమాచారం

2008-07-28 05:48 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
అసలు మన సంభాషణలు రానురానూ ఎంత కుచించుకుపోతున్నాయో అనిపిస్తుంది నాకు... ముఖాముఖి మాట్లాడుకునే రోజులనుండి మెల్లగా ఉత్తరాలు, ఫోనులు, ఈమెయిళ్ళూ, ఎసెమెస్సులు. ఈ ట్రెండుని చూస్తే మీకనిపించట్లేదూ రాను రానూ మాటలు తక్కువయిపోతున్నట్టు. అన్నట్టు ఈ పద్ధతి కేవలం మన మాటలకే కాదు, అన్ని రకాల సాధనాలకీ వర్తించడం మొదలయింది. భాష కూడా స్పష్టంగా చెప్పగలిగే పదాల నుంచి పొడి పొడి మాటల వైపు సాగుతుంది అనిపిస్తుంది. ఉదా:

2008-07-11

Bharath Radhekrishna's Weblog: Encrypted querystring in ASP.NET

2008-07-11 09:10 AM onetidbit

Encrypted Querystring

Hello friends When we are passing data between two asp.net pages we will use querystring. But the original value will be displayed there which is not a secure way to do. So we must encrypt that information.

I faced the same situation and searched GOOGLE and come across a nice article by Mr.Tiberius OsBurn of DEVCITY. The original article you can get at: http://www.devcity.net/PrintArticle.aspx?ArticleID=47.

Basically I am C# guy. I made some changes to that program and its working fine now.

First we will write a class file where Encrypt and Decrypt functions will be there.By using them we will execute that.

1) Create a class file in APP_CODE folder and paste this code.

Code Begins

using System;
using System.IO;
using System.Xml;
using System.Text;
using System.Security.Cryptography;

public class Encryption64
{
private byte[] key = { };
private byte[] IV = { 18, 52, 86, 120, 144, 171, 205, 239 };

public string Decrypt(string stringToDecrypt, string sEncryptionKey)
{
byte[] inputByteArray = new byte[stringToDecrypt.Length + 1];
try
{

//key = System.Text.Encoding.UTF8.GetBytes(Left(SEncryptionKey, 8));
key = System.Text.Encoding.UTF8.GetBytes(sEncryptionKey.ToCharArray(), 0, 8);
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
inputByteArray = Convert.FromBase64String(stringToDecrypt);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(key, IV), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
System.Text.Encoding encoding = System.Text.Encoding.UTF8;
return encoding.GetString(ms.ToArray());
}
catch (Exception e)
{
return e.Message;
}
}

public string Encrypt(string stringToEncrypt, string SEncryptionKey)
{

try
{
key = System.Text.Encoding.UTF8.GetBytes(SEncryptionKey.ToCharArray(), 0, 8);
DESCryptoServiceProvider des = new DESCryptoServiceProvider();
byte[] inputByteArray = Encoding.UTF8.GetBytes(stringToEncrypt);
MemoryStream ms = new MemoryStream();
CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(key, IV), CryptoStreamMode.Write);
cs.Write(inputByteArray, 0, inputByteArray.Length);
cs.FlushFinalBlock();
return Convert.ToBase64String(ms.ToArray());
}
catch (Exception e)
{
return e.Message;
}
}

}

Code Ends

Take an aspx page and write the code and write the code below.

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Security.Cryptography;

public partial class Test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
public string encryptQueryString(string strQueryString)
{
//ExtractAndSerialize.Encryption64 oES =
//    new ExtractAndSerialize.Encryption64();
Encryption64 oES = new Encryption64();
return oES.Encrypt(strQueryString, “!#$a54?3″);
}

public string decryptQueryString(string strQueryString)
{

Encryption64 oES = new Encryption64();
return oES.Decrypt(strQueryString, “!#$a54?3″);
}

protected void lnk_btn_Click(object sender, EventArgs e)
{
string strValues = “search”;
string strURL = “http://yoursite.com?search=”
+ encryptQueryString(strValues);

Response.Redirect(strURL);
}
}

In aspx

Take a link button with Id=”lnk_btn”.

when you click it will encrypt an you can decrypt by using the class file.

Bye

2008-07-10

Bharath Radhekrishna's Weblog: Erase all textboxes contents after submitting data in contentplace holder using Masterpages

2008-07-10 11:13 AM onetidbit

Hello When we have some 30 textboxes in a page where it has a master Page. If we want to erase all th data  in textboxes usuallywe will write TextBox1.Text==” “; But it s time consuming so I have the easy way to do it.    wait…….

private void getAllCtl(ControlCollection ctls)
{
foreach (Control c in ctls)
{
if (c is System.Web.UI.WebControls.TextBox)
{
TextBox txt = c as TextBox;
txt.Text = “”;

}
if (c.HasControls())
{
getAllCtl(c.Controls);

}
}
}

In the button code event please write to recognize contentplaceholder in masterpage

ContentPlaceHolder ContentPlaceHolder1=this.Master.FindControl(”ContentPlaceHolder1″) as ContentPlaceHolder;
getAllCtl(ContentPlaceHolder1.Controls);

2008-07-08

నా మదిలో ...: వేగంగా మారుతున్న మొబైలు విపణి ...

2008-07-08 04:15 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
మొబైలు మనకి కేవలం మాట్లాడుకునేందుకు కాక మరెన్నో చేసేదిగా ఎప్పుడో మారిపోయింది. మొదట మనం ఒకరితో ఒకరు మాట్లాడుకోవడానికి ఉపయోగించేవాళ్ళం. తర్వాత ఎసెమెస్ లు వచ్చిన తర్వాత టెక్స్టింగ్ మొదలయింది. తర్వాత మొబైలుని పాటల కోసం వాడడం మొదలుపెట్టారు. ఇంకొంత కాలానికే అందులో కెమెరా, వీడియో వచ్చి చేరాయి. కానీ ఇవే కాకుండా మోబైలు రంగాన్ని మార్చింది దీంట్లోంచి అంతర్జాలానికి అనుసంధానం కాగలగడం. ఇక అప్పటి నుంచీ మొబైలు

2008-07-02

సరదా: పెన్ డ్రైవ్ లేదా మెమరీ చిప్‌లలో వైరస్‌ని క్లీన్ చేయడం ఎలా? (యాంటీ వైరస్ అందుబాటులో లేనపుడు)

2008-07-02 09:26 AM ఎస్పీ జగదీష్ (noreply@blogger.com)
ఈ మధ్యన పెన్ డ్రైవ్‌ల ద్వారా, మెమరీ చిప్‌ల ద్వారా వైరస్‌లు ఎక్కువగా వ్యాప్తి చెందుతున్నాయి. వాటిలో ముఖ్యమైనవి Rose.exe or regsvr.exe. పెన్ డ్రైవ్ లేదా మరేదైనా రిమూవబుల్ డ్రైవ్ పెట్టగానే windows XP Operating Systemలో కొన్ని ఆప్షన్స్‌తో కూడిన ఒక బాక్స్ వస్తుంది. దానిని OK చేయకుండా, cancel చెయ్యాలి. తరువాత, Windows key + R ప్రెస్ చేసి, Run బాక్స్ లో cmd అని టైప్ చేయాలి. DOS Prompt వస్తుంది. అక్కడ

2008-06-30

వేద సంహిత: dc.exe Virus Removal

2008-06-30 05:14 PM వర్మ (noreply@blogger.com)
dc.exe వైరస్ పూర్తి స్వరూపం dungcoi.exe ఇది సిస్టంలోకి memory cards, pendrives వలన ప్రవేశిస్తుంది. ఈ వైరస్ లక్షణం ఏమిటంటే ఇది కర్సర్ ను busy గా ఉంచి సిస్టంను చాలా స్లో చేస్తుంది. ఈ వైరస్ కు సంబందించిన exe ను ఫోల్డర్ రూపంలో c:\windows లో చూడవచ్చును. కానీ దానిని తొలగించలేము. తొలగించాలని చూస్తె The file is currently in use అని ఎర్రర్ మెసేజ్ వస్తుంది. దీనిని తోలగించడానికి avg కానీ, avast కానీ, Mcafe

వేద సంహిత: Taskmagager, Run, Regedit Disabled ?????

2008-06-30 05:08 PM వర్మ (noreply@blogger.com)
ఈ మద్య వస్తున్న చాలా వైరస్ లు మొదట సిస్టంలోని Taskmanager ను, Run , Registry Edit ను డిసేబుల్ చేస్తున్నాయి. ఈ వైరస్ లు Fun.Exe లేదా dc.exe వంటివి కావచ్చు . ఈ సందర్బంలో Task manager రన్ కాకపొవటం వలన ఎన్ని ప్రాసెస్లు రన్ అవుతున్నాయో తెలుసుకోవటం కష్టం అవుతుంది. కానీ సిస్టంను ఫార్మాట్ చేయకుండానే పై వాటిని restore చేయవచ్చును. http://od3n.net/download/ సైట్ లోకి వెళ్ళి Smart antivirus ను మొదట

2008-06-27

నా మదిలో ...: మీ బ్లాగరు బ్లాగుని వర్డుప్రెస్సు లోకి మార్చుకోవడం ఎలా ?

2008-06-27 06:51 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
మన తెలుగు బ్లాగర్లలో ఎక్కువ మంది బ్లాగరు లేదా వర్డుప్రెస్సులో బ్లాగుతుంటారు. బ్లాగరు మనకు కావలసినట్టు తీర్చిదిద్దుకోవడానికి, అన్ని అమరికలు చేసుకోవడానికీ అనువయినది. వర్డుప్రెస్సు లే మాన్ కూడా అనాయాసంగా నిర్వహించగలిగినది. కొద్దిగా కస్టమైజేషనూ వగయిరా చేసుకోవాలంటే బ్లాగరే బాగుంటుంది. అందుకే బ్లాగరులో ఎంతో అందంగా డిజైన్ చెయ్యబడిన థీములు, జనాలు జోడించుకునే ఆరెసెస్ లంకెలు, వగయిరా అందుబాటులో ఉంటాయి.

2008-06-23

వీవెనుడి టెక్కునిక్కులు: హైదరాబాదులో ఫైర్‌ఫాక్స్ 3 పార్టీ నివేదిక

2008-06-23 01:24 AM వీవెన్
హైదరాబాదులో నిన్న (ఆదివారం, జూన్ 22) ఫైర్‌ఫాక్స్ 3 పార్టీ విజయవంతంగా జరిగింది. మొత్తం 25గురు  ఫైర్‌ఫాక్స్ అభిమానులు హాజరయ్యారు. వయస్సుతో నిమిత్తం లేకుండా 15 సంవత్సరాల నుండి 70 పైబడిన వారి వరకూ వీరిలో ఉన్నారు. మీడియా నుండి సాక్షి విలేఖరి దీప వచ్చారు. మొదటగా పరిచయాలతో (పేరు తదితర వివరాలతో బాటు, మంటనక్కతో అనుబంధం ఎలా, ఎప్పటినుండి అన్న వివరం కూడా) ప్రారంభించాం. తర్వాత నేను సీడీలు పంచి దానిలోని ఉపకరణాల గురించి క్లుప్తంగా వివరించాను. [...]

2008-06-20

సాయిచరణ్: యాహూలో ఇప్పుడు రె౦డు కొత్త ఇమెయిల్ డోమెయిన్స్ వచ్చాయి !

2008-06-20 11:34 AM Sai Charan (noreply@blogger.com)
ఇ౦తకు ము౦దు యాహూలో రిజిస్టర్ చేసుకునేటప్పుడు మనకు @yahoo.com లేద @yahoo.co.in వ౦టివి వచ్చేవి కదా! కానీ ఇప్పుడు కొత్తగా యాహూ రె౦డు కొత్త ఇమెయిల్ డొమెయిన్స్ @ymail.com , @rocketmail లను అనౌన్స్ చేసి౦ది. దీని వల్ల మరో ఉపయోగ౦ కూడా ఉ౦ది. ఉదా : నేను @yahoo.com లో రిజిస్టర్ చేసుకోవాలనుకున్నాను , అప్పుడు అక్కడికి వెళ్లి రిజిస్టర్ చేసుకునేటప్పుడు saicharan అని టైప్ చేసి చెక్ చేసాను కానీ అది లేదు. అలా

2008-06-18

నా మదిలో ...: మంట నక్క ౩, ఇతరాలు ...

2008-06-18 04:44 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
మొత్తానికి మంట నక్క ౩ విడుదలయింది. వారు స్థాపించదలచుకున్న ఐదు మిలియన్ల దిగుమతుల రికార్డు ఎప్పుడో దాటేసారు (ఇప్పటికి ఎనిమిది మిలియన్లు దాటింది). వివరాలు ఇక్కడ. నిన్న అందరూ ఒకే సారి దిగుమతి చేసుకోవడానికి ప్రయత్నించడంతో దాని సర్వరు డౌనయింది కూడా. రాత్రి ఆన్లైనులో కనబడిన వారందరికీ దిగుమతి చేసుకోమని ప్రచారం చేసి నా వంతు నేను చేసాను (నేను కూడా దిగుమతి చేసుకున్నాను). అన్నట్టు వీవెన్, నేను రాత్రి

2008-06-17

వీవెనుడి టెక్కునిక్కులు: ఫైర్‌ఫాక్స్ 3 ప్రపంచరికార్డులో మీరు పాల్గొనాలంటే…

2008-06-17 07:18 AM వీవెన్
(భారత కాలమానం ప్రకారం) ఈరోజు రాత్రి 10:30 నుండి రేపు రాత్రి 10:30 లోపు ఫైర్‌ఫాక్స్ 3ని దిగుమతి చేసుకోండి. అప్పటి వరకు ఫైర్‌ఫాక్స్ 3 లోని విశేషాల గురించి తెలుసుకోండి. మీరు ఇతర దేశాలలో ఉన్నట్లయితే, దిగుమతి చేసుకోవాల్సిన సమయం సుమారుగా 17:00 UTC (మీ నగరంలో ఆ సమయం). ఆ సమయం నుండి 24 గంటలలోపు దిగుమతి చేసుకోవచ్చు. ఆనంద జాలా జ్వాలనం! తాజా సమాచారం: మీ ప్రదేశం ప్రకారం ఏ సమయమో చూపే పటం (Digital Inspiration నుండి): [...]

2008-06-12

వీవెనుడి టెక్కునిక్కులు: హైదరాబాదులో ఫైర్‌ఫాక్స్ 3 సంబరాలకు ఆహ్వానం!

2008-06-12 04:40 AM వీవెన్
మీ అభిమాన విహారిణి మంటనక్క యొక్క సరికొత్త వెర్షన్ (మంటనక్క ౩) ఈ నెల 17వ తేదీన విడుదలవ్వబోతుంది. ఈ సందర్భాన్ని పురస్కరించుకుని ప్రపంచవ్యాప్తంగా మొజిల్లా పార్టీలు జరుగుతాయి.  హైదరాబాదులో ఓ పార్టీని నేను (స్నేహితుల సహాయంతో) నిర్వహిస్తున్నాను. హైదరాబాదులోని వారికి ఇదే మా ఆహ్వానం! ముఖ్యమైన వివరాలు తేదీ మరియు సమయం: ఆదివారం, జూన్ 22, 2008 సాయంత్రం 4 గంటలనుండి 6 వరకు వేదిక: కృష్ణకాంత్ ఉద్యానవం, యూసఫ్ గూడ బస్తీ, హైదరాబాద్. (పటం) ఏం చేస్తాం మంటనక్క 3 మరియు [...]

2008-06-08

సాయిచరణ్: వాల్ పేపర్స్ అటోమెటిక్ గా ఛే౦జ్ అవ్వాలా ?

2008-06-08 11:04 AM Sai Charan (noreply@blogger.com)
జనరల్ ఏదైనా వాల్ పేపర్ సెట్ చేస్తే మళ్లి అది ఛే౦జ్ చేసేవరకు అలానే ఉ౦టు౦ది కదా! అలా కాకు౦డా డెస్క్ టాప్ పై వాల్ పేపర్లు ఎప్పటికప్పుడు అటోమెటిక్ ఛే౦జ్ అవుతూ ఉ౦డాల౦టే John’s Background Switcher అనే సాఫ్ట్ వేర్ ను ఉపయోగి౦చ౦డి. దీనితో మన పీసిలో లో ఉన్న ఇమేజ్ లతో పాటు Flickr, Phanfare, SmugMug, Picasa వ౦టి ఆన్ లైన్ ఫోటో షేరి౦గ్ సైట్స్ ను౦చి కూడా ఇమేజ్ లను సెలెక్ట్ చేసుకోవచ్చు కుడా! దీనిని ఉపయోగి౦చడ౦

2008-06-01

వీవెనుడి టెక్కునిక్కులు: బిగ్ బక్ బన్నీ, చిట్టి ఆనిమేషన్ సినిమా

2008-06-01 10:26 AM వీవెన్
బిగ్ బక్ బన్నీ అనేది ఓ చిన్న ఆనిమేషన్ సినిమా. ఈ సినిమా ప్రత్యేకతలు ఏమిటంటే, దీన్ని స్వేచ్ఛా మృదు పరికరాల (ముఖ్యంగా బ్లెండర్) ను ఉపయోగించి తయారు చేసారు మరియు ఇది ఓపెన్ సినిమా. ఓపెన్ సినిమా అంటే కేవలం సినిమా మాత్రమే కాకుండా దీని మూల ఫైళ్ళు (పాత్రలు వాటి ఆనిమేషనులు, టెక్చరులు, మొదలైనవి) కూడా మీరు పొందవచ్చు. వాటిని స్వేచ్ఛగా ఉపయోగించుకోవచ్చు కూడా. అంటే, సినిమా ఎలా తీసారో నేర్చుకోవచ్చు, ఇంకా [...]

2008-05-26

సాయిచరణ్: పోయిన జన్మలో మీరు ఎవరు ?

2008-05-26 04:55 PM Sai Charan (noreply@blogger.com)
‘వోరేయ్ బ౦టిగా ని చేష్టలు చూస్తు౦టే పోయిన జన్మలో కోతివై పుట్టి ఉ౦టావు’ అని సరదాగా మన స్నేహితులు , పెద్దవాళ్ళు అనడ౦ మీరు గమని౦చే ఉ౦టారు. కొ౦త మ౦ది వాళ్ళ గత జన్మలో ఎక్కడ పుట్టామో, ఏమి చేసేవాళ్ళమో అని సమయ౦ దొరికినప్పుడు ఆలోచిస్తు౦టారు కూడా! అ౦దులో నేను కూడా ఒకడిని :) నాకే కాదు ఎవరికైనా తమ గత జన్మ గురి౦చి తెలుసుకోవాల౦టే ఆసక్తే కదా! మీకు కూడా తెలుసుకోవాలని ఆసక్తి ఉ౦టే http://www.thebigview.com/

2008-05-23

వీవెనుడి టెక్కునిక్కులు: నేటి లింకు: ఎర్రబస్సు.in

2008-05-23 07:48 AM వీవెన్
ఆన్‌లైన్‌లో బస్సు టిక్కెట్ల బుకింగ్ వెబ్ సైటు (తెలుగులో)! ఎర్రబస్సు.in జట్టుకి అభినందనలు!

2008-05-14

సాయిచరణ్: ఎ సాఫ్ట్ వేర్ లేకు౦డా ఫోల్డర్ హైడ్ చేయడ౦

2008-05-14 05:17 PM Sai Charan (noreply@blogger.com)
ఎ సాఫ్ట్ వేర్ లేకు౦డా ఫోల్డర్ ని హైడ్ చేయల౦టే ఈ క్రి౦ది విధ౦గా చేయ౦డి : 1. ము౦దుగా ఎక్కడైనా New Folder ని క్రియెట్ చేయ౦డి. 2. తరువాత NotePad ఓపెన్ చేసి అ౦దులో క్రి౦ద ఇచ్చినది కాపి-పేస్ట్ చేయ౦డి. Quote: cls @ECHO OFF title Folder Private if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST Private goto MDLOCKER :CONFIRM echo Are you sure you want to

2008-05-12

ఈ-కబుర్లు: How I Recovered My Root Password in Debian Etch

2008-05-12 06:00 AM మురళీధర్ (noreply@blogger.com)
Debian Etch wouldn't let me into single user mode without the root password. I booted from the Debian CD and tried the rescue mode... didn't quite understand how to do it. So I had to take an alternate route. I understand that it is not the safest method, but it works. I booted into Ubuntu on my machine (I have Debian and Ubuntu running on the same machine; you can use a live CD instead) and

2008-05-09

ఈ-కబుర్లు: Defining Muralidhar

2008-05-09 11:07 AM మురళీధర్ (noreply@blogger.com)
The one qualification you need to live in this world is the ability to love. -Muralidhar Kamidi, circa 1997 And I love! That is the philosophy that drives my life. I love life, I love people, I love the cosmos... and I love everything! I just love to savor every moment of this existence in its fullness and glory. I believe that there is more to this life than what is tangible; and I believe

ఈ-కబుర్లు: My Personal Mission Statement

2008-05-09 10:39 AM మురళీధర్ (noreply@blogger.com)
I will be faithful to myself, sincerely and wholeheartedly in adhering to the following principles: GOAL IN LIFE I will spend my time working for a preset goal. I will work towards it slowly and steadily without being distracted.FAITH IN LIFE I will exercise the ability to choose my response consciously, creatively and independently with self-integrity and faith in God. I will understand,

ఈ-కబుర్లు: What is Love?

2008-05-09 10:33 AM మురళీధర్ (noreply@blogger.com)
Some see it as a feverish sense of longing and belonging; to some it's an overpowering force of possessiveness. For many it's an inexplicable, uncontrollable wave of energy... it's fear, it's dear, it's fragile but real! Love is perhaps a twin of entropy: too elusive to perceive, too random to organize, too evasive to escape, and too mythical to realize; too diverse to define and too complex to

సాయిచరణ్: మీ బ్లాగు ఖరీదు ఎ౦త ?

2008-05-09 09:39 AM Sai Charan (noreply@blogger.com)
జనరల్ గా అ౦దరు ఇల్లు, భూమి, కారు, క౦ప్యూటర్ల ఖరీదు తెలుసుకోవడానికి చాలా ఆసక్తి చూపిస్తు౦టారు కదా! కానీ ఇప్పుడున్న పరస్ధితిలో బ్లాగులకు కూడా పాపులారీటి పెరిగిపోయి ఇల్లు, భూమి, కారు, క౦ప్యూటర్ల జాబితాలో బ్లాగు కూడా వచ్చేసి౦ది మరి. తమ బ్లాగులకు ఎ౦త ఖరీదు ఉ౦టే అ౦త పాపులారీటి ఉ౦దని భావి౦చేవాళ్ళు కూడా ఉన్నారు. మీరు కూడా మీ బ్లాగు ఖరీదు ఎ౦త ఉ౦దో తెలుసుకోవాల౦టే http://simpl.es/XHagdu లోకి వె౦టనే వెళ్ళ౦డి

వీవెనుడి టెక్కునిక్కులు: నేటి లింకు

2008-05-09 05:17 AM వీవెన్
టీవి9 రవిప్రకాశ్ బ్లాగు (తెలుగులో లేదు)

2008-05-08

సాయిచరణ్: ఒకటేసారి అన్ని ఎ౦టీవైరస్ లతో స్కాన్ చేయడ౦

2008-05-08 08:53 AM Sai Charan (noreply@blogger.com)
మీరు గనుక ఎవైనా ఫైళ్ళను అన్ని ఎ౦టీవైరస్ లతో స్కాన్ చేయల౦టే http://www.virustotal.com/ అనే వెబ్ సైట్ బాగా ఉపయోగపడుతు౦ది. దీని ద్వారా మరో ఉపయోగ౦ కూడా ఉ౦ది అదే౦ట౦టే మీ ఫైల్ కి వైరస్ ఉ౦దనుకు౦దా౦ , దానిలో వైరస్ ఉ౦దని ఏ ఎ౦టీవైరస్ సాఫ్ట్ వేర్లు గురిస్తే అవి నాణ్యమైనవిగా మన౦ గుర్తి౦చవచ్చు. ఉదా. పై బొమ్మలో చూడ౦డి Bitdefender , Kaspersky , Fsecure నేను అప్లోడ్ చేసిన ఫైల్ లో వైరస్ ఉ౦దని రిసల్ట్ ఇచ్చాయి.

sowmyawrites .... » TechExperiences: A multi-lingual browser for WWW without pre-loaded fonts (1995)

2008-05-08 06:17 AM vbsowmya

I must have written my last remotely technical post some months ago :) However, there is one 1995 experiment about which I read only today and about which I wanted to share with others…

A multi-lingual browser for WWW without pre-loaded fonts,  Akira Maeda, Takehisa Fujita, Lee Swee Choo, Tetsuo Sakaguchi, Shigeo Sugimoto, Koichi Tabata,In Proceedings of ISDL95, August 1995.

However, as I read through this very short paper today, I can’t resist myself from writing about it. The concept appears interesting for me, as it eliminates the need for pre-loaded fonts on the client system. If this becomes(or did it became?) commercial, I believe, the problems of display, font installation etc will not exist and there will be absolutely no difference in browsing English and non-English sites.

Their idea is simple. They have demonstrated a new prototype called MHTML (Multilingual HTML). Their browser converts a HTML document to MHTML document, which involves in determining the set of characters in the document, assign code to each character, extract a font glyph for each character and reproduce the font on the client side browser. They have also compared this approach with other font-less approaches like - Image mapping and Character to inline map. This approach proved to be a better performer.

Iam somehow very fascinated by this idea and would love to know more on what happened afterwards. God knows how I found this 1995 paper in 2008 and am still fantasizing about it :) I am clueless on “what happened next?”. Anyone…who chanced upon this post and knows about it…please drop a comment.

2008-05-03

సాయిచరణ్: నేను సేకరి౦చిన కొన్ని హాస్య చిత్రాలు(Pics)

2008-05-03 03:11 PM Sai Charan (noreply@blogger.com)
Google Won’t Search for CHUCK NORRIS: Here is what you get when you type ‘find Chuck Norris’ in Google and click on “I’m Feelink Lucky” … HD DVD: We Hardly Got to Know Ya Hello, I am Linux! R.I.P Netscape Navigator [Nov. 1994 - Feb. 2008] Vista Error: “The Operation Completed Successfully” Oh Shit ! I can’t Find that WebPage Data Injector Describing Computer Hardware to a Noob Micosoft Tech

సాయిచరణ్: డిస్పోసబుల్ ఛాట్ రూమ్

2008-05-03 10:45 AM Sai Charan (noreply@blogger.com)
మీరు ఎప్పుడైనా డిస్పోసబుల్ మేయిల్, ఫోన్ న౦బర్లు విన్నారా ? అలా౦టిదే ఇది కూడా. ఈ సైట్ లోకి వెళ్ళీ ఒక పేరు ఇస్తే చాలు అప్పటికప్పుడు మనకు ఒక ఛాట్ వచ్చేస్తు౦ది.తరువాత ఆ లి౦క్ ని ఎవరికైనా ఇస్తే వాళ్ళు కూడా మీ ఛాట్లో లోకి వస్తారు. ఇలా౦టి ఛాట్ మీకు కూడా కావల౦టే http://www.chatmaker.net/ లోకి వెళ్ళ౦డి.

2008-04-29

సాయిచరణ్: ఓ చిన్న ట్రిక్ (ఎవరినైన ఆటపట్టి౦చడానికి)

2008-04-29 07:56 AM Sai Charan (noreply@blogger.com)
1. ము౦దుగా Notepad ఓపెన్ చేయ౦డి. 2. అ౦దులో ఈ క్రి౦ది విధ౦గా రాయ౦డి.@echo off start iexplore "www.msn.com" start iexplore "www.google.com" start iexplore "www.whooked.com" start iexplore "www.brainfeedlabs.com" 3. తరువాత దాన్ని సేవ్ చేసేటప్పుడు ఎదైనా పేరు ఇచ్చి చివరిలో .bat అని రాసి సేవ్ చేయ౦డి.4. అలా సేవ్ చేసుకున్న ఫైల్ ని ఎవరికైన ప౦పి౦చ౦డి. తరువాత వాళ్ళు ఆ ఫైల్ ఓపెన్ చేసిన వె౦టనే మీరు NotePad

2008-04-28

డి.వి.ఆర్.చౌదరి కంప్యూటర్ సందేహాలు: internet explorer title bar మీద పేరు మార్చటం....?

2008-04-28 09:09 AM డి.వి.ఆర్.చౌదరి (noreply@blogger.com)
మీ internet explorer యొక్క టైటిల్ బార్ మీద రెగ్యులర్ గా వుండే internet explorer బదులు మీ పేరు లేదా మీకు ఇష్టమైన పేరు రావలనుకొంటే ముందుగా start లోని Run కమాండ్ క్లిక్ చేయండి. అప్పుడు వచ్చే బాక్స్ లో gpedit.msc అని క్లిక్ చేయండి. ఇప్పుడు వచ్చే విండోలో user configuration క్లిక్ చేయండి. ఆ తరువాత వచ్చే విండోలో windows settings క్లిక్ చేయండి. ఆ తరువాత వచ్చే విండోలో Internet Explorer Maintainance

2008-04-26

డి.వి.ఆర్.చౌదరి కంప్యూటర్ సందేహాలు: మీ Drives కి సొంత ఇమేజ్ iconగా కావాలా?

2008-04-26 03:31 PM డి.వి.ఆర్.చౌదరి (noreply@blogger.com)
మీ Drives కి సొంత ఇమేజ్ iconగా కావాలా? ఆయితే ముందుగా image2icon అనే సాఫ్టువేరు డౌన్లోడ్ చేసుకొని మీ కంప్యుటర్లో ఇన్స్టాల్ చేసుకొని దాని నుండి మీకు కావలిసిన imageను iconగా create చేయండి. తరువాత దానిని ఎ డ్రైవ్ యొక్క iconను మార్చాలనుకొంటునారో ఆ డ్రైవ్ లో దీనిని కాపీ చేయండి. తరువాత ఆ డ్రైవ్ లో notepad ఓపెన్ చేసి దానిలో ఈ క్రింది విధంగా టైపు చేయండి. ఉదాహరణకు మీరు create చేసిన icon పేరు test.ico

2008-04-25

నా మదిలో ...: కుబుంటు హార్డీ హెరాన్ ...

2008-04-25 04:56 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com)
ఉబుంటు/కుబుంటు మరో సరికొత్త రిలీజుతో ఆకట్టుకుంది. సరికొత్తగా విడుదలయిన రిలీజు పేరు "హార్డీ హెరాన్". ఉబుంటు/కుబుంటు గురించి తెలియని వారికి, ఇది ఒక లినక్సు డిస్ట్రిబ్యూషను. డెబియన్ డిస్ట్రిబ్యూషను నుంచి వచ్చినది. ప్రతీ ఆరు నెలల రిలీజుతో "యూజబిలిటీ" మీద ప్రత్యేక దృష్టి కేంద్రీకరిస్తూ దూసుకుపోయే ఒక మంచి డిస్ట్రిబ్యూషను ఇది. గత కొద్ది ఏళ్ళుగా డేస్క్‌టాప్ పైన విండోసుకి బలమయిన ఉచిత ప్రత్యామ్నాయంగా

2008-04-24

డి.వి.ఆర్.చౌదరి కంప్యూటర్ సందేహాలు: free pdf printer drivers.........?

2008-04-24 02:13 AM డి.వి.ఆర్.చౌదరి (noreply@blogger.com)
pdf995 అనే సాఫ్టువేరు మీ కంప్యూటర్లో ఇన్స్టాల్ చేసుకొంటే మీ కంప్యూటర్లో prinetrs and faxes అను విభాగంలో pdf995 అని ఒక్క icon ఏర్పడుతుంది. మీరు ఏదైనా అప్లికేషన్ నుండి మీకు కావలిసిన ఫైల్ ని ప్రింట్ చేయలనుకోనప్పుడు ఆ ప్రింట్ option లో ఉన్నpdf995 ని సెలక్ట్ చేసుకొంటే మీ డాక్యుమెంట్ pdf ఫైల్ క్రింద సేవ్ అవుతుంది. web page నుండి కూడా ఈ విధంగా ప్రింట్ చేసుకోవచ్చు. ఇది రెండు భాగాలుగా డౌన్లోడ్ చేసుకొని
వ్యాఖ్యలు
2008-08-26
2008-08-26 06:50 AM జ్యోతి - Comments for నల్లమోతు శ్రీధర్ సాంకేతికాలు

ఈ సమీక్ష రాసిన పాలడుగు శ్రీకాంత్ ఎవరో కాదు. దైవానిక బ్లాగరు…

2008-08-25
2008-08-25 04:16 PM నిషిగంధ - Comments for నల్లమోతు శ్రీధర్ సాంకేతికాలు

One of the blogs I LOVE!! సుజాత గారసలు సీరియస్ విషయాలు చెప్తూనే కడుపుబ్బ నవ్వించేస్తారు..

సమీక్ష చాలా బావుంది శ్రీకాంత్ గారు! అభినందనలు..

2008-08-25 03:01 PM Purnima - Comments for నల్లమోతు శ్రీధర్ సాంకేతికాలు

A blog I admire! Reviewed well.

2008-06-27
2008-06-27 03:48 PM Prabhakar rao (noreply@blogger.com) - ..
chaala vupayogamgaa vundi sreedhar gaaru. nenu kooda blog creat chesukunnanu
2008-06-25
2008-06-25 09:12 PM Anonymous (noreply@blogger.com) - ..
సుధాకర్ రెడ్డి
2008-06-12
2008-06-12 06:06 AM rksistu (noreply@blogger.com) - కంప్యూటర్ మాయాజాలం!!....
Hi....Mee blog chalabagundandi.Meeku Telusa www.hyperwebenable.com site bloggers ki free ga websites isthunnaru.ippudu mee blog www.yourname.blogspot.com undi kada danini www.yourname.com ga marchuko vachhu free ga.www.hyperwebenable.com ee site ki vellandi anni details unaai.
2008-04-22
2008-04-22 09:04 PM Anonymous (noreply@blogger.com) - ..
Hello sridhar garu,me blog video chala bagundi.naku chala baga artham ayyindi.naku google adsense gurinchi cheppagalara.krishna
2008-04-20
2008-04-20 11:48 AM valluri (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
నల్లమోతు శ్రీధర్ మీకు వేవేల కృతజ్ఞతలు, నా వర్డ్`ప్రెస్ బ్లాగు 'దీపిక' ను ఒక అందమైన బ్లాగుగా మీ వంటి సాంకేతకనిపుణులు పేర్కోనటం నా అదృష్టం....వల్లూరి
2008-04-14
2008-04-14 01:56 PM gksraja (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
namaste! neninkaa idi upayogincha ledu kaani, ilaantivi chala mandiki chaala vupayogam. All the best.
2008-04-14 10:22 AM te.thulika (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
మీరు చెప్పినట్టు చేసాను.the file ... cannot be found అని వచ్చిందండీ.
2008-04-14 08:59 AM bojja.vasu (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
మంచి ఉపయోగకరమయిన సమాచారం.మీకు అభినందనలు.
2008-04-13
2008-04-13 10:38 AM Dr. Ram$ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
హాయ్ శ్రీధర్..నేను ఇప్పూడే చాట్ రూం లో కి వెల్లి నా సందేహ నివ్రుత్తి చేసుకున్నాను..మధు మరియు జ్యోతి గార్లు సహాయం చేశారు..వెబ్ లాకర్ డౌన్ లోడ్ చేసుకున్నాను.. నా సమస్యకి పరిష్కారమ్ లభించింది..నెనర్లు..
2008-04-13 09:57 AM Dr. Ram$ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
Sridhar గారు.. మీరు చెప్పినట్లు ట్రై చేశాను..కాకి కొన్ని వెబ్ సైట్ లు బ్లాక్ అవ్వడము లేదు.. ఇంకా వస్తూనె వున్నాయి.. ఉదహరణకి ": www.telugulo.com, www.koodali.org యిలా కొన్ని వస్తూనె వున్నాయి..ఎందుకని యిలా???
2008-04-09
2008-04-09 01:50 PM Anonymous (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
దీర్గాయుష్మాన్ భవ ! సకల ఐస్వర్య,ఆరోగ్య ప్రాప్తిరస్తు! కలకాలం ఇలా మంచి సమాచారం ఇస్తూ ఉండాలని...అభినందనలతో...వాసు.బి
2008-04-09 08:09 AM దైవానిక (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
మంచి విషయం చెప్పరు. ఇక నా రూమ్ మేట్ అయిపొయడంతే...
2008-04-06
2008-04-06 03:38 AM రామ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
అయ్యా.. ఇప్పటికే కంప్యూటర్ ముందు నుంచి కదలకుండా జనాలు మన దేశం లో కూడా obese అయిపోతున్నారు అని చెబుతున్నారు. కొన్నాళ్ళు పొతే USB రైస్ కుకర్, USB డిష్ వాషర్ లు కూడా వచ్చేస్తే ఇరవైనాలుగు గంటలూ కంప్యూటర్ దగ్గరే గడిపెయ్యచ్చేమో (ఏదో అనాలి కదా అని అంటున్నాను గాని, ఈ పరికరం నాకు కూడా నచ్చిందండి) :) .
2008-04-05
2008-04-05 03:09 PM Alchemist (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
శ్రీధర్ గారు, చాలా ముచ్చట గా ఉందండి ఈ పరికరం. ఖరీదు ఎంతొ చెప్పారు కాని ఎక్కడ దొరుకుతుందో చెప్పారు కాదు!
2008-04-05 06:38 AM raveendar (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
orkut is banned you fool ani vasthundi? deeniki solution cheppandi!plz?
2008-04-04
2008-04-04 04:05 AM M.Srinivas Gupta (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
Please do not download this software. Win32.Trojan-gen {vc} during download. Avast has been detected this malware. Guruvu garu,Please review the post once again
2008-04-04 03:59 AM M.Srinivas Gupta (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
I wish to our blog will be reach 50000 readers soon.
2008-04-02
2008-04-02 02:13 PM oremuna (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
Good one!another way to do the same...My Computer --> right click --> click on manage --> go to disk management --> view your disks and hide/change drive letters/format/mount on different directories etc.. etc..I really like the mount to different directory options. if you mount your secret drive to c:\windows\system\somedirectory\someotherdirectory\andsomeotherdirecty\..... there is good options
2008-04-02 12:23 PM gksraja (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
sridhar, jyothi gaarlaku abhinandanalu. Nenu ee roju nunde ee blogunu upayoginchukovadam modalu pettaanu.
2008-04-02 07:30 AM సిరిసిరిమువ్వ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
అభినందనలు. మీరు మొదలుపెట్టే ప్రతి పని ఇలానే విజయవంతం కావాలని ఆశిస్తున్నాను.
2008-04-02 06:58 AM Anonymous (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
అభినందనలు,మీ కృషి శ్లాఘనీయం.మరింత విజ్ఞాన సమాచారంతో మీరు స్వంత సైట్ మొదలుపెట్టి విజయవంతంగా నడపాలని ఆశిస్తూ...బొజ్జ వాసు
2008-04-02 05:58 AM జ్యోతి (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
శ్రీధర్ మరీ ఎక్కువ చెప్పేసాడు గాని.తన పత్రికలో బ్లాగులపై వ్యాసం కోసం బ్లాగు గుంపులోకి వచ్చిన శ్రీధర్ ని పోరి, బ్లాగు మొదలెట్టేలా చేసాను. అతను చాలా బిజీగా ఉంటాడు కాబట్టి ఆ సమయాల్లో అతని పత్రికనుండి పనికొచ్చే అంశాలు టైప్ చేసి బ్లాగులో పెడుతున్నా అంతే. నా జీవితంలో నేను చేసిన మంచి పనులు రెండు అని అనుకుంటున్నాను. ఒకటి మా పిల్లలను దగ్గరుండి బాగా చదువుకునేలా చేసి మంచి ఉద్యోగాలలొ స్థిరపడేటట్టు చేసా.
2008-04-01
2008-04-01 07:38 PM విహారి (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
చప్పట్లు..అభినందనలు..శుభాకాంక్షలు -- విహారి
2008-04-01 06:41 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
ఇరవై వేల మైలు రాయిని అందుకున్నందుకు మీకు అభినందనలు.ఉపయోగకరమయిన టపాలు ఇంకా ఎన్నో రాయగలరు.
2008-04-01 06:40 PM నిషిగంధ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
కంగ్రాచ్యులేషన్స్ శ్రీధర్ గారు, జ్యోతి గారు.. చాలా రోజుల క్రితం ఫాస్ట్ గా ప్రింట్ చేయడానికి ఒక చిట్కా చెప్పారు మీరు.. అది చాలా ఉపయోగపడుతుంది నాకు.. అప్పటినించీ మీ బ్లాగ్ మీద ఓ కన్నేసి ఉంచుతాను :))
2008-04-01 04:58 PM జ్యోతి (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
CONGRATULATIONS !!!!!!!!!!
2008-03-30
2008-03-30 06:35 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
చాలా మంచి ఆడాన్ ఇది. పనికొచ్చే సైట్ల మీద మాత్రమే జావాస్క్రిప్టు వగయిరాలను చేతనం చేసుకోవచ్చు.అలాగే దీనిని ఆడ్‌బ్లాక్ ప్లస్ తో కలిపి వాడితే బాగుంటుంది.
2008-03-30 09:58 AM నువ్వుశెట్టి బ్రదర్స్ (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
మీరిచ్చిన హెడింగ్ చదివిన తరువాత నాకూ స్టార్ట్ బటన్ బొమ్మ మార్చాలనిపిస్తూంది. థ్యాంక్స్ ప్రేమ ఎంత మధురం. కంప్యూటరంత కఠినం..
2008-03-29
2008-03-29 09:30 PM Anonymous (noreply@blogger.com) - నల్లమోతు శ్రీధర్ సాంకేతికాలు
లింకు పని చేయడము లేదు
2008-03-11
2008-03-11 02:29 PM godavari voddu (noreply@blogger.com) - ..
Godavari is a river is nearby my village and it deviding path for east godavari & west godavari
2008-03-02
2008-03-02 06:27 AM Lipikaar (noreply@blogger.com) - ..
Nice blog, especially refreshing to see content that appeals to the Telugu audience. I would like to introduce you to a quick and easy method of typing Telugu on the Web.You can try it live on our website, in Telugu!http://www.lipikaar.comDownload Lipikaar FREE for using it with your Blog.No learning required. Start typing complicated words a just a few seconds.> No keyboard stickers, no pop-up
2008-02-11
2008-02-11 01:27 AM chinni20 (noreply@blogger.com) - కంప్యూటర్ మాయాజాలం!!....
క్రోత్త తెలుగు సెర్చ్ సైటుhttp://www.gults.com/క్రోత్త తెలుగు సెర్చ్ మే సైటు కి ఆడ్ చేయండి
2007-11-29
2007-11-29 07:40 AM CassAmino (noreply@blogger.com) - కంప్యూటర్ మాయాజాలం!!....
Hi Uma ShankarGlad to have come across you. I immensely appreciate your love for our language - Telugu. I am happy to introduce you to http://www.atuitu.com a platform for Telugu People to be together and Express their voice with some innovative tools. Please do visit it and I shall be glad to have your feedback, contribution in terms of participation and see another ardent Telugu Lover on the
2007-11-22
2007-11-22 02:50 PM శక్తి (noreply@blogger.com) - ..
శ్రిధర్ గారు, స్వంత బ్లాగు లేని వారు కామెంట్ పోస్ట్ చేసే విధనం చెప్పగలరు.
2007-11-06
2007-11-06 09:39 AM sailaja (noreply@blogger.com) - ..
I have created a blog. I am unable to open the video showing " how to type in telugu. kindly helpme.sailaja.
2007-10-04
2007-10-04 02:45 PM Sridhar (noreply@blogger.com) - ..
శ్రీధర్ గారు! నేనో సైట్ లో చూచినట్టు గుర్తు. Sitemeter కు బదులుగా, కౌంటర్ వుంటుంది. అది నెంబర్స్ ని చూపిస్తుంది.(No. of Hits laaga) అదెలా?
2007-09-19
2007-09-19 06:59 AM anil (noreply@blogger.com) - ..
సూచనలు తెలుగు/ఆంగ్లం రెండు భాషలఓ ఇస్టే బాగుంటుంది.
2007-09-15
2007-09-15 06:21 PM ప్రవీణ్ గార్లపాటి (noreply@blogger.com) - ..
శ్రీధర్ గారు:మీ వీడియోలు కొత్త వారికి చాలా ఉపయోగపడగలవు. వీటి లంకెలు సహాయ కేంద్రం లో ఉంచుతున్నా. అలాగే ఓ సూచన. వీడియోలు