How to Access Canopy using Router?

On March 28, 2012, in Gadgets, Internet, Technology, by Christian Bautista
0

This is very important stuff if you are an IT or something related to it and you find your internet slower than usual. All you have to do is to access your canopy, well before anything else what is canopy? Do you have that canopy? If you are connected to the internet like for example in the Philippines SmartBro the answer is yes. The canopy is attached at the end of your cable where your internet coming from that serves as the antennae.

Like router canopy has its own IP address which when you type into your browser a website GUI interface will show you. This is very helpful because with this you can edit the settings and make it faster. Mostly the IP address of the canopy is 169.254.1.1 this must work even if you are using a router or directly connected to your canopy.

In case something went wrong, you enable your DHCP and you can’t access your canopy anymore don’t panic. Everything has solution. All you have to do is to connect your canopy to your router and we will assume by default that the address of your canopy is 192.168.1.101 to know exactly if this is the right IP address open your CMD and do a ping. If it replies, check ipconfig and verify if the IP address your pinging is not yours.

If everything is alright and running perfectly fine, goes open any browser Mozilla I prefer and then type the IP address 192.168.1.101 to access the canopy.

Credit for Image : e-netsource.com

Multiplayer Game for PSP?

On March 27, 2012, in Gadgets, Games, by Christian Bautista
0

I love to play different games in my PSP but sometimes I feel bored. I have no one to talk to, or even someone to tease. Well, I keep searching on internet until I found this game. I have been looking for this kind of game where you can play with your friends anytime you want.

The legend of the fat princess is what I am looking for. Awesome graphics, cool story and has different characters which you can upgrade to a more powerful one. The game consist of worker which lets you create building and gather resources, knight which is powerful in close combats, the archers and the priest which purpose is to heal and destroy enemies.

 You can use your own strategy to finish the game. You can even play deathmatch or even soccer while killing your enemies. Play with your friend to make it more exciting.

Tagged with:
 

Why ?

On March 9, 2012, in Insights, by Christian Bautista
2

How do they find a word to describe the happiness they feel every time they are with someone? Why they called it “Love”? Why we need to be sad if there is an option to be happy instead? Why you need to go far from me and I can’t do anything but to watch you? Why I can’t say I don’t want you to go if it’s possible please just stay.

I wonder why such time like this comes into our life. If you see this I want you to know that nothing will change. We are maybe sad today but I’ll make sure that everything will be okay between the two of us. If you read this I want you to be happy and be strong, I love you and forever I do.

Credit for Image : emmyck.wordpress.com

 

How to download free and cracked Applications for iOS

On March 8, 2012, in Gadgets, Iphone, Ipod, Technology, by Christian Bautista
0

Are you a fan of iOS gadgets? I know how you feel, there are many awesome applications built for iOS but most of them are not free. Yeah, I love applications, games and I always want to download them all but I only have limited money in my bank account. What should I do? Go somewhere and find a part time job to earn more money so I can pay?

Of course not, there are always ways to get free applications for your iOS gadgets but you first need to jailbreak your device. This will allow you to download cracked application for free. After you jailbreak your device you will see a loader icon. Run that application this will install cydia in your device after that you can now download install0us.

Installous is like AppStore of iOS the only difference is that unlike AppStore Installous provides free and cracked version of paid applications.After that, you can now download any application you have for free.

Credit for Image : cirond.com

Tagged with:
 

If you are a web developer it is a need for you to know how to send email using your own codes. Which is luckily as for being a Ruby on Rails Programmer it is really easy.

The following are the steps on how to send email in ruby on rails.

Step 1.

require ‘rubygems’

require ‘openssl’

require ‘net/smtp’

You need to copy and paste this code on your environment.rb which you can find inside the config folder. This will let you use the openssl and the smtp.

Step 2.

 

@f_message = <<MESSAGE_END

To: #{recipient}

MIME-Version: 1.0

Content-type: text/html

Subject: #{subject}

#{message}<br>

MESSAGE_END

 

smtp = Net::SMTP.new(‘smtp.gmail.com’, 25)

smtp.enable_starttls

smtp.start(‘mail.google.com’,username, password, :login) do |smtp|

smtp.send_message @f_message, ‘from-address@example.com’,[recipient]

end

Copy and paste the code above and paste it anywhere in your controller

As you can see I used the google mail server as my mail server and the port must be 25.

For you to send email successfully you need first to enable starttls.

Username and password are required for you to send email.

MIME-Version: 1.0

Content-type: text/html

are optional this wll just let you use html tags. If you want to send pure text you may want to delete this lines.

You can now send email everytime you want. Feel free to ask me by writing your question in my comment box.

Tagged with:
 

Ruby is a very powerful server side language which is commonly compared to PHP as its rival. Ruby is combined with the framework Rails which makes it more powerful programming language and they called it Ruby on Rails.

Now let me give a little hint on how to operate with ruby on rails. This is really for total beginners.

This is how to make a simple application in ruby on rails.  Ruby on Rails use active record which let you connect to your database easily. In this tutorial I will assume that you installed Ruby on Rails Properly in your computer.

Let say we are about to create a Phone Directory. Where in you need their names contact number. Take note Ruby on Rails has its own convention or rules of giving names which is very important if you want your life to be easier.

Step 1.

You need to open your command prompt and go to the directory where you want to create your Ruby on Rails Application.

The code must be rails new name_of_applicationin rails 3 and above.

 

You are now done in creating the application; all you have to do is to add more to make it useful. We need to create a phonebook right. Like any other application we need first to create database, table and fields. Rails already provide databases for you. But by default we they will make you use development database. Since we already have our database we are now on creating tables and fields for our application.  For us to do that, we will be using Scaffold.

This will create tables and fields for us with a corresponding view and controller.

What is view? And what is controller? We will discuss it later.

Run rake db:migate in you cmd in your application directory.

Step 2.

Now we’re than with scaffolding, we are now sure that we already have tables and fields and also controllers and view for our application.

Let us now take a look at it. But first we must run the server webrick. To run the server we must type this code in the command prompt.

Rails server

Then we type this on our browser. Localhost:3000/phone_books to see if it works.

Then finally you have your Phonebook application.

This is your index and when you click the new  Phone Book

You can now add members into your Phonebook List.

Blackberry 8520

On January 10, 2012, in Blackberry, Gadgets, Technology, Thoughts, by Christian Bautista
0

I hate blackberry until I got one for myself. The first time I saw it and the fact the girlfriend told me that she doesn’t like blackberry phones because of its being static.  Being static in a way that they have only few applications and almost all of it is not free. For me it sucks.

Well, I like the design and the color, BLACK. We bought one. I am not that excited but after a use it I told myself that it’s really cool, “Business Phone”. The applications for socials are pretty fast and emails are really in there.

The applications are really few but I love how fast it is, and they have many promos like BBM, BBSOC which lets you use their built in features.

Try it yourself, you’ll definitely enjoy using it specially if you love social networking sites or you are a business minded person who keeps on receiving messages in your email

Credit For Image : blackberrycool.com

RubyMine for Ruby on Rails

On January 8, 2012, in Insights, Ruby on Rails, Script, Technology, Thoughts, by Christian Bautista
0

What programmers do is to make the users life easier. They convert manual things to be technology driven and must be more accurate.

Of course, as for being a programmer you need to use a tool to accomplish everything you need to do. I, as a fan of ruby on rails programming I use RubyMine.  This helps me a lot in creating everything, from models up to controllers and views.

Rubymine has built in shortcuts that you may want to use to execute a certain commands like scaffolding, or generating controllers.

I really enjoy using this Editor.

Tagged with:
 

On January 7, 2012, in Blogging, Gadgets, Internet, Ipod, Songs, Technology, by Christian Bautista
0

Youtube.com, we all know this website. We watch video clips here and even movies uploaded by fans. If you are a music lover you can also find the song you want to listen here with its music video or its lyrics. You can even download it with the use of their YouTube downloader application. What if I want only the music? I don’t want the video. Do I need to download the video and then convert it into mp3?

Of course not, there is always ways to get something we want. In order for us to download a youtube file and directly as an mp3 file we just need to visit this website, KeepVid.com and copy and paste the url of the video here and everything is done. Just need to wait for few minutes to fully download the mp3.

Credit for Image : bloggers.com

Tagged with:
 

How to use Google Captcha in Ruby on rails

On January 4, 2012, in Ruby on Rails, Script, by Christian Bautista
0

When making a registration form it is a must for you to create Captcha to avoid robots and any other kind of spams. Well what is Captcha by the way? It is not just a random word or random numbers. It must be image. As a beginner it is very difficult for us to make this kind of Captcha. Thanks for Google for providing recaptcha for free.

Now this is the way on how will you implement recaptcha in your ruby on rails Application.

Step 1.

It’s a must that you have internet connection because Google recaptcha is getting its data online.

Step 2.

You need to add this gem in your gemfile the Google recaptcha will be downloaded and can be used by your application

gem ‘recaptcha’

After adding this file to your gemfile run bundle install. Make sure that you run your server again to use the current changes.

Step 3.

Add this inside your form.

<%=recaptcha_tags%>

Example

  <form action=”#”>

<input type=”text” name=”name”>

<%=recaptcha_tags%>

<input type=”submit” name=”submit” >

</fomr>

Step 4.

To verify if the Captcha is correct you must make a simple if statement like this

if verify_recaptcha #returns true if the Captcha is correct

#do something here

Else

#do something here

end

Now we are done.

It must work perfectly fine.

 

Lastly, please make sure that you have no unclose html tags in a page where you recaptcha tags is because the very_recaptcha might return false.

 

If you have any question please feel free to ask me in the comment I will sure answer your question. Regarding this matter.

Tagged with: