2010-03-11
తెలుగు లో కంప్యూటర్స్: *e-నాడు లో నా చిన్న e-టిప్ - 3
2010-03-09
desktoppublishing: పేజిమేకర్ ప్రాథమిక పరిగ్జ్నానం (Introduction)
తెలుగు లో కంప్యూటర్స్: *ఓపెన్ సోర్సు softwares డౌన్లోడ్ చేసుకోవడానికి రెండు మంచి వెబ్సైట్లు.
2010-02-26
వీవెనుడి టెక్కునిక్కులు: రోజువారీ సమాచార వినియోగంలో తెలుగు — నా ఆకాంక్షలు

2010-02-24
వీవెనుడి టెక్కునిక్కులు: అభిప్రాయ సేకరణ: మీ రోజువారీ సమాచార వినియోగంలో తెలుగు ఎంత?

2010-02-20
నా మదిలో ...: గూగుల్ బజ్, ప్రైవసీ సమస్యలు...
2010-02-19
2010-02-18
Bharath Radhekrishna: Migration and Export of a Subsite of one Portal to a different Portal in SharePoint Server
Export of a Subsite of one Portal to a different Portal
While there are multiple way to backup / export and restore / import a SharePoint site, I tried to summarize few of the most frequently used approaches here:
Approach #1: Through Content Deployment Wizard (UI) – Easy Way
Approach #2: Through STSADM (command prompt) – For automation purpose.
Approach #3: Through your own program – For customized export and import.
Way #1: Easy Way
One easy way is to use Sharepoint deployment wizard from codeplex.
There are also other ways like:
- 1. Ave Point’s Doc Ave
- 2. SharePoint Site Migration Manager by Metalogix
- 3. STSADM
Here I am providing some screen shots with Sharepoint deployment wizard from codeplex.
Figure 1: Exporting Content
Figure 2: Select action (import or export) and provide site URL:
Figure 3: For export, use the tree view to select which content you wish to deploy. On container objects such as webs, there are options about whether descendent objects should be included:
Figure 4 Complete Export
IMPORTING CONTENT
Figure 5: Browse to the .cmp file we exported in the previous steps, and select options around security, versions and, importantly for some scenarios, whether object IDs should be retained:
Figure 6: The details are shown back for confirmation, and when ‘Finish’ is clicked the import will begin:
And that’s the gist of it. This is the first beta of the tool and I’m sure there will be issues. Regardless, when using any tool which makes this kind of change to your data you should always take a backup before performing the import. Depending on what you’re doing, it could be difficult to revert back to the previous state otherwise.
Some other notes:
- the tool must be installed locally on the server which hosts the site
- not all features of the Content Migration API are supported by the tool
Way #2: Automated Way
We can consider using this way to create the batch files which could be used in automating the deployment process.
stsadm.exe -o export
-url <URL to be exported>
-filename <export file name>
[-overwrite]
[-includeusersecurity]
[-haltonwarning]
[-haltonfatalerror]
[-nologfile]
[-versions <1-4>
1 - Last major version for files and list items (default)
2 - The current version, either the last major or the last minor
3 - Last major and last minor version for files and list items
4 - All versions for files and list items]
[-cabsize <integer from 1-1024 megabytes> (default: 25)]
[-nofilecompression]
[-quiet]
Way #3: Through your own program
SPSite site = new SPSite(“http://localhost:2000″);
SPWeb web = site.OpenWeb(“/SomeWeb”); // This is the sub site.
SPExportObject exportObject = new SPExportObject();
exportObject.Id = web.ID;
exportObject.IncludeDescendants = SPIncludeDescendants.All;
exportObject.Type = SPDeploymentObjectType.Web;
SPExportSettings settings = new SPExportSettings();
settings.SiteUrl = ”http://localhost:2000″;
settings.ExportMethod = SPExportMethodType.ExportAll;
settings.FileLocation = @”c:\export”;
settings.FileCompression = false;
settings.ExcludeDependencies = false;
settings.ExportObjects.Add(exportObject);
SPExport export = new SPExport(settings);
export.Run();
web.Dispose();
site.Dispose();

2010-02-06
నా మదిలో ...: ఫేస్బుక్... కథా కమామీషు
2010-01-30
sowmyawrites .... » TechExperiences: Neuro Science lessons for the day : Hysteria
I was reading one of V.S.Ramachandran’s 2003 Reith lectures, titled – ‘Neuro Science – The new philosophy’, in which he introduces a new approach to neuro science – called ‘Evolutionary neuro-psychiatry’. Well, despite all my ignorance to brain and its science, I find it an irresistable temptation to read about them. Despite all those intimidating names like – amygdala, hippocampus, fusiform gyrus, penfield homunculus – (whatever… there are 100s of such names..in these 5 lectures itself), I can’t resist reading these things.
Oh, I usually dont remember a single scientific name among these after completing the essay. What I take with me are only the answers to some questions. Its like -
“Why does synesthesia occur?”
“Because of a cross connection between the color and number areas” is a decent enough explanation for me. I can go beyond that a bit and explain- without going to the extent of a scientist. As a commoner, thats more than enough for my appetite.
Ok, coming to why I began writing this – its because of “Hysteria“. The word hysteria conjures up an image of a angry female shouting madly as if she lost her wits (somehow, its always a female). So, when I came across that word in VSR’s essay, and his actual ‘medical’ definition for that, I was shocked. Here it goes:
“In the strictly medical sense, the word means that here is a patient who suddenly develops a paralysis of an arm or a leg, but if you examine this patient neurologically there are no deficits, brain MR scan reveals that the brain is apparently completely normal, there are no identifiable lesions, there’s no damage. So the symptoms are dismissed as being purely psychological in origin.”
Wow! Is there any slightest relation to its popular usage?
If you want to stop here and go read that article, go here. I was surprised at this ‘hysterically’ different meaning of the word in medical and non-medical diction, and thought of exploring the web a bit.
A look at the wikipedia page – gave me an impression that its a woman thing. (Just as I see a woman’s image all the time). But, Ramachandran’s definition does not mention anything of that sort.
A look at the medical dictionary online (here) gave me two distinct names, finally:
Hysterical disorder is the the one VSR explained.
Histrionic disorder – is hysteria in the mango people lingo.
The same have also been referred to as ’somatization disorder’ and ‘conversion/dissociative disorder’ respectively, says another dictionary.
What baffles me again, is the origin of the word.
“Until the seventeenth century, hysteria was regarded as of uterine origin (from the Greek “hustera” = uterus) in the Western world. “
(More on this in the Wiki page)
-Where did its journey began? Where is it now?
Well, more than the evolution of language, evolution of word meanings is interesting me now

2010-01-29
sys world: ఫోటోషాప్ ట్యుటోరియల్: కన్ను బ్లింకింగ్ యానిమేషన్
2010-01-28
టెక్ చిట్కా: ఇన్స్క్రిప్ట్ చిట్కాలు
2010-01-23
టెక్సేతు - సాంకేతికాల గమనాగమనాలు: లోకల్ హోస్టు లో వెబ్సైటు
మీరు మీ వెబ్ సైటును మొదటిసారి ప్రారంభిస్తున్నా లేదా ఏదైనా పెద్ద మార్పిడి చేస్తున్నా, అది ఎలా కనపడుతుందో మొదట మీ కంప్యూటర్ లో ఒక సారి చూసుకోవటం మంచిది, మరియూ వేగవంతమూను. క్రింది పాఠ్యాంశం లో ఉబుంటూ(లినక్స్) లోకల్ హోస్టులో ఈ పనిని చేయటానికి ఏ సాఫ్ట్వేర్ లు కావాలో, వాటిని ఎలా ఇన్స్టాల్ చేసుకోవాలో చూద్దాం.
2010-01-22
sowmyawrites .... » TechExperiences: On Synesthesia and Vilayanur Ramachandran
I was reading one of the BBC Reith Lectures of 2003 by V.S.Ramachandran, the famous neurologist. I would rather prefer to call him a ‘psycho physicist’ if there is a word like that. This lecture was on ‘synesthesia‘ and its implications as well as applications in the real world. It was a joy reading this essay. Its not just about knowing what synesthesia is. A wikipedia page will do to get a definition. It was the explanation, interpretation and getting it till – “evolution of language” – all done in a simple and easy to understand manner – that is making me write this post.
Okay, let me brief on what ‘Synesthesia’ is. ‘Synesthesia’ can be understood as a cross-relation between different senses. The typical example : mapping numbers to colors. (See this figure). In this figure, if you view the left hand side as the right hand side – it means that you are a synesthete
. Well, I didn’t. I did not see the triangle pattern of 2s when I saw the figure, because, I saw 5 as 5 and not “green” – thats exactly what synesthetes do.
And my doubts on the causes- The article mentioned four common explanations that were proposed for this issue:
1. These people are just crazy
2. They may be under the influence of drugs
3. They are just recalling some childhood memories
4. This might indicate how metaphors work
-For point 3, VSR mentioned a logic saying – But sinesthesia is hereditary. How can people have same childhood memories over generations? I wonder – doesn’t that logic apply for 2 and to some extent – 1? I mean – may be “craziness” is hereditary in some cases. But, sometimes it may not be right ? (Iam not a doc
I am just guessing that it need not be hereditary always). So, VSR’s logic should hold true for points 1 and 2 too – is my understanding.
The best part of this reading experience is that : if you are a neuro science person, you can enjoy this as a good technical read. If you are a lay-person like me – you can still enjoy reading this.
It was a joy reading this book – so far…
A text version is available on the BBC site here.
(I read it in the book – a collection of these lectures titled : “The Emerging Mind”)

2010-01-21
sys world: Photoshop: Avatar Tutorial
2010-01-20
టెక్సేతు - సాంకేతికాల గమనాగమనాలు: లినక్సులో డ్రైవ్ పేరు మార్చడం ఎలా?
ఫైళ్ళనూ మరియు ఫోల్డర్లను చూపటానికి లినక్స్ నాటిలస్ ను వాడుతుంది. కాని ఈ నాటిలస్ ప్రస్తుతం డ్రైవ్ ల పేర్లు మార్చటానికి ఉపయోగపడదు. లినక్సులో ఈ సమస్యకు విరుగుడుగా రెండు పరిష్కారాలున్నాయి. ఈ ప్రక్రియలు పెన్ డ్రైవులకు కూడా వర్తిస్తాయి.
2010-01-12
తెలుగు 'వాడి'ని: Acer Recalls Thousands Of Notebooks Over Burn Concerns
ఉమాశంకర్: గూగుల్ అవార్డ్ విన్ని౦గ్ Doodle4 లోగో
2010-01-11
టెక్ చిట్కా: గూగుల్ రీడర్ పరిచయం
2010-01-05
తెలుగు 'వాడి'ని: Turn Your Wordpress/Blogger Blog in to an E-Book
2009-12-31
తెలుగు టెక్నాలజీ బ్లాగ్!!!: ఈ న్యూ ఇయర్ కి కొన్ని సాంపిల్ ఎస్.ఎం.ఎస్ లు ( పంపుకోండి మీ ఫ్రెండ్స్ కి )
తెలుగు టెక్నాలజీ బ్లాగ్!!!: తెలుగు వారందరికీ నూతన సంవత్సర శుభాకాంక్షలు !!!
2009-12-26
desktoppublishing: అమ్మాయిల ఆకర్షణలో అబ్బాయిలు
2009-12-17
తెలుగు 'వాడి'ని: [ How to Earn Money Out of Your Blog ] .... Amazon Associates and Google AdSense
టెక్ చిట్కా: ఫేస్బుక్ (Facebook) తెలుగులో రావాలంటే...
2009-12-13
నా మదిలో ...: SaaS - సాఫ్ట్వేర్ ఒక సర్వీసు లాగా...
2009-11-18
పే-చక్-చా: కంపూటర్లు-చెత్తకుండీ-ఫ్రీ సాఫ్ట్వేర్లు
2009-11-17
పే-చక్-చా: "ఎవరీ బ్లాగరి..గూడచారి 116 ఊహాగానాలు"
పే-చక్-చా: "ఒక్కమొగాడు..ఒక్క టపా".ఫోటో కథా కమిషనూ!
2009-11-15
ఉమాశంకర్: గూగుల్ అవార్డ్ విన్ని౦గ్ Doodle4 లోగో
2009-11-12
విశ్వ: ఫైర్ ఫాక్స్ లో త్రీడి ఎఫెక్ట్స్
2009-11-08
విశ్వ: ఉబుంటు నెట్ వర్క్ అప్ గ్రేడ్
2009-11-01
నా మదిలో ...: ఆరెస్ఎస్ పబ్సబ్హబ్బబ్ ...
2009-10-06
MataManthi » టెక్నాలజీ: మైక్రోసాఫ్ట్ ఏంటీ వైరస్ ను ఉచితం గా పొందండి
మైక్రోసాఫ్ట్ సంస్థ తన ఏంటీ వైరస్ సెక్యూరిటీ ఎస్సేన్షియల్స్ ను విపణి లోకి ప్రవేశ పెట్టింది. దీనిని వినియోగదారులకు ఉచితం గా అందిస్తున్నారు.

మైక్రోసాఫ్ట్ సెక్యూరిటీ ఎస్సేన్షియల్స్ మీ పర్సనల్ కంప్యూటర్ కు వైరసులు, స్పై వేర్ మరియు ఇతర ప్రమాదకరమైన సాఫ్ట్ వేర్ ల నుంచి రక్షణ కల్పిస్తుంది.
దీనికి అవసరమైనటువంటి సిస్టం కాన్ఫిగరేషన్:
- ఒరిజినల్ విండోస్ ఎక్స్.పి (సర్వీసు ప్యాక్ 2, సర్వీసు ప్యాక్ 3), విండోస్ విస్టా (గోల్డ్, సర్వీసు ప్యాక్ 1, సర్వీసు ప్యాక్ 2), విండోస్ 7
- విండోస్ ఎక్స్.పి కి 1 జీ.బీ రామ్, 500 మెగా హెర్ట్జ్ లేదా అంత కన్నా ఎక్కువ క్లాక్ స్పీడ్ కలిగిన సి.పి.యు కలిగి ఉండాలి
- విండోస్ విస్తా మరియు విండోస్ 7 కి 1 జీ.బీ రామ్, మరియు ఒక జిగా హెర్ట్జ్ లేదా అంత కన్నా ఎక్కువ క్లాక్ స్పీడ్ కలిగిన సి.పి.యు కలిగి ఉండాలి
- వి.జి.ఎ డిస్ ప్లే 800×600 లేక అంత కన్నా ఎక్కువ అయ్యి ఉండాలి
- 140 ఎం.బీ హార్డ్ డిస్క్ స్పేస్ కలిగి ఉండాలి.
- ఇన్స్టాలేషన్, డౌన్ లోడ్, అప్ డేట్ లకు ఇంటర్నెట్ సదుపాయం కలిగి ఉండాలి.
2009-09-26
జాలరి! » computers(కంప్యూటర్స్): ఇంగ్లీషు రాని వారికి తెలుగులో కంప్యూటర్ విద్యను అందించటానికి తోడ్పడండి!
నమస్కారం,
తెలుగులో సాంకేతిక సహాయం అందించడానికి గాను మొదలైన టెక్సేతు గురించి మీరు వినే ఉంటారు. ఇప్పటికి సైటులో సాంకేతిక లోపాలు (తెలిసినంతలో) అన్నీ సరిచేశాము. ఇప్పుడు ఈ ప్రయత్నం ఇంకో మెట్టు పైకి వెళ్ళేలా; మరింతమంది రచయితలు తోడైతే, ఆ ఊపుతో ఇంకాస్త వేగంగా టపాలు చేరి, మరిన్ని విషయాలు పాఠకులకి చేరువవుతాయన్న ఉద్దేశ్యంతో ఆసక్తిగల రచయితల్ని సవినయంగా ఆహ్వానిస్తున్నాము.
మీకు ఉన్న సమయాన్నిబట్టీ, మీరు టపాలు మైల్ చేసి కూడాసహకరించవచ్చు.
contact@techsetu.com చిరునామా ను మీ పేరు, వివరాలతో సంప్రదించగలరు.
ధన్యవాదములు.

2009-09-20
MataManthi » టెక్నాలజీ: పెద్ద ఫైల్స్ ని పంపాలనుకుంటున్నారా: ఎలాగో చూడండి
ఎప్పుడైనా మీ మిత్రులతో సన్నిహితులతో మీవద్ద ఉన్న సమాచారాన్ని, లేదా వేరే ఎవన్నా ఫైల్స్ ని పంచుకోవాల్సిన అవసరం వస్తుంది. అటువంటి అప్పుడు పెద్ద పెద్ద ఫైల్స్ ని వారికి ఇంటర్నెట్ ద్వారా ఎలా పంపగలమో చూద్దాం.
ఈమెయిలు ని ఉపయోగించండి: గూగుల్, యాహూ వంటి ఈమెయిలు సర్వీసుల ద్వారా 25 ఎమ్ బి వరకు డేటా పంపవచ్చు. కాని 25 ఎమ్ బి ని మించి సమాచారాన్ని పంపటం వీటి ద్వారా సాధ్యం కాదు. అంతకన్నా ఎక్కువ దాతా ను పంపాలి అని అనుకుంటే లైకొస్ మెయిల్ (lycos mail ) ని ఉపయోగించవచ్చు. దీనికి అనుసంధానించే (attach ) చేసే సమాచారం పై కాని ఫైల్ సైజు పై కాని ఎటు వంటి నియంత్రణ లేదు. కాని ఆ సమాచారాన్ని పంపే వారు, అందుకునే వారు ఇరువురు లైకొస్ మెయిల్ ను మాత్రమే ఉపయోగించాలి.
విభజించి (split ) ఈమెయిలు చెయ్యండి: ఎహ్ జే స్ప్లిట్ (HJsplit ) వంటి సాఫ్ట్ వేర్ లని ఉపయోగించి మీ ఫైల్ ని చిన్న చిన భాగాలు గా విభజించి ఈమెయిలు చెయ్యవచ్చు. దానిని అందుకున్న వారు తిరిగి ఆ సమాచారాన్ని ఎహ్ జే స్ప్లిట్ (HJsplit ) తో జోడించి దాన్ని ఉపయోగించుకోవచ్చు.
బిట్ టోరెంట్ (bit torrent ) ని ఉపయోగించండి: మీరు పంపదలుచుకున్న సమాచారం ఎంత పెద్దది అయినా బిట్ టోరెంట్ ద్వారా మీరు దాన్ని పంపదలుచుకున్న వారికి పంపవచ్చు. ఇది పియర్ తో పియర్ నెట్ వర్క్ గా పని చేస్తుంది. మీ హార్డ్ డిస్క్ లో ఉన్న ఎటువంటి సమాచారాన్ని, ఫైల్ ని ఆయినా మీరు చేర్చదలుచుకున్న వారితో పంచుకోవచ్చు.
ఫైల్ షేరింగ్ సర్వీసెస్ (file sharing services ) ఉపయోగించండి: ఇంటర్నెట్ లో ఉచితం గా డబ్బులకు ఎన్నో ఫైల్ షేరింగ్ సర్వీసెస్ ఉన్నాయి. వాటి ద్వారా మీ డేటా ని మీరు పంచుకోవచు. మీరు అప్ లోడ్ చేసిన డేటా ను మీ స్నేహితులు ఆ లింక్ ను ఉపయోగించుకుని డౌన్ లోడ్ చేసుకోవచ్చు. మీరు ఉపయోగించుకోగాలిగిన కొన్ని ఫైల్ షేరింగ్ సర్వీసెస్ ను కింద అందిస్తున్నాము. కాని వీటిని ఉపయోగించినా మీ డేటా పై మీకు ఎటువంటి నియంత్రణా ఉండదు. దానిని ఎవరైనా డౌన్ లోడ్ చేసుకోగలుగుతారు.
XDrive.com
yousendit.com
Box.net
dilbertfiles.com
Windows Live
Skydrive
Rapidshare
MegaUpload









