exercising the freedom of expression.
  • Let Your Mind Speak

    Let Your Mind Speak blog is all about anything, everything that crashes my mind. It's a collection of hiddeous and most craziest things that my brain process everyday.

  • Pinoyxtreme Forum

    PinoyXtreme Forum provides free downloads on various things. It also allows users to join competitions on various SOTW and GFX Battles via PXDesignz.

  • Symbianize

    Symbianize is a community forum offers free downloads on various items. It also offers chit-chats, help and request sections. And many more.

Monday, November 17, 2014

Posted by Super Aykin | Monday, November 17, 2014 | No comments
Godswar FB doesn't support the new look (avatar2) in their launcher. But we can still used the avatar 2. How? Follow this link:  Avatar 2 Tutorial
Mount is a big problem in avatar2 most of the new mounts looks weird and awful LOL. But this tutorial will help you fix it :)


Requirements:

  • Godswar FB Client
  • Godswar USA client - Download it here - Godswar USA Client
  • Patience
  • Reading and Comprehension
  • A little time and part of your brain
  • Snacks (recommended)

Procedures:
  • 1st: Download the Godswar USA Client. (download link posted above)
  • 2nd: Install it in your system (PC).
  • 3rd: If the installation is successful go to the Drive C:\Program Files\ or go to the drive where you install your GW USA client (not the FB that we are using)
  • 4th: You will see two (2) Godswar Folders in there. (see screenshots)

  • 5th: Open the folder Godswar Online and copy the folders: Characters_New and Ride (see screenshots)

  • 6th: Go to Godswar Online_Facebook folder and delete the Characters_New and Ride folders.

  • 7th: After you delete those files. Hit "Cntr+V" or Paste.
  • 8th: Eat your snacks while waiting for the transfer to finish ^_^
  • 9th: Clap three times and jump 3 times :D
  • 10th: Reconnect to the game
Enjoy the game. <3
If you find this article / blog / post helpful please take a time to share it with your friends. Please use the share buttons available below :) thanks.
Posted by Super Aykin | Monday, November 17, 2014 | No comments
Hotkeys is a very important part of the game. And a convenient hotkeys is a good advantage when it comes to PVPing (Player VS Player).
Godswar FB version upper item/skill slots does not support the F1 to F7 hotkey unlike to the Godswar USA version (not the facebook version). The GW FB version use the Shift + number combination which is hassle and most players find it inconvenient.



Note: This will only work on client user's

Requirements:

  • Godswar Client
  • Reading and Comprehension
  • A little area of your brain
  • Snacks (recommended)

Procedures:
  • 1st: Navigate to the "Hotkey" file. - If you are using the defaults when you install the client it must be C:\Program Files\GodsWar Online_Facebook\Localization\en_us\UI\XML and look for the file "HotKey.xml"
  • 2nd: Create a backup. Just copy the Hotkey file and paste it anywhere. This will serve as a backup copy if you fuck it up. Or if you want to use the defaults again.
  • 3rd: Right-Click the file and open it via NotePad or any Text Editor Programs.
  • 4th: Scroll down to the bottom and you will find something like this (see screenshot)

  • 5th: Select the highlighted texts and replace it with these (see screenshot)
<TabKey Key="9"/>
  
  <SkillShift1 Key="112"/>
  <SkillShift2 Key="113"/>
  <SkillShift3 Key="114"/>
  <SkillShift4 Key="115"/>
  <SkillShift5 Key="116"/>
  <SkillShift6 Key="117"/> 
  <SkillShift7 Key="118"/> 
  <SkillShift8 Key="56" Ctrl="0" Shift="1" Alt="0"/>


  • 6th: Don't forget to save before you close.
Restart your client and test if it works. You can now use the keys F1 up to F6.

Enjoy your hotkeys ^_^

Sunday, November 16, 2014

Posted by Super Aykin | Sunday, November 16, 2014 | 1 comment
No one created by man is perfect. And Godswar is no difference. Godswar have its BUG on Random Quest and many more LOL.

i will post the step by step tutorial about the RQ Bug. so lets start?

Requirements:

  • Patience
  • reading and comprehension.
  • a little part of your brain :D
  • snacks (recommended) lol.


Procedures:

  • 1st: Go to the Random quest manager NPC, located on (136, -173) coordinates on both city (sparta and athens)

  • 2nd: Click the NPC and claim quest sack but don't open it.



  • 3rd: Click Personal Helper NPC and click "Batch" ..

  • 4th: Put the quest sack on the slot but don't click OK..

  • 5th: Let the batch window open and click the daily gift button.

  • 6th: The batch window were changed to "daily gift window". Just click "cancel".

  • Now, your quest sack were stock at your inventory / backpack. You can claim another quest sack just follow the 2nd to 6th steps. Note: Make sure you have slots on your inventory. The more the quest sacks you store the more exp pills you get.

  • If you have enough sacks and you want to open it all, just RECONNECT to the game.

Enjoy the bug :D .. in every 10 (ten) sacks you will gain silver bag (quantity depends on the level of the character and only claimed once a day), Talent Stones lv. 3, and 1pc. Treasure Map. By opening the sacks you may also draw a bottle of Morning Dew for bound pets.

Note: This is not my original discovery, credits and thanks goes to the original discoverer of this bug :)



--------------------------------------------------------------------------
If you find this article useful and if it helped you please share this blog / article / post to your friends. You can use the share buttons below for your convenience :) thank you.





Friday, October 17, 2014

Posted by Super Aykin | Friday, October 17, 2014 | No comments


The program will sort 3 numbers in ascending or descending order. The code will be like this.
//sorting 3 number.. from lowest to highest digit or vice versa
//for educational purposes only

#include <iostream>
using namespace std;
int main()
{
    
    int num1, num2, num3;
    int min, ave, max;
    
    char ans;
    char ans1;
    
    while (ans != 'y')
    {
    cout<<"Enter 3 numbers:"<<endl;
    cin>>num1>>num2>>num3;
    
    cout<<endl<<endl<<endl<<endl<<endl;
    
    if (num1 > num2)
    {
             if (num1 > num3)
             {
                      if (num2 > num3)
                      {
                               max = num1;
                               ave = num2;
                               min = num3;
                      }
                      else
                      {
                               max = num1;
                               ave = num3;
                               min = num2;
                      }
             }
             else
             {
                      max = num3;
                      ave = num1;
                      min = num2;
             }
    }
    else
    {
             if (num2 > num3)
             {
                      if (num1 > num3)
                      {
                               max = num2;
                               ave = num1;
                               min = num3;
                      }
                      else
                      {
                               max = num2;
                               ave = num3;
                               min = num1;
                      }
             }
             else
             {
                      max = num3;
                      ave = num2;
                      min = num1;
             }
    }
    
    cout<<"Key in 'a' for ascending order or 'd' for descending order: ";
    cin >> ans1;
    cout<<endl<<endl<<endl<<endl<<endl;
    
    if (ans1 == 'a')
    {
             cout<<"Sorted to: "<<min<<" "<<ave<<" "<<max<<endl<<endl<<endl<<endl<<endl;
    }
    else
    {
             cout<<"Sorted to: "<<max<<" "<<ave<<" "<<min<<endl<<endl<<endl<<endl<<endl;
    }
    
    cout<<"Type ""y"" to quit. or type any letter to try again: ";
    cin>>ans;
    cout<<endl<<endl<<endl;
                         
}                  
    
    return 0;
}

Posted by Super Aykin | Friday, October 17, 2014 | No comments


Note: Please spare me :3

1. Im WEIRD.. yes i am :3 .. i love weird stuffs.. who the hell cares?? haha i love discovering others weird side.. that is why..
2. I love stalking someone on facebook... if you wanna know people.. check his/her facebook status updates.. weird things happen on facebook.. trust me :3
3. I'm a frustrated writer.. thats the reason why this blog exist :3 .. i love writing my ideas.. opinions.. or anything..
4. Die hard englishers kaayo ko.. maskin mali mali ang mga grammar og usage sa mga words.. ha ha ha ha SPARE me!!
5. I have my frustrations on arts.. gusto kong nakaka kita ng mga obra.. gusto ko rin matuto panu magpaint.. BASTA!!!
6. Love life??? makaon nah? ha ha ha #bitter... WALA INTAWON.. LOOY PUD!!.. still waiting for my Mary Jane <3 (spiderman?) hahahaha
7. Before i sleep, daghan kog mahuna-hunaan na mga lines or qoutes.. either about God, religion, politics, science, movies, ideas, opinions, criticisms, etc. honestly i wrote it in my bed, before i sleep :3
8. If makadungog kog kanta pirmi nako gina visualize ang mga lyrics.. hahaha.. WEIRD?? i told you :3
9. I'm a sleep walker.. pirmi gina ingon sa akoa parents na nagalakaw daw ko pag tulog :3 mehehehehe
10. My online games keeps on hunting me in my dreams -_- .. maybe im just hooked at it.

----------- Your reading until here? Seriosly? -----------

11. Im not religious. no further explanations :3
12. I love science.. the facts about it gives me ghostbombs.
13. I love arguing with people who have sense and style.. If im arguing with you maybe you're cool. pero usahay naga argue pud kog tao na dili nako ganahan :3 hahaha kong wala kay lami imong style bahala ka diha..
14. I hate MATHEMATICS.. i don't like numbers.. really -_-

----------- Hey?? still interested?? -----------

15. My First love is...... SLEEPING :3 ... pero usahay dugay ko katulog kay daghan kaayo kog mahuna-hunaan -_-
16. I always look at the feet of people.. una tan-awon nako ang nawong tapos ang tiil :3 hahahahaha buot d-i ka?? i can't control it -_-
17. Honestly i don't see myself 10 years from now.. maybe iresponsible lang jud ko.. some tells i dont have dreams.. well i dont know..

----------- Hala seryoso jud ka mubasa?? hahaha -----------

18. "BASTA" is my replacement if i can't explain or tell something.. BASTA!!! ayaw nag pangutana..
19. BATMAN hates me!! pirmi nako gina-asa sa iyaha ang mga butang na dili nako mahuman.. "bahala na si batman" :3
20. I hate personal questions.. i often share my life to people.. if gina share nako sa imuha akoa life it means your important to me :) well, this page f*cked the No. 20 for i am sharing you my life :P ha ha ha ha
21. I'm not a fan of texting :3 usahay rako mutext itawon.. hahahaha
22. I hate studying.. lalo na memorization -_- ..


I'll update soon.. :)
Posted by Super Aykin | Friday, October 17, 2014 | No comments
Yeeehhaaaa!! howdy my blogsite?? its been 4 months since my last post ^_^ ..

An update about my life??? Who the hell cares about it? LOL well even if you're not interested about my life, still i will post it here for only one reason.. it's MY BLOG you fucking human!! ha ha ha ha

Now I am currently back to school, HELL YEAAHH!! im taking Bachelor of Science in Information System. How's school? Well it's still standing on the same street where i graduated last 3 years ago ^_^

Well so much for that.. hope i can continue posting trash in this blog <3 who the hell cares.. its my blog :P bleeehh

Friday, April 25, 2014

Posted by Super Aykin | Friday, April 25, 2014 | No comments
First of all i don't write these. It is posted here http://www.symbianize.com/showthread.php?t=808673 .. Credits and Thanks to NRX10 of Symbianize

( image credits to Symbianize Forum: www.symbianize.com )


Why and how did Nokia fall and who should be held responsible for it?

Nokia made a free fall from it’s position of being the largest mobile phone manufacturer to a company on the verge of bankruptcy. Nokia was a huge company that built some of the best phones in history. A company that introduced smartphones to the world. Nokia was well known as the best mobile phone manufacturer before 2007 to be strict. What happened since then? What lead Nokia into this situation they are currently in? What factors have caused such a massive mass destruction of Nokia? Why was MeeGo axed? Why Windows Phones? Why was Symbian ditched? What happened to the Meltemi project? Who is to blame? We got a lot of questions. To find the answers we will need to look back to early 2010. Well, the post is long so you better grab a cup of coffee. I tried my best to keep this post the least technical and wrote it more like an understandable story. A story of downfall of a massive giant. A story of bad execution of plans and bad administration and maybe bad luck too. Here it goes.

Nokia’s initial strategy before February 2011:

1. Keep updating Symbian and continue making it more and more competitive until MeeGo and Qt are matured enough to be public. 
2. Invest and develop Qt – A Cross Platform ecosystem and try to shift developers from Symbian native code to using Qt for building their apps.
3. Develop the Linux based MeeGo as a full featured OS for Nokia’s future high-end phones eventually to replace Symbian (powered by Qt) 
4. Shift Symbian to mid range phones powered by the Qt ecosystem.
5. Replace S40 with another new advanced Linux based OS – Meltemi (Basically stripped down MeeGo).

Qt sounded like a good plan to attract the developers. Developers could built applications for both MeeGo and Symbian simultaneously. For example: The Qt apps built for Symbian could be easily deployed on MeeGo with minor code changes.

What forced Nokia to change the path? What happened to the Symbian ecosystem suddenly?

Don’t blame Stephen Elop yet, all this started even before he arrived. In 2010, Nokia’s shares fell from 39% to 28% . The release of iPhone in 2007 created a drastic change to how people look at “Smartphone” and which Nokia obviously wasn’t ready for. Symbian touch screen devices that were eventually introduced to compete with the iPhone (Like the 5800 in 2008) failed to deliver the user experience. No doubt the 5800 had good sales but the user experience that Symbian S60v5 delivered was simply not good on a touch screen. The UI wasn’t optimized at all for a touch screen and the resistive screens made it frustrating for people to operate those devices. People gradually started shifting to eiher iPhones or Android Phones (Android – Another open sourced Linux based OS made popular by Google). The N8 introduced in 2010 was a stunning product from this Finnish giant packing an awesome 12MP Carl Zeiss sensor and a really good designed body built with anodized aluminium. The phone was the first device to introduce Symbian^3 to the world (The next iteration of Symbian after S60v5). Symbian^3 came in with a massive list of new features, new hardware support and well a capacitive screen after all. But, there was a catch. Though it was much faster and smoother compared to S60v5, it shared the same UI which ruined the experience to the core. The N8 yet sold very widely because the ridiculously good camera in it and a whole bunch of features like USB-OTG, HDMI, FM Transmitter etc. The mobile phone succeeded but the ecosystem failed. Most people now started looking at Symbian as an old OS with a ridiculous UI (when compared to Android and iOS) and some well known Symbian flaws like random freezes and reboots made it worse. Developers were another key aspect. Most of the developers shifted to iOS and Android from Symbian. The Nokia Store (Ovi Store to start with) wasn’t delivering when compared to other app stores and lesser apps were forcing current Symbian customers to shift to Android or iOS. Nokia also played a major role in making Symbian handsets more measurable buy shipping these phones with very low hardware specs. In 2010, when Android phones were shipping with a good powerful 1 to1.2 Ghz processors, Nokia shipped the N8/E7/X7 etc with a mere 680Mhz CPU. I agree, Symbian isn’t a resource hog like Android but third party apps does require a good CPU! Particularly games. Games couldn’t run properly at all even with not-so-impressive graphics on the Symbian^3 devices. All these things all together made Symbian devices look really ugly to the masses, sales kept going down, Nokia kept loosing market share.

Next Stop? Arrival of Stephen Elop

( image credits: http://symbian-developers.net/ )

Stephen Elop was appointed the CEO and a new strategy was laid out in February 2011 and it was a complete shocker to most people including me. Nokia suddenly decided to jump on to the Windows Phone ecosystem and erased all it’s previous to-do lists. The new strategy was:

1. Complete Focus in Windows Phones. 
2. Until Windows Phones gain traction, keep selling Symbian phones and continue keeping them attractive. 
3. Try to make a smooth transition of the existing Symbian users from Symbian to Windows Phones when Windows Phones are ready.
4. Meltemi? (Still on the list) 
5. MeeGo was still being developed. Scheduled to release sometime by the end of 2010.


The rest information are available here http://www.symbianize.com/showthread.php?t=808673



Wednesday, April 16, 2014

Posted by Super Aykin | Wednesday, April 16, 2014 | No comments

Instagram is a photo sharing site. It's available on mobile smartphones like Android and iOS devices. The problem on instagram is you cant save or grab a photo from the other user's posts.

Wanna know how to save or grab a photo? Just follow this simple steps

• First locate the photo you want to grab or save on your computer. If you are on your photo feeds follow  A.. if you are on the Photo Page / Poster Gallery proceed to B.

A:
• Locate the Photo then click the button (see screenshot) then "View Photo Page" on the bottom of every photo

then you will be on the Page of the photo, you can see the comments on the right side of the screen


B:
• Right-Click on a clear part of the page then click "View Page Source"

• Then look for this one (click image for bigger display)

• and then Copy the Image Link (click image for bigger display)

• and paste it on a New Tab on your browser

• right-click on the image and save it on your PC :3 yey!!

----------------------------------

By the way i used Ms. Donnalyn Bartolome's profile on this tutorial. Credits and Thanks to her ♥ ♥ ♥
If you want to follow her on Instagram its: http://instagram.com/donnalynbartolome




Saturday, April 5, 2014

Posted by Super Aykin | Saturday, April 05, 2014 | 1 comment
College is the last part of school days (if you are not going to take masters degree). Your course will mold you to what you want and what you want to do in this fast moving world. And choosing the right course is a problem to some individuals. Some people regret about their courses. Some takes two or three or more courses. And that makes it more time and money for you in college. Well nowadays its not a good thing to do. People are in rush. The world needs workers, not students.




Here are things you must consider in choosing your course in college. 

1. Listen to your heart
Choose the course that you think your heart wants it. Be true to yourself. Use the freedom if you have. By choosing the course you like makes it easier, because you love it. You think you were born to be part of it.

2. Be practical
Sometimes it contradicts to what is written on number 1. Practicality is a good tool nowadays. If you can't have what you want, look for alternatives. And develop it. Make sure that the course you are going to take is in a good shape for the industry. And you must also think if  you or your parents can afford the expenses of that course.

3. Choose the right school
Don't just enroll on an expensive school because it contradicts with number 2. Not all expensive schools give the quality of education you need. Choosing the right school can mold you. Make you a better individual. Not all school gives the best teachers and professors on a particular courses. Be wise on choosing your school.

4. Think of a Job opportunity after college
Don't just choose a course for some sentimental reasons. Be wise. Think of a job opportunity that awaits you after college. Because college is just a preparatory, the main reason for schooling is to find a job. Nowadays a lot of college graduates pushing their-selves on a job hunting. And a lot of them are in the job not totally related to their courses.

It's just a draft on the things you might consider in choosing your courses. It's just my personal idea and tips for you. It's always up to you. How you take it depends on your personality. Good-luck in your lives :3
Posted by Super Aykin | Saturday, April 05, 2014 | No comments
Cigarettes are one of the legal tool to kill people and Smokers are considered as legal criminals. For they just don't kill their-selves but they also killing people near them. The most common diseases caused by smoking is the lung cancer and tuberculosis. Some people with asthma can also suffer breathing problems if they are in the range of a smoker. Smoking can destroy lives. It can cause diseases to non-smokers. Even a non smoker could have a lung cancer if he/she were always interacting with smokers at home, school, office.


Here are some easy steps to stop the addiction on cigarettes.

1. Evade from Smokers and Cigarettes.
Stay away from people who smoke. Stay away from cigarettes, if you really want to quit smoking you must push yourself to evade any kind of cigarettes or smokers. If you have a smoker on your house you must encourage them stop it. or else you all fucking killing yourselves

2. Make your mouth busy.
You can use a replacement for cigars, like gums, candies and other goodies. By making your mouth busy you can forget the habit of smoking.

3. Find a sport / Enroll on a Gym
Best way to evade smoking is to make yourself busy by playing a sport or push yourself on a gym. it's not just for making yourself busy but it's also for your health. Smokers have lower life span than a person who don't smoke.

PS: Quit Smoking, or else we will be glad to attend at your funeral :3