Saturday, June 27, 2009
My experience with timesjob resume maker
I said yes to them and paid the amount. But after seeing credit card account I came to know that they have deducted 1878.00 Rs. After asking they said that 200 Rs is for the doorstep resume service. I said I dont need doorstep service and refund me my extra deducted money. But they never returned me my money and I never got any resume at my door step.
After 10 days they sent me a resume saying that its my modified resume. I saw, it was ok. But after that they never called me up. I called them asking that what happend to my interview with companies. They said that my resume has been sent to 1200 consultants(and not companies as told earlier) and they will get back to you. Its more than 3 months and I never got any call from any such consultants.
So my money had gone waste. My sincere suggestion, dont go for any such resume survices, they will bluff with you. Make your own resume. Best of luck.
Sunday, March 8, 2009
My robot design - ROBOCAMERA
Robocamera is Robot that does many kinds of work and is controlled by a remote control. This remote control is RF signal controlled and the channels work separately and simultaneously. The Robot has several functions to do. The functions include such as sending the picture and relative informatory data of the distant environment. This robot is microcontroller-based and sophisticatedly designed to habituate itself in different types of environment. This report includes the functions and working principles of the Robot. Besides we have expressed our views on the future prospects of this project. It can pave a new way in the field of robotics.
FUNCTIONS:
1. Video image transmitting.
2. Temperature sensing.
3. Humidity observing.
4. Gases interrupt sensing.
5. Soil sample scratching.
Monday, April 28, 2008
Creating subcube and accessing it through excel object in C# program
There are ways to create subcube from a OLAP cube. On SQL server one can create subcube by the following simple MDX query:
CREATE SUBCUBE [sub cube name] AS SELECT [dimension name] ON column FROM [cube name]
Subcube name should be same as the cube name, because the command creates the subcube on top of the cube, like stake. Subcube is basically an intersection of cube based on the dimension value(member) specified. There is very nice facility in Excel object that it can be used by C# code in .NET to access cube and subcubes.
Accessing cube is very easy. The very basic MDX query is:
OLEDB;Provider=MSOLAP.2;Data Source=<datasourcename>;Initial Catalog=<name>
If one has created a subcube then there is one thing must be included in the above query to connect to the generated subcube. It is session id. It is very important. although the subcube is created on top of cube in stake manner but it has its own session and it generates a session id while creating subcube. So one should pass the session id with the accessing query.
OLEDB;Provider=MSOLAP.2;Data Source=<datasourcename>
And then enjoy the subcube facility of Analysis Service.
Somnath
Tuesday, April 22, 2008
Data classifier
I am not a computer researcher but out of my interest I made a data classifier which is implemented based on naive-bays algorithm of classification. For numeric data it uses gaussian distribution function to calculate probability.
I have tried to match the accuracy of my code with WEKA for small dataset and it gave quite a good result. I'll rectify it later and improve it. I hope it will be helpful for the starters in data mining field. It can take .csv and tab delimited text file as input.
If any one want the code please send a mail to me, I will send you the code.
Somnath Pandit
