Showing posts with label 7. Show all posts
Showing posts with label 7. Show all posts

Thursday, February 19, 2015

Installation of Pentaho 5 0 1 CE in windows 7 changes made from previous version

Being crazy of Pentaho and its associated tools Id like to share some thing about Pentaho CE 5.0.1 BA latest release..
First of all, Id like to thank you to the web details team for the efforts they kept in bringing up the powerful analytical engine(BA server).

The home page itself make you to stick with BA server where you can enter into the server with "admin" and "password" as the default credentials.. Yes, "joe" user is no more but he left with the same password to log into BA server.

There will be NO more admin console ... Now it is very easy and developer friendly to navigate in one console(User Console) to give data base connections and new roles for new users..

A lot of stuff included in the home page itself, giving the blogs links, books on different tools of pentaho family. In a single word I can say , All the stuff related to Pentaho at a single place. A BI developer like me can reduce the time for developing reports, dashboards , jobs.

Market place for installing C-Tools and the installed plug-ins list drop down is one of the good ideas of the team.

As quick as Pentaho released its CE 5.0.1 , I just downloaded and trying to explore the new look and navigating from all the menus, reports, connection places and etc.

Its very easy to install the pentaho CE BA now in windows...
Installation procedure :
1) Down load the software as a .zip file using this link .
2) Unzip it in your fav folder
3) Click on start-pantaho.bat file

Home page :


NOTE: path and class path for java must be set before the installation.

Read more »

Wednesday, February 18, 2015

C program to find the sum of series 1 2 4 5 7 8

C program to find the sum of series 1/2+4/5+7/8+......

#include<stdio.h>
#include<conio.h>


void main()
{
int i,n;
clrscr();
float sum=0,x,a=1;

printf("1/2+4/5+7/8+......");
printf("

How many terms(ex: 1,2,3...n)?");
scanf("%d",&n);


for(i=0;i<n;++i)
{
x=a/(a+1);
sum+=x;
a+=3;
}

printf("
Sum=%f",sum);
getch();
}
Read more »

Monday, February 16, 2015

C Program to Print following series 1 4 7 10 40


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i,a=-1,b;
for(i=1;i<=40;i+=3)
{
     a*=-1;
     b=i;
     b*=a;
     cout<<b<<" ";
}
getch();
}
Read more »

Saturday, February 14, 2015

HP Slate to run Palm WebOS instead of Windows 7

HP SLATE

The latest Good E-Reader News has the HP Slate quite possibly be running the Palm Web OS, after its acquisition of Palm for 1.2 Billion Dollars.

On Wednesday April 28th after the stock markets closed HP bought Palm which many people say is a buyout for the Palm OS. The HP Slate which has been a letdown from a hands on experience by a few tech analysts have said Windows 7 simply isn’t optimized for a “slate/tablet” style device, thought it suits netbooks and laptops just fine. After a recent hands on, with the HP Slate, many analysts are saying that Windows 7 is not the route to go for HPS success into the Slate PC market.

Most of the Higher profile Slate PC’s such as Dell, Notion Ink, Neofonie, and others have gone the Google Android route as their operating system of choice for the next generation of Slate PCS. HP was the lone company to be developing a Slate PC that functioned on the Windows 7 operating system.

HP and Palm are the perfect pairing for Slate PC computing. Palm uses its well designed iPAQ hardware to run the Palm OS, and for a change gets a competitive smart phone. The Pre and the Pixi either get re-engineered by HP into something more useful, or they fade away. Meanwhile, HP’s tablet gets an OS suitable for a portable device. Not only does HP get a great operating system that is very unique for its Slate device, it also gets around 2000 third party applications for its device in one day.

HP has long been saying it will use software to differentiate its products. Now it actually can. Owning and controlling its own OS has many benefits, starting with being able to dictate who can make applications, when the product is updated, and ensuring that the hardware and software work together as seamlessly as possible. Going with the proprietary OS will shield it from potential lawsuits or necessary licensing deals with Apple or Microsoft.

HP’s acquisition of Palm means the mobile wars extend to slate tablets: iPhone vs. Android vs. Palm, all over again.

But this acquisition isn’t strictly about phones. This is about HP’s future mobile OS. Bradley said several times HP will “invest heavily” in WebOS, and use it on slate PCs, Netbooks, and phones. HP was not ready to talk about possible time lines as to when a WebOS slate or WebOS Netbooks would be available, but said it planned to increase the $190 million Palm was spending annually on research and development.

HP has made some quasi-ok Smartphone’s in the past, but they have been based on Windows Mobile and unless HP is moving to Windows Phone 7 that line is dead in the water. HP still does have a couple of Windows Mobile Smartphone’s that are pretty decent, in terms of hardware.

With this purchase, lots of research and development will now go into the WebOS and it looks like the HP Slate will be running this operating system, has it gives them the distinction they need to be competitive in the Slate PC market, and gives them a large developer community in which to add applications.

For more breaking news on the HP Slate, subscribe to our Good E-Reader Magazine.


http://goodereader.com/blog/tablet-slates/hp-slate-to-run-palm-webos-instead-of-windows-7/

Read more »

Thursday, February 12, 2015

C program to input number of weeks day 1 7 and translate to its equivalent name of the day of the week


#include<stdio.h>
#include<conio.h>


void main()
{
int ch;
clrscr(); //to clear the screen
printf("Enter number of weeks day(1-7):");
scanf("%d",&ch);

switch(ch)
{
case 1: printf("
Sunday");

break;
case 2: printf("
Monday");

break;
case 3: printf("
Tuesday");

break;
case 4: printf("
Wednesday");

break;
case 5: printf("
Thursday");

break;
case 6: printf("
Friday");

break;
case 7: printf("
Saturday");

break;
}
getch(); //to stop the screen
}
Read more »

Wednesday, February 11, 2015

Adobe Photoshop 7 0 full version with tutorial


Info:
Download Adobe Photoshop 7.0 for free , we are not taking any peny for download Adobe Photoshop 7.0  and Adobe Photoshop 7.0  is carefully checked i am guarantee that Adobe Photoshop 7.0  is free of virus Adobe Photoshop 7.0  is included in software category. you can download PC Tools Performance Toolkit 2  by clicking below button to start downloading Adobe Photoshop 7.0  and wait for downloading and after some minutes youll done !!!  Dont forget to share PC Tools Performance Toolkit 2  with your friends ,Dont forget to share Adobe Photoshop 7.0  with your cousins, Dont forget to share Adobe Photoshop 7.0  with your class-mates,Dont forget to share  Adobe Photoshop 7.0  with others

Download Adobe photoshop 7.0
Password: harryprince

How to use adobe Photoshop 7.0


Read more »

Tuesday, February 10, 2015

HowTo Install Gtk2 in ActivePerl in Windows 7

This was tested in the ActivePerl 5.14.2 and 5.16.2
Step1: open Perl Package Manager
Step2: click on preferences (the gear thingy) on the upper right corner

Step3: select the sisyphusion :: Math, PDL, Gtk2 and other ad hoc and press Add button then press OK

Name: sosyphusion
Location: http://www.sisyphusion.tk/ppm



Step4: follow the arrows from 1 to 5 in the diagram below


Step5: Gtk2 is now installed!!

Thanks to one of our Commentor, (AnonymousJuly 3, 2013 at 5:53 AM) suggested you do the following if your installation fails with this message "The package Gtk2 has already installed a file that package Pango wants to install."

Anyway, in order to successfully install it under (at least) ActiveState Perl 5.16.3 you need to :
Step 1 .. Step 3 : same as shown above
Step 4 : exit PPM GUI
Step 5 : on command line (cmd.exe) enter :

ppm install Gtk2 --force

Step 6 : enjoy !
** I tried this and it works like a charm ** thanks anonymous

Read more »

Thursday, February 5, 2015

Piranha Ultra II 2 Tab 7 0 Tablet Firmware


Piranha Ultra II Tab 7.0 (Rockchip)

Piranha Ultra II Tab 7.0 (Rockchip) Firmware



Tablet Spec:

RK3066
1.6 GHz Dual Core
8 GB
1 GB DDR3 RAM
2.0 MP front and 2.0 MP Rear Camera
HDMI
3G
WIFI

tabletrom.blogspot.com


Wiki

Read article about Rockchip CPU on Wikipedia 


Knowledge base :

What board ID , Tablet CPU Chip ,Firmware Number does my Tablet have ? 
Frequently Asked Question about Android Tablets 

When I need to Restore or Reset  my Android Tablet Pc?

1. Forgotten Pattern Lock . 
2.Too many pattern attempts / Reset user lock.
3.  Tablets PC stuck on Gmail account.
4. Android Tablets PC stuck on Android logo.
5. Tablet Android  hang on start up / Multiple errors generating by OS. 
6. Android Market  having problems or generating errors. 
7.Upgrading to new Android OS.

Download here 4.1 Jelly Bean

NOTE : This tablet will be flash with RKTool .This tablet belongs to RockChip. 
Instructions: 

you can use this Android Tablet firmware,  Stock ROM to restore your Android China tablets to generic firmwares or upgrades . Make sure to charge battery . Power failure during flashing may result dead or broken tablets.
.
Note : Flashing generic tablet firmware should be last option.

Flashing Tutorials :


Read Before : Flashing Tutorial for Rockchip 
Download Flashing Instructions : PDF

Drivers for Rockchip:



Download Drivers for Rockchip tablets

Flashing Tools:



Download: RKbatch Tool

Recommended  Tools:

you can also use:Android Tools for Rockchip Tablets


Read more »

Wednesday, February 4, 2015

PIRANHA Aristotle Tab 7 0 MT6577 Official firmware


PIRANHA Aristotle Tab 7.0 Official firmware. 


Tablet Spec

MT6577 Dual Core 

1.5 GHz 

8 GB 

1 GB DDR3 RAM 

 3.2 MP front camera and 8.0 MP back

 HD Screen 

HDMI  

3G 

 WIFI

 GPS 

 Bluetooth 



DOWNLOAD OFFICIAL FIRMWARE
Read more »

Hyundai X700 7 inch Rockchip Android Tablet PC Firmware flashing tools tutorials

Hyundai X700 7 inch 
Rockchip Android Tablet PC Firmware ,flashing tools and tutorials
Non Bluetooth version 
Hyundai X700 

Wiki

Read article about Rockchip CPU on Wikipedia 



When I need to Restore or Reset  my Android Tablet Pc?


1. Forgotten Pattern Lock . 
2.Too many pattern attempts / Reset user lock.
3.  Tablets PC stuck on Gmail account.
4. Android Tablets PC stuck on Android logo.
5. Tablet Android  hang on start up / Multiple errors generating by OS. 
6. Android Market  having problems or generating errors. 
7.Upgrading to new Android OS.

Instructions: 

you can use this Android Tablet firmware,  Stock ROM to restore your Android China tablets to generic firmwares or upgrades . Make sure to charge battery . Power failure during flashing may result dead or broken tablets.
This is not rooted firmware.
Note : Flashing generic tablet firmware should be last option.This stock rom is only for Non Bluetooth Version. 

Tablet Specifications:

Brand: Hyundai 
Model : X700

LCD                
7"    IPS Capacitive Multi Touch Screen
Screen Resolution 
1024 x 600 Pix
Processor 
1.6 Ghz  Dual Core ,Mali 400MP 
Chipset / Boxchip
 Rockchip RK3066
RAM
1GB 
Built in Memory
8 GB
External Memory
Support Micro Card  (Max 32GB)
Wifi
802.11 b/g/n  supported
Blue tooth
N/A
Sim
 N/A
Camera
      0.3  Megapixel front                                    
HDMI 
Available , Usb 2.0, HDMI (Mini C) 
Speaker
N/A
Weight
287 g
Android Version
4.1
3200 mAh Battery


Flashing Tutorials :


Read Before : Flashing Tutorial for Rockchip 
Download Flashing Instructions : PDF

Drivers for Rockchip:

Download Drivers for Rockchip tablets

Flashing Tools:

Download: RKbatch Tool

Recommended  Tools:

you can also use:Android Tools for Rockchip Tablets

Downloads: 
Stock Firmware by roman2025
Read more »

Tuesday, February 3, 2015

ONYO VIP Edition 7 Official Android Tablet Firmware

ONYO VIP Edition 7 Firmware.

Android Tablet

DOWNLOAD OFFICIAL FIRMWARE

Read more »