Friday, January 23, 2015

Error on Accessing Security Page Wimax


Have you ever experience that when you changing or hunting mac address on any wimax tool it can't  access on wimax security page of your modem?

The solution here is just uninstall the Update for Microsoft Windows (KB3025390).


  • Open the run or just pressing Windows Key+R on your  keyboard then type appwiz.cpl.
  • Click on the View Installed Updates.
  • Look for Update for Microsoft Windows (KB3025390).
  • Click Uninstall and wait the uninstaller to finish.



Read More

Thursday, January 22, 2015

CD-R King Action Camcorder

 CD-R King has created their own particular variant of a waterproof activity cam like GoPro but in affordable price called the "Action Camcorder",It has a 1.5 hour battery life with  a waterproof has been rated IP68, which means that it's a dust-tight device.

Specs and Features:
With Waterproof Case
Waterproof rating: IP68
LCD Display: 1.5" LCD
HDMI: 1080P
Image Resolution
1920 x 1080
2560 x 1920
3264 x 2448
4000 x 3000
Video Resolution:
1920 x 1080 @30FPS
1280 X 720 @60FPS
Mode: Capture / Video/ Setup/ Playback
File Format MOV(H.264)
Lens View Angle: 170 degree
Build in Wifi: 802.11 b/g/n
I/O port Mini USB/ HDMI
USB 2.0 Interface
Charing Time: up to 3hrs
Actual Usage Time: up to 1.5hours
Support Micro SD Card up to 32GB

Battery: 900mAh
Price: Php 3,380.00

Warranty Period : 6 month

Replacement Period : 1 week
Read More

Cherry Mobile Cosmos One Plus

Another greatest smartphone form cherry mobile.


The octa-core Cosmos One Plus comes equipped with a dedicated camera key so you can unlock your phone straight to the camera app then capture the moment with the Sony IMX 214 14MP BSI Camera!

This and more features are now on the Cosmos One Plus!
Grab one at select Cherry Mobile concept store and kiosks nationwide, for only PhP 13,999

Full Specs:
Android 4.4.2 Kitkat (Lollipop ready)
2.0 GHz Octa Core processor
IMG Rogue G6200 450MHz
Dual Micro Sim
5.5" LTPS IPS Full HD Gorilla Glass protection
480 ppi
ROM: 32GB
RAM: 3GB
microSD, up to 64 GB
LTE 850/2100/1800MHz
Wifi a/b/g/n/ac
Bluetooth 4.1
Sony IMX 214 sensor
Rear: 14 MP with BSI support
Front: 8 MP
2700mAh, Removable
Mediatek 6595M

Key features:
OTG Support , Miracast, Gesture sensing, Smart wake, Mobile anti-theft, BSI Support, Corning Gorilla Glass (Scratch resistant), NFC, Hotknot Technology, Dual LTE switching

source:  cherry mobile fb page.
Read More

c++ Creating Diamond Shape

Here is the code on how to crate diamond share in c++.

#include "stdafx.h"
#include<iostream>
using namespace std;
int main() {

int a, b, c;
    int n = 0;
    cout<<"Enter N:";
    cin>>n;

    for (a = 1; a <= n; a++)
    {
          for (b = 0; b < (n - a); b++)
                cout<<" ";
          for (b = 1; b <= a; b++)
                cout<<"*";
          for (c = 1; c < a; c++)
               cout<<"*";
cout<<"\n";
    }

    for (a = n - 1; a >= 1; a--)
    {
          for (b = 0; b < (n - a); b++)
               cout<<" ";
          for (b = 1; b <= a; b++)
                cout<<"*";
          for (c = 1; c < a; c++)
               cout<<"*";
         cout<<"\n";
    }
 
   cout<<"\n";


cin.get();
cin.get();
return 0;
}


Read More

c++ Reverse Number

here is the code in c++ on how to reverse the number input by the user.

#include "stdafx.h"
#include<iostream>
using namespace std;

int main() {
int number, reverse_num = 0;
cout<<"Input a Number to Reverse:";
 cin>> number;

   for(;number!= 0 ; ) {
      reverse_num = reverse_num * 10;
      reverse_num = reverse_num + number%10;
      number = number/10;
   }
   cout<<"Reversed Number is:  "<<reverse_num;

cin.get();
cin.get();
return 0;
}

Read More

c++ creating triangle

here is the code for creating triangle on c++.

#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

for(int x=1;x<=7;x = x + 2) {
for(int zz=7;zz>=x;zz--) {
cout<<" ";
}
for(int y=1;y<=x;y++) {
for(int z=1;z<=1;z++) {
cout<<" ";
}
cout<<"*";
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}

Read More

c++ sample codes.


#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

for(int x= 1;x<=5;x++) {
for(int z=1;z<=x;z++) {
cout<<" ";
}
for(int y=1;y<=5;y++) {
cout<<"*";
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}

Read More

c++ create right triangle.

this is how to create right triangle on c++.

#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

int a;
cout<<"Enter N:";
cin>>a;
for(int x= 1;x<=a;x++) {
for(int y=1;y<=x;y++) {
cout<<"*";
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}













#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

int a;
cout<<"Enter N:";
cin>>a;
for(int x= 1;x<=a;a--) {
for(int y=1;y<=a;y++) {
cout<<"*";
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}
Read More

c++ Displaying the number repeatedly.

here is the code for displaying numbers repeatedly using nested loop.

#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

for(int x= 1;x<=5;x++) {
for(int y=1;y<=5;y++) {
cout<<y;
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}












#include "stdafx.h"
#include <iostream>
using namespace std;
int main() {

int a = 1;
cout<<"Enter N:";
cin>>a;
for(int x= 1;x<=a;x++) {
for(int y=1;y<=a;y++) {
cout<<y;
}
cout<<"\n";
}
cin.get();
cin.get();
return 0;
}


Read More
Designed By Seo Blogger Templates Published.. Blogger Templates