tracking codes

Friday, December 20, 2013

BELTRAMI BLOG

The following list of students passed their blog. You may visit their blog by clicking the link.
For those who didn't pass their blog address please comment here and post your blog addres to update my list. thank you..
   
Aldrin C Corpuz corpuzaldrin9.blogspot.com
Andrei Talavera DrakeTalavera35.blogspot.com
Aristotle Wendell D. Vistro vistrototi.blogspot.com
Briko R. Galeon brikogaleon.blogspot.com
Christian Grant Lapuz CGLapuzTheBeast.blogspot.com
Dexter S. Mandi dsmandi.blogspot.com
Dietrich Liwanag dbtidit.blogspot.com
Earl Joshua Bautista ejkicks2013.blogspot.com
EJ De Celis ejdecelis.blogspot.com
Eugene Art A. Lagman  lagmaneugene.blogspot.com
Iseo Jamil C. Timbol jctim99.blogspot.com
Ivan Carlos Luis S. Romero vanromero33.blogspot.com
Ivan Leonard T. Manucum ivanmanucum99.blogspot.com
Jaime Miguel. U Maglalang jmumaglalang.blogspot.com
james ryan romero jamesryanromero.blogspot.com
John Matthew L. Mamanta johnmamanta.blogspot.com
John Paul Mercado jptmercado.blogspot.com
Joshua Flores joshflores1299.blogspot.com
Justin D. Abril justine1478.blogspot.com
Justin Patrick A. Sangalang JPAsangalang.blogspot.com
Karl John L. Lestano goldpatch2k14.blogspot.com
Kim Adrien Encarnacion encarncionkim.blogspot.com
Louis miguel Alfonso L. Canlas acidlouis23.blogspot.com
Miguel Cristopher Castaneda mcecastaneda.blogspot.com
Miguel D. Dela Luna MDL0111.blogspot.com
Miguel Paolo H. Tejero beltrami2k14.blogspot.com
moises louis pagco moisespagc99.blogspot.com
olbers M constantini srebloacid.blogspot.com
owen laxamana owenlaxamana.blogspot.com
Peter Polo B. Ocampo peterpolopogi.blogspot.com
Ryan Russel M. Maliwat rmmaliwat.blogspot.com
Swayne Jansen P. Sio swaynesio3rd.blogspot.com
Xyrille Bienne S. Yebes yebesxyrille.blogspot.com
Yvan s Borra ysborra.blogspot.com

Friday, November 29, 2013

YOUtube downloader

1. Download mo ung YOUTUBE Downloader. meron na kasamang crack yan. kung di ka marunong mag crack.. install mo na lang. wag mo na i crack. eto yung link.
2. DL mo rin to.. instructions pano gamitin.. napakadali lang...

Tuesday, September 3, 2013

E-currency

Have you ever imagine if it is  possible to have an online bank account? Today, most of the transactions we have are now conducted through electronics, and Internet is one of the many means of electronic transactions. The following are e-currency site that you can sign up, they are free and easy to use.

PAYZA - the global online payment platform, is a notable alternative to PayPal and a great choice for consumers and merchant’s alike. Because Payza’s Customer Support team can be reached 24 hours a day from Monday to Friday and because our services are available in more countries than PayPal



OR CLick the Links Below.
Earn money with Payza


EGO Pay

Wednesday, August 28, 2013

Line Sensor Code..

The following line sensor code contains the edited version for a 3 line sensor...
Comments are placed for your reference. The codes are purposedly jumbled for more challenge in concept mapping.  Retype the code, convert it to a 4 line sensor.

.:start of code:.

Arduino has to stay connected to computer.
Sensors must have their voltage provided.
Place the robot entirely onto its white running surface
  presumably so that there is black line on its left,
  but not in the view of sensors.
Press arduinos reset button.
After 2 seconds pin 13 onboard LED should light up.
  White surface calibration measurings are done while the LED is lit - about 2 sec.
  LED will go out after that.
After a 2 seconds delay the LED will light up again.
Now you have 5 seconds to move the robot sideways over a black line.
  Line has to be on the left when facing same way as robot is going to be running.
  You have to move the robot to its left and approximately in right angle to the line.
  During this move the maximum readings are taken that occur when a single sensor is directly over the line.
  Do not hurry, but all the sensors must be over line when LED goes out after 5 sec.
After another 2 sec delay the LED will light up once again.
Now you have to move the robot back over the line, opposite to what you did in last step.
  It means during 5 sec move robot back to right over the line.
  Important: this time robot has to move right - right side sensor has to pass over line first!
  During this are taken measures that say, how low do the two side by side sensors go, when line is exactly inbetween the two.
  Measurings end when LED goes out after 5 sec.
Start serial monitor.
Stop autoscroll and copy correction values from any successive three lines to robots riding script.
*/

/*sensor input pins*/
const int sensorPins[] = {A0, A1, A2}; //right, center, left

/*onboard LED pin*/
const int indicatorPin = 13;

/*arrays for storing sensor and computed data
three sensors in each array:
0 - RIGHT, 1 - CENTER, 2 - LEFT */

float readings[3]; //sensor readings
float averageReadings[3] = {0, 0, 0}; //average readings
float whitePoints[3] = {0, 0, 0}; //reading on white surface
int blackPoints[3] = {0, 0, 0}; //maximum reading while passing over black line
float unitSteps[3]; //difference between white and black divided with 100
int corrections[3]; //white points as int
float peakDetect[3] = {0, 0, 0};
float betweenReadings[2] = {1024, 1024}; //readings when line is inbetween two sensors, RIGHT-CENTER, LEFT-CENTER
boolean betweenState[3] = {false, false, false}; //helper for knowing which minimum to store

/*loop helper variables*/
int i;
int j;

void setup() {

  Serial.begin(9600); //start serial monitor to output data after measurings
  pinMode(indicatorPin, OUTPUT); //set nboard led pin to indicate measuring state

  /*start calibration after 2 sec delay*/
  delay(2000);

  /*MEASURING ON WHITE SURFACE FOR ABOUT 2 SECONDS ASSUMED*/

  digitalWrite(indicatorPin, HIGH); //onboard LED lights up
  for (i=0; i<=125; i++) { //125 readings from each sensor
    for (j=0; j<=2; j++) { //loop through each sensor
      readings[j] = analogRead(sensorPins[j]); //get value
      /*calculate average sensor values*/
      whitePoints[j] = (whitePoints[j] * j + readings[j]) / (j+1); //average from all measurings taken this far
      delay(2);
    }
    delay(10);
  }
  digitalWrite(indicatorPin, LOW); //onboard LED goes out
  delay(2000); //2 sec delay

  /*GOING SIDEWAYS OVER BLACK LINE WITHIN NEXT 5 SECONDS ASSUMED*/
  digitalWrite(indicatorPin, HIGH); //onboard LED lights up
  for (i=0; i<320; i++) { //320 readings from each sensor
    for (j=0; j<=2; j++) { //loop through each sensor
      readings[j] = analogRead(sensorPins[j]); //get value
      if (readings[j] > blackPoints[j]) { //if current value is grater than one olready saved
        blackPoints[j] = readings[j]; //store if aplicable
      }
      delay(2);
    }
    delay(10);
  }
  digitalWrite(indicatorPin, LOW); //onboard LED goes out

  /*calculate "unit step" - 1/100th of difference between white and black for every sensor
  and transform white points to int (corrections)*/
  for (j=0; j<=2; j++) {
    unitSteps[j] = (blackPoints[j] - whitePoints[j])/1000;
    corrections[j] = (int) (whitePoints[j] + 0.5);
  }

  delay(2000); //2 sec delay

  /*GOING SIDEWAYS (TO THE RIGHT!!!) OVER BLACK LINE WITHIN NEXT 5 SECONDS ASSUMED*/
  digitalWrite(indicatorPin, HIGH); //onboard LED lights up
  for (j=0; j<=2; j++) { //to reuse this array, set all to 0
    blackPoints[j] = 0;
  }
  for (i=0; i<320; i++) { //320 readings from each sensor
    for (j=0; j<=2; j++) { //loop through each sensor
      readings[j] = (analogRead(sensorPins[j]) - corrections[j]) / unitSteps[j]; //get value for each in final units
    }
    for (j=0; j<=2; j++) { //loop through three sensor readings
      if (readings[j] > blackPoints[j]) { //if current reading is greater than stored maxima
       blackPoints[j] = readings[j]; //store if appicable
      }
      else if (readings[j] + 30 < blackPoints[j]) { //if reading is decreasing (stored one is greater than current)
        betweenState[j] = true; //indicate in this variable that sensor has moved over a maximum reading (line)
      }
    
      if (betweenState[0] == true && betweenState[1] == false) { //if first sensor reading has passed its maxima and second has not
        if (betweenReadings[0] > readings[0] + readings[1]) { //if stored sum of two sensor readings is bigger than current sum
          betweenReadings[0] = readings[0] + readings[1]; //store if applicable
        }
      }
      else if (betweenState[1] == true && betweenState[2] == false) { //if second sensor reading has passed its maxima and third has not
        if (betweenReadings[1] > readings[1] + readings[2]) { //if stored sum of two sensor readings is bigger than current sum
          betweenReadings[1] = readings[1] + readings[2]; //store if applicable
        }
      }
      delay(2);
    }
    delay(10);
  }
  digitalWrite(indicatorPin, LOW); //onboard LED goes out







} // /setup
void loop() {
  /*print results in serial monitor*/
  Serial.print("const int corrections[3] = {");
  Serial.print(corrections[0]);
  Serial.print(",");
  Serial.print(corrections[1]);
  Serial.print(",");
  Serial.print(corrections[2]);
  Serial.println("};");
  Serial.print("const float unitSteps[3]= {");
  Serial.print(unitSteps[0]);
  Serial.print(",");
  Serial.print(unitSteps[1]);
  Serial.print(",");
  Serial.print(unitSteps[2]);
  Serial.println("};");
  Serial.print("const float betweenReadings[2] = {");
  Serial.print(betweenReadings[0]);
  Serial.print(",");
  Serial.print(betweenReadings[1]);
  Serial.println("};");
  Serial.println(" ");

} // /loop

Friday, August 16, 2013

Second Quarter topic for 3rd YEar students...

Please research for the following information about Adobe Flash/ Macromedia Flash

1. History of Flash
2. Definiton of Adobe/Macromedia Flash
3. Simple Tutorials about creating an animation
4. What are the environments/ Parts of Flash and its functions.

you may visit this question at boss-bherong.blogspot.com

plesae print it on short bond paper... no minimum page.

Thursday, July 18, 2013

Run ANDROID OS on your PC

YOUWAVE.com

Download thousands of apps online via app stores within youwave
High performance - The fastest way to run Android on pc
Easy to use - Easy to install. Easy to import and run apps


Key Technical Features

Supports Android 4.0 ICS (Home Version (new)) and 2.3 Gingerbread (Basic Version)
Runs on Windows XP/Vista/7, 32/64 bit
Simulated SD card functionality - enables game saving
Saved State - enables fast restart
Enables multi-player online games
Dynamic rotating - phone-like instant response (new)
Volume control buttons (new)
Retractable control panel (new)


upload ko lang sa mediafire ung ginagamit ko.. 145 mb eh...  android na pwede install sa windows PC...
paid program ung sa site ng youwave... ung sa medifire galing sa mga ka symb natin... thnx to poi poi poi

bigyan nyo ko time mga ka tarlac techxperts...   mabagal net ko eh... thnx for understanding...

Wednesday, July 17, 2013

smarter way to earn

I've been searching the internet for times now... it's too good to be true about earning money online...
too many advertisement, very tedious or nearly impossible tasks are given before you can earn a fraction of a dollar.

but now I discover a must try earning online..
walang task na gagawin, walang questionair na aansweran. simple lang... sign up, download, then confirm the registration using your phone....

if you say this is tedious? i can say no.. all you have to do is register, then download the program after that a confirmation on your phone will be send.. you must send the confirmation code on the given Cellphone number. yun lang... walang kahirap hirap.

for ore info try to go here para makita nyo ano ba ang trend na to... kahit di muna kayo mag sign up, read muna sa profile ng comany para makasiguro na wlaang halong bola...


try this for 30 day pra sa mga free accounts.. after that pwede mo na alisin.. wala ka ng iki click.. hahayaan mo lang mag run ang program...
basa basa muna sa website profile para malaman pano nag wowork to...


OR click mo to

COIN GENERATION

Monday, July 15, 2013

Database Data for 3rd Year Students.

This LINK will let you download the data/list of students per year. Pls just click" SKIP" on top right. support my site by clicking the advertisement. thank you..
Students Names
or
http://adf.ly/Sehzr
or
CLICK HERE

This link will let you view the data/ list of students per year..
Students Names



Monday, July 8, 2013

paste bins....

http://adf.ly/Ri4VL

Fourth Year Students



Questions about your project...


What is your project?

Why did you choose that project?

How will you miniature project mimic your chosen machine?

What is the purpose of your machine?

How will your machine help us if we apply it in real life situation?

Friday, July 5, 2013

July 8, 2013 - HTML Frame tutorials

This is a tutorial in creating an HTML.
Our new topic for this week is HTML Frame.. to view the video tutorial in high resolution
CLICK HERE - this will open my blog on new window.. enjoy watching
if you have slow internet connection, you may visit one of the following address..
Please watch carefully and follow instructions. this will be your future project...



Wednesday, June 26, 2013

anti bullying campaign

para sa mga na bubully.. eto ang kanta sumusuporta sa inyo...
para sa mga bully eto ang against sa inyo..



please stop bullying...


eto ang link ng official video sa youtube  KATULAD NG IBA

Tuesday, June 4, 2013

MP3 downloader...

an mp3 downloader na pure pinoy ang may gawa... i don't take the credits...
credits to markjames of symbianize.com.. pinapalaganap ko lang ang program nya...

just follow the screenshots,..
madali lang naman intindihin...

 






eto ang requirements..::
Windows XP / windows seven "paki test nalang sa ibang OS po "
windows 7 / Run as Admin
Microsoft Framework 4 or 3
Internet Connection


eto po ang link or HERE... pls DL nyo na lang
click SKIP para tumuloy sa mediafire.com... thnx,.. comment pag nagustuhan...










Openline your HUAWEI broadband.

*warning*

   use at your own risk..

kung meron kayong luma o kahit bagong HUAWEI broadband, pwede nyo na iopenline. pano?
eto oh... gamitin nyo tong program na to... find the IEMI ng broadband nyo,.. usually makikita yan sa malapit lalagyan ng sim o sa likod ng broadband mismo... itype nyo ung mga numbers (15 na numbers.) then click calculate.




click nyo lang ung skip pra ma DL na ninyo...

HOW TO USE THE UNLOCKER:

1. Open the Unlocker tool
2. Insert the IMEI of your Huawei Modem - calculate
3. You now have the UNLOCK CODE

HOW TO USE THE UNLOCK CODE:

For Globe tattoo
1. Insert Smart SIM on the globe tattoo
2. Plug in the Globe tattoo with a smart sim to the computer
3. Open Globe tattoo dashboard
4. The globe tattoo software will prompt for the unlock code since the inserted sim is not a globe sim
5. Input the UNLOCK Code
6. Unlocked!

How To use the usb modem with different sim
Make a profile!!
Eto yung settings:

For Smart:
Go to: Tools > Options > Profile Management > Dial-Up
Profile Name: Smart Bro or any name
Dial Number: *99#
APN: internet
go to "Advance" and choose "PAP"
then Save.

-----------------------------------------------------
For Globe Network

Go to: Tools > Options > Profile Management > Dial-Up

Profile Name: Globe Visibility or Globe Tattoo or any name
Dial Number: *99***1#
APN: http.globe.com.ph

then Save.
-----------------------------------------------------
For Sun Network

(For Prepaid Settings. Just use Sun Combo sim)

Go to: Tools > Options > Profile Management > Dial-Up

Profile name: Sun Broadband
APN: minternet
Dial Number: *99#

go to "Advance" and choose "PAP"

then Save.

Thursday, May 23, 2013

bootable USB...?

para saan ba ang bootable USB?
    1. kung sira ung CDROM mo at di ka makapag boot sa CD ROM..
    2. kung wala kang bootable CD para marepair mo ung pc/laptop.
    3. mas mabilis magformat gamit ang USB kesa sa CD..
    4. portable na matatawag...

Easy way to create a bootable USB drive... working sa XP and windows 7, 100% sure...
mas mabilis pa sa ibang program sa pagcreate ng USB bootable..

RUFUS program



click here for the RUFUS









































    

Thursday, May 16, 2013

Google = 466453.com

there are different geek term for google.com. but one term that amaze me was 466453.com.
why this number is owned by google... simple...
look at your cellphone keypad or telephone dial numbers


4 GHI 6 MNO 6 MNO 4 GHI 5 JKL 3 DEF

try it now...

Tuesday, April 16, 2013

embarrasing moment

.. accidentally spill my nestea softdrink. sorry to my wife.. heheheh

posted from Bloggeroid

Saturday, March 30, 2013

Cooking time.

frying fish using margarine and canola oil. Just an experiment, though it doesnt so good but its smell and taste is great. Hehehr

posted from Bloggeroid

Monday, March 25, 2013

MF100 brick





Download:
1.QPST
2.DL_MF100_ETS_EG_EUV1.00.00.zip
3.DCCRAP
4.ZTE Driver
5.GlobeVisibility

Instructions:
1. extract all zip or rar files.
2.a. install QPST.exe.
2.b. install ZTEDrvSetup.exe. - skip if dongle not bricked/dead.
3. run "QPST Configuration">click "Add New Ports">uncheck "Show Serial and USB/QC Diagnostic ports only"> add all ports "COMX -USB/unknown" - X is a number.
4. click the added port and goto "Start Clients">EFS EXPLORER> then ok ok.
5. delete all files except folders in the EFS EXPLORER.
6. drag the files inside this folder. "\DL_MF100_ETS_EG_EUV1.00.00\DL_MF100_ETS_EG_EUV1\ ETS_EG_P671A1V1.0.0B06\3.Download_File\" and wait until finished. - from the files you extracted
7. run MF100UpdateToolV1.9.exe from "\DL_MF100_ETS_EG_EUV1.00.00\DL_MF100_ETS_EG_EUV1\ ". - from the files you extracted
8. in MF100UpdateToolV1.9.exe check "Special Item" and click "Software Version" look for "\DL_MF100_ETS_EG_EUV1.00.00\DL_MF100_ETS_EG_EUV1\ ETS_EG_P671A1V1.0.0B06\3.Download_File\" from the files you extracted.
9. click the "purple arrow" pointing to the right and wait until finished.[theres a time that it will search for the file ".sdi" just click close/cancel]
10. run DCCRAP, Select manufacturer "ZTE datacards",click "Detect Card" or the big magnifying glass, goto Flash and click "Write Dashboard" and use the GlobeVisibility.ISO you downloaded earlier - wait until finish.
11. enjoy your unlock SmartBro dongle.
12. go outside and buy halo-halo.

In any steps if you have trouble try close the finish program you use or reset/unplug and plug dongle.
Use any of this program or TUT at your own risk.
If you can't understand the TUT so sorry for you.
Tested in my Dead/no Autorun 16digit code MF100

Tuesday, March 19, 2013

bugbugan ba?

UPDATE KO LNG MARCH 13, 2013 MARCH 14, 2013 still wroking out of 14 sim 10 ang pasok Sorry, hindi sapat ang iyong balance para makapag-register sa UNLIALLTRIO. Mag-load ng at least P1401 para makapag-register na at ma-enjoy ang UNLIALLTRIO. Sorry, you have entered an invalid Keyword. To create your own promo with Globe Prepaid GoSAKTO, just dial *143#. Status: Blanko po ang rply ni 8888 TRICK 1: A = *143*1*1*5*1*5*5*2*1# 1. Send GOcscomboEE1496 to 8888 2. While sending, dial A 3. Repeat 1 and 2 three times with no interval. TRICK 2: A = *143*1*1*6*1*5*5*2*1# 1. Send GOtscomboEE1413 2. While sending, dial A 3. Repeat 1 and 2 three times with no interval. DON'T CHECK STATUS, JUST BROWSE. P.S. I tried this trick at 3-6AM time, di ko alam kung nagma- matter ba talaga ang oras ng pagsalakay. Sana po may magtagumpay sa inyo, at sana po may makapag-improve nito kung meron pa man mas maganda. Inuulit ko, medyo maliit lang ang porsyento kaya sana walang magagalit sa akin, pero subukan nyo na lang baka madali nyo agad. Hehehehe! Mabuhay ang mga buggers! 1. Dial *143*1*3# 2. Click ANSWER 3. Type UNLIALLTRIO1400 then register. 4. Dial *143*1*3# again. 5. This time, type UNLIALLTRIO150 Then register Do it repeatedly if it doesn't work the first try. NOTE: This is more effective using a touchscreen phone where you can copy and paste words. 1. Dial *143# 2. Enter 1 then send (GOSAKTO) 3. Enter 3 then send (MY FAVORITE PROMO) 4. Type "UNLIALLTRIO1400" then send (Reg. now and key in the name of your favorite promo!) 5. Send 1 to register (Great! blablablabal) 6. Browse na po agad, baka madetect po pag status Option B. 1. Create contact "A" with numbers *143*1*3# 2. Type "UNLIALLTRIO1400" (Reg. now and key in the name of your favorite promo!) 3. Send 1 to register (Great! blablablabal) 3. Browse na po agad, baka madetect po pag status Note: ulitin po or palitan ng UNLIALLTRIO150 yung pagsend sa "REG now and key in the name of your favorite promo!" para maextend gamit din po tayo antibugging tricks like BAL to 222 + 6 times paobserve na lang po kasi sa iba po working, sa iba hindi. tulungan lang po tayo dito mga kasymb for UAT1400: *143*1*1*7*1*5*1*5*5*1*1# for UAT350: *143*1*1*7*1*5*1*5*5*2*1# for UAT150 *143*1*1*7*1*5*1*5*5*3*1# for UAT60 *143*1*1*7*1*5*1*5*5*4*1# Ito buhay n buhay pa tlga c uat.nagtatago lang pala dial *143*1*3# click ASWER3.type UNLIALLTRIO1400 den regester. Dial again *143*1*3# dis time type UNLIALLTRIO150 den regester do it repeatedly if it doesn't work the 1st try.kakabug q lng ng isa k0ng sim.. SOCIAL299 + *143*2*3*1*1# + SOCIAL STATUS? at FUN599 + *143*2*3*2*1# for gocomboEEE1400 *143*1*1*7*1*5*1*5*5*1*1# for gocomboEEE350 *143*1*1*7*1*5*1*5*5*2*1# for gocomboEEE150 *143*1*1*7*1*5*1*5*5*3*1# for gocomboEEE60 *143*1*1*7*1*5*1*5*5*4*1# now you can create your own text and dial trick for the new code name of UAT example 1: text gocomboEEE1400 to 8888 dial *143*1*1*7*1*5*1*5*5*2*1# example 2: text gocomboEEE1400 to 8888 dial *143*1*1*7*1*5*1*5*5*3*1# example 3: text gocomboEEE1400 to 8888 dial *143*1*1*7*1*5*1*5*5*4*1# http://m.globe.com.ph/mobile_browsin...ocomboEEE+1400 http://m.globe.com.ph/mobile_browsin...gocomboEEE+350 http://m.globe.com.ph/mobile_browsin...gocomboEEE+350 http://m.globe.com.ph/mobile_browsin.../gocomboEEE+60 para sa mga touch screen phone Quote: Originally Posted by McDRAVEN tut po sa touchscreen phones para di mahirapan gawa pu kayo ng shorcut sa menu / select shorcut / first is DIRECT DIAL the choose nyo po un save nio dial trick..... second next is DIRECT MESSAGE ..(note mag save din kayo sa contact 8888 save as B) choose nyo po si B then copy paste nalang pag mag message OLA SANA MAKA TULONG WORKING TO SA FUN599............. sir tnx sa TUT lagay ko na rin sa 1st page ITO PO YUNG SS KO hindi ako register sa ano mang promo ngaun ko lng yan na bug 03/13/2013 ung bbmax599 at ss999 na uunbug kasi sa akin kya di ko nlng nilagay ung trick pili lng kaau kung saan working sa inyu credit lng po natin sa naka discover WAG PO TAYONG MAGALIT KUNG HINDI MAKA BUG DAPAT ANG MAGALIT PO AI ANG TAGA GLOBIBO MARAMING SALAMAT !!!!!

Monday, March 18, 2013

Monday, March 11, 2013

The Secret of


  1. credit kay sadpart

    private void combo_protocol_SelectedIndexChanged(object sender, EventArgs e)
  2. {
  3.    if (Operators.CompareString(this.combo_protocol.Text, "UDP ", false) == 0)
  4.    {
  5.        this.string_7 = "udp ";
  6.    }
  7.    else
  8.    {
  9.        if (Operators.CompareString(this.combo_network.Text, "SMART", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  10.        {
  11.            this.string_7 = "udp ";
  12.            this.combo_lport.Text = "53";
  13.            this.combo_rport.Text = "80";
  14.            this.txt_proxy.Text = "";
  15.            this.txt_proxyport.Text = "";
  16.        }
  17.        else
  18.        {
  19.            if (Operators.CompareString(this.combo_network.Text, "SMART", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  20.            {
  21.                this.string_7 = "tcp ";
  22.                this.combo_lport.Text = "9666";
  23.                this.combo_rport.Text = "443";
  24.                this.txt_proxy.Text = "10.102.61.46";
  25.                this.txt_proxyport.Text = "8080";
  26.                this.string_10 = string.Concat(new string[]
  27.                {
  28.                    "--http-proxy-retry 5 --http-proxy ",
  29.                    this.txt_proxy.Text,
  30.                    " ",
  31.                    this.txt_proxyport.Text,
  32.                    " "
  33.                });
  34.            }
  35.        }
  36.    }
  37.    if (Operators.CompareString(this.combo_network.Text, "GLOBE", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  38.    {
  39.        this.string_7 = "udp ";
  40.        this.combo_lport.Text = "52";
  41.        this.combo_rport.Text = "9201";
  42.        this.txt_proxy.Text = "";
  43.        this.txt_proxyport.Text = "";
  44.    }
  45.    else
  46.    {
  47.        if (Operators.CompareString(this.combo_network.Text, "GLOBE", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  48.        {
  49.            this.string_7 = "tcp ";
  50.            this.combo_lport.Text = "153";
  51.            this.combo_rport.Text = "8080";
  52.            this.txt_proxy.Text = "";
  53.            this.txt_proxyport.Text = "";
  54.            this.string_10 = "";
  55.        }
  56.    }
  57.    if (Operators.CompareString(this.combo_network.Text, "SUN", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "UDP", false) == 0)
  58.    {
  59.        this.string_7 = "udp ";
  60.        this.combo_lport.Text = "53";
  61.        this.combo_rport.Text = "9200";
  62.        this.txt_proxy.Text = "";
  63.        this.txt_proxyport.Text = "";
  64.    }
  65.    else
  66.    {
  67.        if (Operators.CompareString(this.combo_network.Text, "SUN", false) == 0 & Operators.CompareString(this.combo_protocol.Text, "TCP", false) == 0)
  68.        {
  69.            this.string_7 = "tcp ";
  70.            this.combo_lport.Text = "80";
  71.            this.combo_rport.Text = "443";
  72.            this.txt_proxy.Text = "";
  73.            this.txt_proxyport.Text = "";
  74.            this.string_10 = string.Concat(new string[]
  75.            {
  76.                "--http-proxy-retry 5 --http-proxy ",
  77.                this.txt_proxy.Text,
  78.                " ",
  79.                this.txt_proxyport.Text,
  80.                " "
  81.            });
  82.            this.string_10 = "";
  83.        }
  84.    }
  85. }

Tuesday, February 19, 2013

Android Games

Android games ba hanap mo... eto oh... DL na medyo mainit init pa....subscribe na lang kung nagustuhan.... i'll add more games soon.. medyo mabagal net ko... post your request and i'll try maghanap ng mga games na nirequest nyo... please pang android lang ha.... wala ako iphone....


1. Fruit Ninja THD v1.2.0.apk
2. Cut the Rope Experiments HD v1.1.6 
3. Age of War
4. House Of Hell v1.0.3.0
5. Gun Strike XperiaPlay v1.2.8
6. Grafitti Ball
7. Gold Miner Classic HD v1.2
8. Goblins Rush v1.0.1
9. Galactic Fruit Wars v1.0
10. Fire Pinball v1.0.1
11. Fantashooting v1.51 Mod
12. Evo Dash v1.0
13. Drag Racing 3D v1.5
14. Doodle Army v1.4
15. Asteroid 2012 3D v2.7.5
16. Age of War v1.1.2
17. House Of Hell v1.0.3.0
18. Gun Strike XperiaPlay v1.2.8
19. Graffiti Ball v1.0.1
20. Gold Miner Classic HD v1.2
21. Goblins Rush v1.0.1
22. Fire Pinball v1.0.1
23. Galactic Fruit Wars v1.0
24. Evo Dash v1.0
25. Fantashooting v1.51 Mod
26. Drag Racing 3D v1.5
27. Asteroid 2012 3D v2.7.5
28. Doodle Army v1.4
29.
30.
31.
32.
33.
34.
35.

pwede rin kayong mag request,,,,

post your request and hahanapin ko ung files na gusto mo...


Monday, February 18, 2013

Uno Piraso...

collection of my one piece anime.... medyo  mahirap mag Upload.... whew...
use VLC or KMPLAYER to watch... hanap na lang po sa internet...
enjoy mga paps....


Uno Piraso 001.mkv
Uno Piraso 002.mkv


Android Go Launcher Themes...

The following are themes para sa go launcher.. di ko po inaangkin ang mga yan... na DL ko lang dati dahil sa kahahanap ko dito sa net.... i share this for you... puro paid themes halos ang mga nandito,,,,
wala akong Screen shots pero sana magustuhan nyo... hehehehe



1. ElegantDroid_GO_Launcher_Theme_v1.0
2. Summer_Fruits_golauncher_theme_v1.6
3. Black_Orange
4. Go_Launcher_Leeks12_Theme_v1.4
5. Pure_Blue_Theme_Go_launcher_ex_v1.1
6. Gold_and_Leather_GO_EX_Theme_v1.2
7. Omnia_PRO













Friday, February 15, 2013

Jail breaking Iphone

First things first... di po sa akin ang tutorials and wiki/dictionary about dito,,, di ko po inaari at inaangkin ang bawat explanation dito.... eto po ay galing kay sir marvin378 ng symbianize... matagal na rin ako nag hahanap ng tuts about iphone, halos wala akong makita,,, napadaan ako dito sa page ni sir marvin... thnx sa kanya...

warning: do this at your own risk,,,, this is for EDUCATIONAL purpose only...

Jailbreak Dictionary! All About jailbreaking! Must be read!!!!


iPhone JailBreak Dictionary is a quick reference of important terms relevant to understanding the iPhone JailBreaking process.

Jailbreak – Your iPhone has been designed with restrictions that prevent you from running applications obtained from sources other than Apple’s own iTunes App Store. To be able to install these applications, your iPhone needs to be jailBroken. JailBreaking allows you to read and write to the iPhone’s operating system’s partition, thereby liberating your iPhone from Apple’s software “jail”.

Confused ? Don’t worry, we’ll explain it all:

Partitioning is achieved when an operating system splits the memory into smaller separate units. Let’s make it real easy: Let’s take a pizza as the perfect example. The box the pizza was delivered in and the whole pizza represent your hard-drive on which you can store your files. So if you open the box, cut the pizza in half, that’s like splitting up your hard-drive into two pieces. That’s what partitioning is all about. The computer opens the box, sees the two halves of pizza and considers them to be two halves, although it’s one whole pizza.

Your iPhone operates in the same way. It uses two partitions, one media partition and one partition for the operating system. The media partition is where all your iTunes data is stored: music, movies, contacts, App Store apps , etc. This partition is usually the total size of your iPhone’s memory capacity, but deduct about 500-600 MB for the operating system partition. Apple has set up the iPhone’s partition in such a way that the hacking has to be done in the operating system’s partition which isn’t as easily accessible as the media partition.

The partition on which the operating system (iPhone OS) is installed is the space Apple has locked. This is where the jailbreak lies. Once we gain access to this partition, you can do a number of things, such as:

• Install unofficial (non-App Store) applications which weren’t accepted to the App Store (for one reason or another) or haven’t yet been submitted to the App Store

• Execute scripts and commands (for advanced users)

• Tweak the visual aspects of the iPhone’s OS

Jailbreaking brings these functionalities and a lot more to your device.

Tethered Jailbreak – This type of jailbreak requires that you plug your iPhone/iPod into your computer with your usb cable and run the jailbreak each time you need to reboot the iDevice. This could be from a reboot after installing certain apps in Cydia/Rock, or from letting the battery die. It will often come boot back on with the iTunes logo showing on screen. You must connect your iDevice to your computer, close iTunes if it opens (and if on a windows system, it is a good idea to open the Task Manager – ctrl+alt+Del and go to the processes tab, look for and end task on iTunesHelper.exe – there will be some other apple functions running, but ONLY End Task on that one). Then run your jailbreak again (it will not “rejailbreak” it per say, you will not lose any information or cydia apps)

Baseband – The baseband is a subsystem on the iPhone which manages all functions which require an antenna, like phone line communications etc. Modifying this subsystem is how unlocks are achieved. The baseband is separated from the OS and has it’s own processor and it’s own firmware. It’s firmware is called the baseband firmware. Baseband versions look like this: 4.01.13_G (1.1.1) 4.03.13_G (1.1.3). An iTunes restore will not modify the baseband of your iPhone unless your baseband is erased or downgraded prior to the restore.

Bootloader – The bootloader is the first thing that is executed when the iPhone is powered on. There are two shipping bootloaders, 3.9 and 4.6. The bootloader can be downgraded using hacking methods. It is risky downgrading your bootloader because if something goes wrong, you cannot repair it. Bootloaders perform an integrity check on data and prevent unsigned, non-apple code from being loaded. They essentially police the iPhone’s OS, making sure everything is the way Apple want it to be. PwnageTool, WinPwn and QuickPwn patch out integrity checks from the bootloaders, allowing unsigned code to be executed.

iBoot – iBoot is the bootloader for the application processor on the iPhone. iBoot is responsible for putting the iPhone into recovery mode. During a restore of the iPhone, iBoot makes sure that you are flashing a firmware version greater than or equal to the current one on your iPhone. If this isn’t the case, iBoot will not allow the restore process to proceed. This is why firmware downgrades have to be done in DFU mode. iBoot has an interactive interface which allows communication via USB or serial.

DFU Mode – DFU Mode is a special mode in which the iPhone can still interact with iTunes, yet it does not load the iPhone OS or iBoot. The iPhone’s screen appear lifeless when in DFU mode, making it impossible to tell by looking at it whether the iPhone is in DFU or powered off. PwnageTool exploits a vulnerability when the iPhone is in DFU to flash custom firmware to the iPhone. As iBoot and the OS are not yet loaded, downgrading the firmware version if possible. To enter DFU mode:

• Plug iDevice into computer (first) and then turn it off. If you need iTunes open to detect it (for a restore) open it now. If you do not need it open (for jailbreaking) Make sure it is closed before putting into DFU mode

• Hold down the power button for 3 seconds – it will begin to power on

• Without releasing Power, press and hold the Home button. Keep both held in for 10 seconds

• Release ONLY the Power button. Keep Home held in for up to 30 seconds. Usually @ 20 seconds it will enter DFU mode.

• If properly in DFU Mode, the screen will be blank (as noted above) and if iTunes is open, it will give a message saying it detected an iPod/iPhone in “Recovery” mode. (it says Recovery in recovery mode or DFU mode).

Recovery Mode – Recovery Mode is a state of iBoot that is used during standard upgrades and restores. As iBoot is active, it does not allow you to downgrade your device’s software. Unless it is ‘pwned,’ it will not allow custom firmware to be flashed.

Hacktivation – Hacktivation is not much different from activation. There is only one slight difference. Activating your iPhone is done through iTunes in order to use it with an official carrier. Hacktivation is its equivalent for iPhones that don’t work with an official carrier and therefore need to be activated with a jailbreak tool.

Shift Restore – This is a generic term used for iTunes. It means that instead of just clicking the Restore button to update (and wipe the OS) on your iPhone/iPod Touch you hold down the Shift key on a PC, or the Option key on a Mac and click on Restore. It will open a box that allows you to browse for and pick the firmware you wish to load onto the device. Alternately you can use this to load alternate carrier configuration files for iPhones (.ipcc). This was used mostly to add tethering and MMS to iPhones.

IMEI – The IMEI number of your iPhone is unique. IMEI stands for International Mobile Equipment Identity. It is static (it never changes) and identifies your iPhone. All mobile phones have an IMEI number.

SIM – A Subscriber Identity Module (SIM) is a small chip provided by your telephone carrier which contains your specific and unique data, like your phone number, your IMEI code and more. The SIM card is what identifies your phone on the cellular network, and is used by GSM and UMTS phones.

ECID – Electronic Chip ID – A unique identifier that is device specific. Currently in the iPod Touch 3G , iPhone 3GS, iPhone 4 and iPad. It allows Apple to control which device is eligible to have which firmware loaded onto it. iPod 1G/2G and iPhone 2G/3G do not have ECID’s and are able to upgrade and downgrade firmwares regardless of the firmware being signed by Apple except on iOS4.

Springboard – The iPhone’s main screen is called the SpringBoard. It may consist of several pages, depending on how many apps you have installed on your iPhone. The SpringBoard is where you choose which app you want to open.

SSH – Secure Shell (SSH) is a method of file transfer for securely exchanging data between an iPhone and a computer (providing that the iPhone is jailBroken and OpenSSH is installed).

UMTS – UMTS is the successor to GSM. It is a 3G, W-CDMA based network. It can also be expanded to 4G. This is the technology that iPhone 3G , 3GS and iphone 4 uses.

Unlock – Unlocking your device means opening up the iPhone’s modem to accept SIM cards from unofficial carriers. In some countries the iPhone is unlocked by default and not blocked for use with only one carrier. Such an iPhone can be used with any SIM card. In the USA for example, an iPhone will not connect to any carrier other than AT&T, unless it is unlocked. Just as the iPhone OS checks the applications that you interact with whenever you use your iPhone, the baseband processor controls your iPhone’s modem. The baseband processor has its own, separate firmware from the main operating system, called the baseband firmware. During most iPhone software updates, Apple updates the baseband firmware on the iPhone. The unlock lies in the baseband firmware. By patching out certain bytes, you can bypass the SIM check. For some devices, updating the baseband can mean that you won’t be able to unlock your iPhone anymore. Thankfully, the IPhone Dev Team has developed programms like PwnageTool which can disable the baseband to update when the iPhone’s software is updated, allowing the iPhone to remain unlocked and thus enjoy the latest version of the iPhone’s software. JailBreaking and activating are prerequisites for unlocking.

SHSH - SHSH Blob is a signature file which is verified against Apple Server to verify the the iPhone is running the latest version of iOS. If for some reason, when you are try to restore to a previous version, Apple will not allow you to restore it becuase, you are trying load a older version of iOS. To make this possible, we need to send a request to a different server (Local or designated) which sends a SHSH blob (which was saved by you) back to iTunes faking that its the current version.

 for more info please visit symbianize web site

for more infor about this please visit thissite:
   very informative ang mga link.. click me




http://www.symbianize.com/showthread.php?t=573359


<A HREF="http://www.EasyHits4U.com">EasyHits4U.com - Your Free Traffic Exchange</A> - 1:1 Exchange Ratio, 5-Tier Referral Program. FREE Advertising!

Tuesday, January 22, 2013

Project for the 3rd Year Elective students,,,
Please use thisSWF file as guide... recreate it to make your own maze and functions...

SWF File  or Click Me 

this is the FLAF file for the maze...
FLA or Click Me

Tuesday, January 15, 2013

Project Making

the Following Activity are for all Computer Course Students.
Please be informed that your project must be presented a week before the Exhibit..
Choose from the two activity...

1. Maze

  •     Must be 20" x 15 " in size.. it may be portrait or landscape..
  • Create your own maze.. Maze that are downloaded on the interenet will render "0" zero on your hands on and project.

Monday, January 7, 2013

Sunday, January 6, 2013

Android GO Locker Themes

pimp out your samsung galaxy young (GT S5360)...


gusto mo bang maiba ang environment ng android mo.... ?
download na ng GO Launcher...
then download mo na ang mga themes dito....
click the links then wait for the page to load.. after that click the skip ad button at the top right of your screen... here are the links for the themes..


1. Mango GO Locker Theme 1.0 apkmania.com
2. Steampunk GOLocker Theme v1.0
Go LocKer Fishpond Theme
4. AlienWare_Go_Locker_theme_v1.0
5. Angry Birds Space GO Locker Theme-103
6. Bing GO Locker Theme v1.00
7. BoltLocker_v3.00
8. ColorBox GO Locker Theme v1.0


MORE to COME... medyo mabagal ang net ko... hope you go back..
request lang kayo ng app... i'll try maupload lahat...
thnx...