Perpetual charging on the go for your Android phone might no longer be a distant dream, courtesy the new AirPower technology developed by RCA which sucks power from WiFi signals and constantly charges your phone’s battery.
Read more.
Mobile Application Development On Symbian
For all those who are not too sure what Symbian is . It is an Operating System for Smartphones used widely by leading mobile phone manufacturers like NOKIA, Samsung, Sony-Ericsson. And hold your breadth, virtually 50% of all smart-phones run on Symbian ( these figures are not cooked up)....
Read more.
Read more.
The Wonders of the MIT Media Lab
The Media Lab at the Massachusetts Institute of Technology (MIT) is the kind of place that makes you think the future might not be so scary after all. Instead of being a wasteland overrun by machines hell-bent on human destruction, the students here are encouraged to build the kind of future they want to see. And that’s more likely to mean a world full of Star Trek gadgets and friendly robots that want to make you a cup of fair-trade coffee. Read more....
Conversion of C/C++ program to Assembly Language using g++ compiler
Use the following statement :
c program: Int.c
g++ filename.c -S
org++ filename.cpp -S
example 1:c program: Int.c
#include
int main()
{
int a =10;
int *p = (int *)&a;
*p = *p + 1;
printf("Value at pointer p = %9d\nValue of a = %9d\n",*p, a);
printf("Value of pointer p = %9u\nAddress of a = %9u\n",(unsigned int)p,(unsigned int)&a);
return 0;
}
statement executed at the terminal:int main()
{
int a =10;
int *p = (int *)&a;
*p = *p + 1;
printf("Value at pointer p = %9d\nValue of a = %9d\n",*p, a);
printf("Value of pointer p = %9u\nAddress of a = %9u\n",(unsigned int)p,(unsigned int)&a);
return 0;
}
Create, Read and Write MS EXCEL files from JAVA
Following are the potential of the Apache-POI project APIs, following can be done within java code itself using link given at the end of this post.
SOFTWARES
UBUNTU:
Google Chrome web-browser
Adobe Flash Player
Picasaflock web-browser
MiniLyrics Alternative
Oracle XE(Express Edition)
Windows XP:
Youtube Video Download S/W
Google Chrome web-browser
Adobe Flash Player
Picasaflock web-browser
MiniLyrics Alternative
Oracle XE(Express Edition)
Windows XP:
Youtube Video Download S/W
Java Database Connectivity(JDBC) with oracle XE 10g (on localhost)
Connection URL:
jdbc:oracle:thin:@127.0.0.1:1521:XE","username","password"
jdbc:oracle:thin:@127.0.0.1:1521:XE","username","password"
Open source for Website Development
Hello Everyone!!
I was looking for softwares which may allow to develop a website by people sitting at different locations. I have come across some softwares (but these may not be what i was looking for..) -
I was looking for softwares which may allow to develop a website by people sitting at different locations. I have come across some softwares (but these may not be what i was looking for..) -
- Joomla
- Joomlaperformance - for Joomla Extensions
- Cakephp- Start Guide.
- Moovum - Anti-spam software for Joomla websites
- Elxis- Features, System Requirements, Getting started.
Windows: Edit the list of users at the Welcome Screen(Tetsed on XP SP2)
Run regedit
Goto the following from the left navigation windows:
Microsft > Windows NT > Winlogon > SpecialAccounts > UserList
If 'Name123' is the username of the account you don't want at windows welcome screen then:
Edit > New > DWORD Value
Name it Name123.
But still one can access the hidden user account by pressing Ctrl+Alt+Delete and manually filling up username and password.
Deleting the above created entry later will bring back the username at the welcome screen at all times.
Goto the following from the left navigation windows:
Microsft > Windows NT > Winlogon > SpecialAccounts > UserList
If 'Name123' is the username of the account you don't want at windows welcome screen then:
Edit > New > DWORD Value
Name it Name123.
But still one can access the hidden user account by pressing Ctrl+Alt+Delete and manually filling up username and password.
Deleting the above created entry later will bring back the username at the welcome screen at all times.
Want to check which port is being used by which process in Windows?
Execute the following in cmd.exe:
netstat -aon
for the list of all open ports and corresponding process Ids (pid).
Name of the application for a particular pid can be retrieved by:
tasklist
Filters can be applied in the above commands in case the output is verbose using pipeline ( | ) :
Example:
netstat -aon | findstr 3306
It will show only those line which has 3306.
netstat -aon
for the list of all open ports and corresponding process Ids (pid).
Name of the application for a particular pid can be retrieved by:
tasklist
Filters can be applied in the above commands in case the output is verbose using pipeline ( | ) :
Example:
netstat -aon | findstr 3306
It will show only those line which has 3306.
Subscribe to:
Posts (Atom)