Feedback

Passerelles Numeriques introduces new website

Just today, June 13, 2012 Ate Rosalyn MiƱoza, our Social Worker in PN posted “ Introducing the new website of Passerelles numeriques! ;-)

Despedida Party of Ma'am Helene, Sir Thomas and Ma'am Elsa

CSNA2013 together with our beloved Education Manager - Ma'am Helene, Project Manager - Sir Thomas and Ma'am Elsa

CSNA 2014

Batch 2014 group picture

CSNA 2013 Scholars

Group picture of PN Scholars Batch 2013

The Graduates

24 Pioneer scholars who graduated last March.

Basic C Tutorials


This post will contain a series of simple C programming tutorials and examples. I think this will be helpful to the first years since they're on to this. For discussions on this post, kindly visit the forum.

Print text on screen

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

main(){
printf("Hello World!\n");
getch();
return 0;
}
You might be wondering why the conio.h header file was included when our main goal was just to print some text on our screen. Well, let's try dissecting our code line by line.
printf("Hello World!\n");
This line is obviously what we want our program to do. The printf() function uses the stdio.h header file/library, now why would we need the conio.h header file?
getch();
This little function makes us see our output. Why? When we run a program, it will automatically exit if we don't include the getch() function. The getch() takes a character without printing it to the screen. Once a character is entered, only then will it exit by going to line 7. Therefore, getch() will stop our program from exiting until it receives a character. And the getch() function fortunately uses the conio.h header file. If you try removing the getch() from your program, you'll notice that once you run the program, it will exit automatically. Well, that's basically how we output text on the screen using C. Stay tune for more updates! Next: Accepting input!

Accepting Input

To accept input from the keyboard, we use the scanf() function which uses stdio.h header. Take a look at the example program:
#include<stdio.h>
#include<conio.h>

int main(){
 char word[]; //variable to hold the input, array of chars
 printf("Enter a word: ");
 scanf("%s", &word); //stores the input to the 'word' variable
 printf("You have entered: %s", word);
 getch();
 return 0;
}

Word Lens translator app, now available for Android


The first Word Lens app came available to the mobile community last 2010 and unfortunately, was only available on iOS devices. Due to this unavailability, a number of mobile users asked for an Andoird version. So now, the developers of Word Lens app, Quest Visual, finally heard the people's plea by making it available on Android through Google Play.

The Word Lens translates captured texts/words on an Android device's camera from one language to another. The app includes an optical character recognition and a dictionary making it functional without an internet connection. To add with the original packed language translation, Quest Visual added Italian/English and French/English pairs to the original Spanish/English language translation which are now available on both iOS and Android platforms. To know more about the Word Lens app, check out Quest Visual's site.

Installing Windows 7 without Optical Drive


Yesterday, I received an email from a fellow scholar that a colleague of his wanted him to reformat and install a fresh Windows 7 Operating System on her Samsung Netbook and ask if I could help.  I immediately replied with a yes since it would be another great learning experience. Installing an OS on a machine without an Optical drive is quite challenging.

So, after some exchanges of email during the break, I started scouting the web for the easiest and simplest solution on how to get a netbook boot on an external USB/HDD drive to install a new OS, since it’s what I think is the best option. First I found Syslinux, a small but powerful suite of bootloaders to start computers with the Linux kernel. I search for syslinux first because I have already tried using this when I was booting ESXi from a USB stick on our new server machine and it was easy. After some reading, I decided to look another one since booting from a USB stick would require at least 4GB of size when using Windows 7 and I can’t afford to have a 4GB USB stick. Next I found tftpd32, a utility that lets you load your installation files from a shared network media. This utility works same with Windows Deployment Services or its predecessor, the RIS, so it’s very easy to configure. After reading the instructions and downloaded the necessary files, I decided that this method should work best but still would need another alternative as a failover in case this one wouldn’t do its task. So I continued reading again until I came to a place on the web where after reading it, decided that this should be my failover solution.

After all the readings, I went home packed with what I think are the necessary tools to do the installation. First I tried the tftpd32 but failed to work at a certain stage during the boot process. To describe with you the setup, here’s a quick list:

Host Machine:
Brand/Model:   Acer 5500
OS:                  Windows XP Professional Service Pack 2

Client/Target Machine:
Brand Model:   Samsung NP-N150P
OS:                  (Currently runs) Windows 7 Starter

Both PCs are connected through a cross-over LAN connection.
The target machine managed to acquire IP from the DHCP on the Host machine and boot into it through PXE but after all the transfer of files necessary for booting, the target machine just restarts and would then boot again into the internal HD. I keep repeating the process and booted successfully once, but once the files are completely copied, the LAN connection icon on the Host Machine suddenly marks a red X which means they are not connected. The target machine gets to the Windows PE but it’s useless since the network is unavailable and the shared installation media can’t be loaded.

At around 10:00 in the evening, I decided to do plan B, aka the failover solution.
Here’s the step by step solution for plan b:
Prerequisites:
Your target machine should have a BIOS which can boot from an external USB storage. If it can’t, there are a lot of utilities on the internet which you can use to force your BIOS to boot from external USB storage. Some of this utilities are PLoP and UNetBootin.

  1. Format any partition on an external HDD, make sure you back up all files stored on it.
  2. Go to computer management by clicking start, click run and type “compmgmt.msc” (without quotes) then hit enter. The Computer Management windows should appear.
Note: This step may vary depending on the type of OS you have.
  1. After that click Disk Management and look for the partition which you have formatted in Step 1. If you’re confused which one is the one you formatted, just go to My Computer and explore which Drive is empty, then take note of its drive letter and it should match the drive letter on the Disk Management.
  2.  Right click on the partition that you have formatted and select “Mark Partition as active”
  3. After that, just load the installation disc on your optical drive and copy all the contents in it to the partition that you have marked active. If the installation source is from an iso, you can just directly extract it using WinRar or 7zip.
  4. After the extraction/copy is done, plug the external HDD in to your target machine, start the machine, set its BIOS to boot to the external HDD and your installation should start right away.

P.S.
Sorry, I can't post screenshot images right now since my pc runs on a Japanese language.
I 'm afraid you might freak out when I post images in Japanese language and spam the comment box. :)




Without a mentor


I went to the office as early as 8:09 in the morning though my regular login time is 8:30 for the reason that I want to spend more time in the company to maximize my learning. As usual, I did the daily routine tasks in the morning. Checking servers and services if all is well and running fine and noticed after a while that my mentor is not yet around. After confirming that everything is ok, I setup our monitoring laptop for server/services unavailability notification/information. Although they were just multiple windows of the old and boring, yet powerful Command Prompts with ping commands running with the –t option added, they never fail to serve their purpose.

I was deeply impressed while searching for an open source Network Management System when I found openNMS and started reading its features.
Because it is free and offers more functions than that boring command prompt which don’t really do the ‘notifying’ thing but instead just shows an endless “Request timed out” when a host is unavailable, I was excited and continue reading further with seriousness.

Because I enjoyed reading the openNMS’ About page, I completely lost focus on my monitoring laptop and was suddenly disturbed when someone on the opposite table in front of me asks “Walay internet bai?”. I automatically turned and look at my monitoring laptop and saw the awful list of “Request timed out” continuously running on 2 of the five command prompt windows.

I immediately check all possible cause of the problem. Since all PCs failed to connect to the internet, I concluded that the Proxy Server which is running SLES11 could be the problem. I immediately opened Putty so I could ssh to the proxy.  It turns out that all are fine inside the machine. Squid is running well and all interfaces are up. No other configurations changed. So I turned to the modem, but its DSL led is lighting green and is blinking which means there is an activity going on. After observing for quite sometime while pinging www.google.com, one reply shows that it originates from our public IP address with the “Destination host unreachable” tag in it. At that time, I was thinking that the problem isn’t in our network but on the ISPs side. I also found out that when I try to enter Google’s IP address manually on my omnibar, Google’s page appear but takes too long to load. This led me to think that our ISP's DNS could be the problem. So I called help from the Systems admin from our other site. After a couple of minutes, he arrived at the office and started checking from physical connections to proxy and modem configurations. Then finally, he called our ISPs help desk and filed a ticket. The result – some problem is occurring on the side of our ISP due to bad weather and will be fixed probably the next morning.

Our internet downtime lasts almost until 4:00 in the afternoon after we decided that we should switch internet connection from our other ISP. After the connection was temporarily restored, I finally feel easy and started to move slower than the time when the problem was still on. Then I realize that it isn’t really easy handling and maintaining a company’s network infrastructure when you don’t have enough knowledge about networking. Good thing I learned about all of these things, so that I was able to at least describe to my other mentor, what could be the possible problem after doing my initial troubleshooting.

You might be wondering why I wasn’t affected when the internet connection was cut but instead continue reading about openNMS and was informed by someone else. Well, I really find it hard when testing two internet connections’ speed through switching my LAN’s gateway. So I searched the whole internet and found SwitchySharp. It’s an extension from Google Chrome that let’s you switch different gateways on your browser(Chrome only) without changing your LANs gateway as long as the two gateways “see” each other. I was actually doing a Speedtest before the problem occurred and forgot to switch back my connection to the other one which failed. Good thing I have this handy extension. For more information about SwitchySharp just go to their website here or search it directly from Chrome’s extension page.