Translate

Showing posts with label praveen. Show all posts
Showing posts with label praveen. Show all posts

Sunday, March 31, 2019

PravySoft Home


Number one project center.Main office at calicut and dealing with Electronics as well as Computer science projects

Websites: 
Please visit our websites for more details
http://pravysoft.org


Want to know latest Electronics and Computer science projects for Academic purpose, or you need a free advice from our technical advisers then contact us.
Email:  info.pravysoft@gmail.com

Contact number: 09995600679



News:SECURED BEST ROBOTIC PROJECT-2012 AWARD FROM IUAPPC,GOV: INDIA

JAVA,PHP,ANDROID, VLSI,ASP,C#.NET,VB.NET, Embedded System Projects

PravySoft is a Group of Partners, Colleagues and Associates from Business, Education, Government, Industry and the Sciences with wide ranging experience in High Technology projects.our services available at Calicut,Kochi,Kannur and Trivandram. 

PravySoft provides customers with Technology Consulting, Technology Contracting, Systems Integration, Project Management, and Research and Development Services. We work closely with our clients to help them define their problems and to develop a cost effective strategy to meet their needs.

The founder of PravySoft is Mr.Praveen Thappily. We provide Electronics as well as Computer projects. We believe in open source concept so many of our software/projects packages are available for you without any fee...

You will get PHP, C#.NET, VB.NET, ASP.NET,JAVA, Android projects from us....

If you want electronics projects like Embedded system, VLSI, DSP projects please contact us we will give you circuit diagrams and abstracts of great/new projects. We are dealing M.Sc ,B.Sc, B.tec, M.tec. Ph.D final year  projects. Diploma projects are also available here.


Want to know ethical hacking. We are also providing classes for ethical hacking.






Wireless LANs and WANs (local and wide area networks) for data collection and sales force automation, including the use of PDAs (personal digital assistants with bar code readers, laser scanners…)

To contact us(For Projects,To become our client,Need Free embedded system,VLSI training) just email us.


Contact number:9995600679

info.pravysoft@gmail.com

WEBSITES

http://pravysoft.org 


We are in "MALAYALA MANORAMA" news click here to read ePaper  

Saturday, February 8, 2014

Give this Free Surprise Gift to your Loved one on this Valentines day!!


Dear Friends,
This is February, the month of "LOVE". On this valentine's day give a very interesting gift to your loved one (Lover, Father, Mother, Brother, Sister Husband or Wife!!). This is a very small but funny software running in windows Operating System. Please send the download link (or the software) to your loved one.


=======================================================================
Please draft  an email or Facebook message with the following details and sent it (Of course you can change the content!!)


Hi,
This is a valentines day gift for you. Please click here to download this software. Please use a windows PC to run this. If you are unable to click the link, please copy and paste the following URL in a browser.

http://pravysoft.eu5.org/software/I_LOVE_YOU.zip

With lots of love
(Your name)


=======================================================================

Click here to download the Software
http://pravysoft.eu5.org/software/I_LOVE_YOU.zip

Features
  • Very small size
  • Portable
  • Run in all versions of Windows
  • Small resources use
  • Don't want to install software
  • Can stop the software using esc key
This software is created by Praveen Thappily. Click here to know more about him.



Monday, March 7, 2011

webspider


PHP web spider
Tutorial below shows how to make custom search engine by using yahoo boss api. If you're looking for search engine customization, then building your own search engine is something you'll want to look into. Here we are using an api provided by yahoo search service. Search APIs are nothing new, but typically they've included rate limits, strict terms of service regarding the re-ordering and presentation of results, and provided little or no opportunity for monetization. 

These constraints have limited the innovation and commercial viability of new search solutions. The name of the api is BOSS.
BOSS (Build your Own Search Service) is different; it's a truly open API with as few rules and limitations as possible. With BOSS, developers and start-ups now have the technology and infrastructure to build next generation search solutions that can compete head-to-head with the principals in the search industry.
Now we can go through the code
At first you need to create an HTML web search page as shown below

pravysoft



search




you will get a text box ,shown below
pravysoft<span style="">  </span>web search
search
Here I am created a text box with name “search” and a submit button. Here I am used POST method for sending form variables. For simple usage action=””, which means post the information on the same page.
Now we can look on the main code for web search engine.
if(isset($_POST['submit']))
{
$search=$_POST['search'];
$request="http://boss.yahooapis.com/ysearch/web/v1/".$search."?format=xml&appid=Uz.......................";
//replace appid with your id
$ch = curl_init($request);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$xml = simplexml_load_string (curl_exec($ch));
// Display search results - Title, Date and URL.
foreach ($xml->resultset_web->result as $result) {
 print ''.$result->title.'
';
}
}
?>

At first you can see isset($_POST['submit']) code .which checks whether user clicked on the submit button or not. if this function returns 1.that means user clicked on the button.Then read the contents of the text box with the help of POST function.on the next step you have to replace “ appid” with your own BOSS id


You will get api id from yahoo boss web site BOSS web site
after replace the pravysoft appid with your own boss id .you can easily make your own web spider.
Now we can go through the PHP cURl function.cURL is a library which allows you to connect and communicate to many different types of servers with many different types of protocols. Using cURL you can:
  • Implement payment gateways’ payment notification scripts.
  • Download and upload files from remote servers.
  • Login to other websites and access members only sections.
PHP cURL library is definitely the odd man out. Unlike other PHP libraries where a whole plethora of functions is made available, PHP cURL wraps up major parts of its functionality in just four functions.
A typical PHP cURL usage follows the following sequence of steps.
curl_init – Initializes the session and returns a cURL handle which can be passed to other cURL functions.
curl_opt – This is the main work horse of cURL library. This function is called multiple times and specifies what we want the cURL library to do.
curl_exec – Executes a cURL session.
curl_close – Closes the current cURL session.
Please note that our BOSS api returns output as simple xml format.which contains information like click url,title etc.So we have to convert the xml data and to access the click url its better to insert xml parsed datum into an array.
Here I used an array $result to store xml parsed data. Then with the help of foreach loop, I separated each title and click url by giving necessary indexes to the result array and placed necessary places of the HTML page.
Complete code below
if(isset($_POST['submit']))
{
$search=$_POST['search'];
$request="http://boss.yahooapis.com/ysearch/web/v1/".$search."?format=xml&appid=Uz.I................";
$ch = curl_init($request);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$xml = simplexml_load_string (curl_exec($ch));
// Display search results - Title, Date and URL.
foreach ($xml->resultset_web->result as $result) {
 print ''.$result->title.'
';
}
}
?>

pravysoft


search


Sunday, March 28, 2010

Datasheets


                     Hi this blog is created by Praveen Thappily .To help people who want data sheets of some commonly used IC's.And students who completed their electronics project on Pravysoft.If you want new project ideas or topic /circuit diagrams,programs please contact us.
                    pravysoft is an open source company working at calicut,One of the growing electronics project center in kerala.And we are ready to help peoples without any charges.These are some of the most popular ICs.You can download these data sheets completely free of charge.To download its data sheet (Direct Download) click on necessary links below.We know that this may be the best site to create electronics project report.
                       
                         If you want any data sheet not listed below please contact us....

1.MAX232




DUAL EIA-232 DRIVER/RECEIVER
- Operates With Single 5-V Power Supply
- LinBiCMOS. Process Technology
- Two Drivers and Two Receivers
- 30-V Input Levels
- Low Supply Current . . . 8 mA Typical
- Meets or Exceeds TIA/EIA-232-F and ITU
Recommendation V.28
- Designed to be Interchangeable With
Maxim MAX232
- ESD Protection Exceeds JESD 22
2000-V Human-Body Model (A114-A)
- Applications
TIA/EIA-232-F
Battery-Powered Systems
Terminals
Modems
Computers
- Package Options Include Plastic
Small-Outline (D, DW, NS) Packages and

Standard Plastic (N) DIPs


Description
The MAX232 device is a dual driver/receiver that includes a capacitive voltage generator to supply EIA-232 voltage levels from a single 5-V supply. Each receiver converts EIA-232 inputs to 5-V TTL/CMOS levels. These receivers have a typical threshold of 1.3 V and a typical hysteresis of 0.5 V, and can accept .30-V inputs. Each driver converts TTL/CMOS input levels into EIA-232 levels. The driver, receiver, and voltage-generator  functions are available as cells in the Texas Instruments LinASIC. library.
The MAX232 is characterized for operation from 0.C to 70.C. The MAX232I is characterized for operation from  –40.C to 85.C.

AVAILABLE OPTIONS

TA

PACKAGED DEVICES
SMALL
OUTLINE
(D, NS)
SMALL
OUTLINE
(DW)
PLASTIC DIP
(N)
0.C to 70.C
MAX232D
MAX232NS

MAX232DW

MAX232N
40.C to 85.C
MAX232ID
MAX232IDW
MAX232IN

The D and DW packages are available taped and reeled by adding an R to the part number
(i.e., MAX232DR). The NS package is only available taped and reeled.


---------------------------------------------------------------------------------------
To download MAX232 data sheet or you want its working Click here
**********************************************************************************
TSOP18 :Infrared Receiver

The TSOP18.. – series are miniaturized receivers for infrared remote control systems. PIN diode and preamplifier are assembled on lead frame, the epoxy package is designed as IR filter. The demodulated  output signal can directly be decoded by a microprocessor. The main benefit is the reliable function even in disturbed ambient and the protection against uncontrolled output pulses.

To download TSOP data sheet or you want its working Click here

Saturday, April 25, 2009

Set Windows as Default OS when Dual Booting Ubuntu

This article is published by Praveen thappily, Calicut, Kerala. If you find any problem or mistake in this page please inform me. Comment on pravymon@gmail.com

                This page is for Ubuntu new users. If you install Ubuntu after Windows installation, At the starting type of your PC you can see GRUB loader. If you not select windows using arrow keys, Ubuntu will load. If You want Windows at first please do following steps. Thank you for reading this blog. I got this information from different websites and people. I dedicate this page to them………..

Set Windows as Default OS when Dual Booting Ubuntu

To make this change, you'll first have to boot into Ubuntu, and then run the following command:
sudo gedit /boot/grub/menu.lst
Find this section of the file:
## default num
# Set the default entry to the entry number NUM. Numbering starts from 0, and
# the entry number 0 is the default if the command is not used.
#
#
You can specify 'saved' instead of a number. In this case, the default entry
# is the entry saved with the command '
savedefault'.
# WARNING: If you are using
dmraid do not change this entry to 'saved' or your
# array will
desync and will not let you boot your system. default 0
                  The important line is the last one. You will need to change that number 0 to match the Windows boot section. Typically it's always going to be 4 on a default dual-boot configuration. Change this value to 4, and then save and reboot your machine. You should go into Windows instead of Ubuntu automatically.
Note: The blocks at the bottom of the file match the items in the menu. You can change this value to match whichever item you want as default, just remember that numbering starts at 0.

Comments from PravySoft users(25)

Raouser
hi there everyone. im new in linux and installed ubuntu. i just wanted to know what is the syntax of doing that command on how to change the default OS
thanks Praveen thappily
john
i already got it. thanks i just made a mistake in typing .lst.
murali
hi,
I tried editing the file
thourgh the file browser, but I couldnt open menu list file with write permission. even though i am the only user (owner)
Neil Young
Hi there…
I am a newbie to Ubuntu / Kubuntu and
linux completely. I've installed Ubuntu as dual boot to Windows XP. The installation went smoothly. I've Windows XP on a Sata HDD and I've install Ubuntu on a IDE (Sec. Master) HDD. In addition to this I've got two Data storage disks ie: 1X SATA HDD & 1X IDE HDD.
My problem is that when I restart my PC and want to choose to load Windows XP I get a "NTDLR is missing" message and I've to restart. How do I solve this problem?
Thank you in advance
Regards
Neil
Hi Neil,
A quick search of ubuntuforums.org reveals that this problem can have several causes. Here is a link to the most common:
I hope this helps.
Pravymon
Nospoon
Murali - you have to open it via terminal, because normal users (yes, even the owner) do not have full permissions. Full permissions are granted only to root, and the simplest way to do things as root is to launch them with sudo.
murali
thanks PravySoft. got it working a while back.
Lauris Ancupans
This helped me out. Thanks!
Dan L
I went through dozens of websites and this is the only and first one that clearly explained how do fix this issue and it worked perfectly. Thanks a ton Praveen thappily
HELP!
Praveen , please help me… I am super new to Linux… I installed Ubuntu on my PC and I am affraid that all of my files are gone. I used to run XP and now I can't find any of my files. Can anyone please tell me how to switch back to Windows just so that I can see my files again???
Thank you so much,
Mali
rob
same for me! can find winxp anymore
fatih
thanks a lot. very clear explanation. seconds i did it.
Frank H
Thanks for the response so quick. Works Fine
Satya
I guess this number 4 would quickly go out of sync once you upgrade ubuntu (kernel). That means you will have to keep incrementing this number every time you got a new kernel through update process.
I believe there is a better way, but can't recollect.. Anyone?
Jack
Satya: It might be easier and neater to just remove the new kernels entirely.
esau
Jack - why would someone want to remove their newly installed kernel(s)? I agree with Satya; there is sure to be a better way to do this, or at least I hope there is. Or you'll need to go LILO. Great little article apart from this minor inconvenience.
Jack
esau: My mistake, I meant old ones that you won't be using any more.
Regards
Dave
Surely it is not better to use the following:
default saved
This boots what ever entry has been saved using the command:
savedefault
Window is by default saved using savedefault in a Debian/Ubuntu /boot/grub/menu.lst
Chris
Mali and rob-
It depends on if you used the wubi ubuntu installer or the partitioner/full install. If you used Wubi (Otherwise known as "Install in side Windows") then all of your XP files will be in the directory "/host/Documents and Settings/@@" where @@ is your username. If you used the full install, you have to mount the other partition by going to the "Places" menu on the top panel and clicking on the ## GB media where ## is the size of the XP partition. Then there should be a shortcut to it on your desktop. If this is disabled and the shortcut does not appear, then you can go to /media/disk in the file browser and drag a shortcut out to your desktop.
Hope this helps!
Mike
any ideas on how to change the boot loader if you where stupid enough to remove Ubuntu???
thx
/m
Burrows
MIke, not sure if this helps but my ubuntu on this list is shown as :
## should update-grub add
savedefault to the default options
## can be true or false
#
savedefault=false
## ## End Default Options ##
title Ubuntu 8.10 uuid f4151833-890f-4e9d-b6bb-84faf6f992fd
kernel /boot/vmlinuz-2.6.27-9-generic root=UUID=f4151833-890f-4e9d-b6bb-84faf6f992fd
ro quiet splash
initrd /boot/initrd.img-2.6.27-9-generic
quiet
### END DEBIAN AUTOMAGIC KERNELS LIST
# This is a divider, added to separate the menu items below from the Debian
# ones.
aruhadi
I just cut and paste menu of windows and store it above this:
title Ubuntu, kernel 2.6.20-16-generic
root (hd0,2)
kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=7fd45131-277a-46a7-b01a-bc7eeaf39669
ro quiet splash initrd /boot/initrd.img-2.6.20-16-generic
quiet
so become this:
title Microsoft Windows
root (hd0,1)
savedefault
makeactive
chainloader +1
title Ubuntu, kernel 2.6.20-16-generic
root (hd0,2)
kernel /boot/vmlinuz-2.6.20-16-generic root=UUID=7fd45131-277a-46a7-b01a-bc7eeaf39669
ro quiet splash initrd /boot/initrd.img-2.6.20-16-generic
quiet