0

Sabbatical

Posted by Erik Gaius,aka [ K i r E ] on Wednesday, April 8, 2009, 7:59 AM in ,

I was here~!

I'm so sorry for not posting this in advance~! Anywayz, I'm currently on a sabbatical until next month, starting this holy week :) Here's some projects that I've been working on:

1.) Ubuntu Jaunty ~ April 24 launch, I hope they get the ATI drivers ok by then...
2.) Dot Net Project #1 ~ Simple Compression/Encryption/Hashing Library
3.) Dot Net Project #2 ~ A signature game/webapp, my project in my subject in Masteral, Analysis & Design
4.) Dot Net Project #3 ~ Ragnarok Online Calculator ~ coming not so soon, maybe in another month :P
5.) Hajime No Ippo: New Challenger ~ Anime Review~!
6.) Rohan Online Ph ~ Moar Impulsive Reviews~!

So, I guess I'll see you in May~!

0

Super Mario Jazz

Posted by Erik Gaius,aka [ K i r E ] on Wednesday, April 1, 2009, 12:25 AM in

0

April 1 ~ Conficker, Jaunty & ATI

Posted by Erik Gaius,aka [ K i r E ] on , 12:20 AM in
NY Times TECHNOLOGY News
Bits: The Conficker Worm: April Fool’s Joke or Unthinkable Disaster?
By By John Markoff
Published: March 19, 200
9

The sophisticated Conficker worm, which has infected millions of computers worldwide, will activate on April 1. But what will it actually do? Read the rest of the article here.

Beware people. I'm just glad I just switched to (buggy) Jaunty.. ~_~ Although right now I'm regretting it. An update though~ ATI hasn't released a patch for their vid card for Jaunty. That means the graphics are really crappy (no opacity support?!).. so If you have an ATI card, might want  to hold off upgrading to Ubuntu 9.04 until April 24.. hopefully the problem's fixed by then..  

0

Press Start to Begin

Posted by Erik Gaius,aka [ K i r E ] on Tuesday, March 31, 2009, 2:49 PM in

0

Jaunty Jackalope

Posted by Erik Gaius,aka [ K i r E ] on Monday, March 30, 2009, 1:51 AM in
April 23, 2008 is the official launch of Ubuntu 9.04, but since the beta is now available, I decided to try it out! This is from the ubuntu wesite itself:

To upgrade from Ubuntu 8.10 on a desktop system, press Alt+F2 and type in "update-manager -d" (without the quotes) into the command box. Update Manager should open up and tell you: New distribution release '9.04' is available. Click Upgrade and follow the on-screen instructions.


Here's the upgrade log~

11:51PM ~ Alt+F2, "update-manager -d" showed ubuntu's update manager with a new button on top, telling me that there's a new distribution release. After a warning page, the update started.
11:56PM ~ Another warning page. Told me that 13 Packages are gonna be removed, 111 Packages are gonna be installed and another 1105 Packages (!!) are gonna be updated, amounting to a 684MB download, or 13 Minutes with my connection.. Pressed 'start update' afterwards.
12:46AM ~ Fetching file 1170 of 1216 at 226kbp/s, 3 minutes remaining
12:50AM ~ Installing Updates
1:30AM ~ Encountered errors in updating ca-certificates, then the upgrade manager died on me. ~_~ I typed "update-manager -d" again at the Run prompt, but the new button isn't there. Update Manager told me that my "system is up to date".. decided to restart @1:33AM
1:34AM ~ Rebooted, Grub told me that I was booting Ubuntu 9.04~ I guess the upgrade went well.

So, what's my first impression? Well, Ubuntu messed with my video card the first boot, and I had to Ctrl+Alt+F1 then Ctrl+Alt+F7 to restart it. Gnome-Do isn't working, and Compiz Fusion's Expo was really slow (Although all other effects is faster). Oh, and Alt+Tab logs me off the system. So yes, the upgrade was a disaster, but I guess that's to be expected with a beta release. Now, excuse me guys, as I have to find a way to make this work~~ :( Until next time, Ciao!

0

Installing the Environment: Part 2.5

Posted by Erik Gaius,aka [ K i r E ] on Thursday, March 26, 2009, 1:57 PM in ,
Here's how I installed my whole Application Development Environment for Dot Net Applications from a clean formatted Hard Drive. Take note that the whole thing took about half a day (not including the ISO & update downloads) but of course results may vary. I'm not telling you to reformat your PC~ Just take what you need and leave the rest.

ADE4dotNet Installation Roadmap:
Part 1 ~ Ubuntu 8.10 & ndiswrapper
Part 2 ~ Mono 2.2
Part 2.5 ~ Mono-Basic & Mono-Develop ^^
Part 3 ~ Hello Worldz!

Let's get this parteh started!
~+~+~+~

Sorry for the delays~! I was messing with the Mono 2.2 for a while now, and I was wondering why the Visual Basic.Net compiler wasn't working. Typing the command below~
$ vbnc
gives a command not found. Even an 'apropos mono' doesn't show the vb compiler, even though the C# compiler is there. So I asked around and found put that VB.Net comes in another package, seperate from the core Mono 2.2, which only comes with the C# compiler. Here's a quick set of commands to set the VB.Net compiler up in a few minutes.

1.) As with any other Linux Installation tutorials in the web, I'll start with the following command~ We need root powers. Type in your administrator password after the line below.
$ sudo bash

2.) The next set of commands will download, extract & install the Visual Basic.Net compiler to your system PROVIDED that you have successfully installed Mono 2.2 as per the last tutorial (Installing the Environment: Part 2).
# wget http://ftp.novell.com/pub/mono/sources/mono-basic/mono-basic-2.2.tar.bz2
# tar xaf mono-basic-2.2.tar.bz2
# cd mono-basic-2.2
# ./configure
# make
# make install
# cd
Again, the cd at the bottom is not really needed- I just want to get back to 'home' for the next tutorial ^^

3.) The installation was awfully quick compared to the Mono install, so to make sure everything's a-Ok, type 'vbnc' at the terminal now. 'Visual Basic.Net Compiler version 0.0.0.5913 (Mono 2.2 - r)...' should appear~~

Now, lets get on with the show! Mono-Develop is a free GNOME IDE primarily designed for C# and other .NET languages. It looks a lot like Visual Studio.Net, except it's not picky when it comes to operating systems. Let's start the installation. (Note: Don't forget to 'sudo bash'!)

1.) Install Mono-Dev Dependencies & Documentations. The application has three main dependencies (and one documentation package), and although all three are quite small and their installation are all simple, make sure that you do this correctly. Messing the dependecies up will cause you trouble later. The first is the Mono Add-ins 0.4~
# wget http://ftp.novell.com/pub/mono/sources/mono-addins/mono-addins-0.4.zip
# unzip -q mono-addins-0.4.zip
# cd mono-addins-0.4
# ./configure
# make
# make install
# cd
The next is GTK# 2.12.7
# wget http://ftp.novell.com/pub/mono/sources/gtk-sharp212/gtk-sharp-2.12.7.tar.bz2
# tar xaf gtk-sharp-2.12.7.tar.bz2
# cd gtk-sharp-2.12.7
# ./configure
# make
# make install
# cd
The third dependency is called Gnome# 2.20.1
# wgethttp://ftp.novell.com/pub/mono/sources/gnome-sharp220/gnome-sharp-2.20.1.tar.bz2
# tar xaf gnome-sharp-2.20.1.tar.bz2
# cd gnome-sharp-2.20.1
# ./configure
# make
# make install
# cd
And the last one's the documentation:
# wget http://ftp.novell.com/pub/mono/sources/monodoc/monodoc-2.0.zip
# unzip -q monodoc-2.0.zip
# cd monodoc-2.0
# ./configure
# make
# make install
# cd
This one might take a while, since its an 18MB download. I'm not sure if this file's really needed, but I recommend installing it just to be safe. ^^

2.) Installing Mono-Develop. I'm sure you've noticed the pattern here~ ^^ Download the tar file using wget, uncompress using tar/unzip, configure using ./configure then compile using make- these are the basic principles in installing from source files.
# wget http://ftp.novell.com/pub/mono/sources/monodevelop/monodevelop-1.9.3.tar.bz2
# tar xaf monodevelop-1.9.3.tar.bz2
# cd monodevelop-1.9.3
# ./configure
# make
# make install
# cd
After that's done, try Mono-Develop out by clicking Mono-Develop at Applications~Programming~Mono-Develop!

3.) Additional Add-in: Database support. Soon, Mono will be able to use LINQ, the revolutionary technology that makes data manipulation a breeze (the september Mono release should come with full LINQ support). But even without LINQ, databases are essential to most applications. Here's the source files of Mono-Dev database support. Just follow the instructions above to install.

OK! That's that for Mono-Basic & Mono-Develop! As usual, your comments, suggestions and questions are most welcome! Just click the post-it note at the right side of this post's title.. Next up is to try everything out with the quintessential "Hello World!" App~! See ya tommorow!

0

Darkfall Review?

Posted by Erik Gaius,aka [ K i r E ] on , 12:06 PM in

Copyright © Gains & Hart Co. 2009 .Net.ph All rights reserved. Theme by Laptop Geek. | Bloggerized by FalconHive.