A little more on MonoDevelop

by percent20 10/31/2005 7:13:00 AM

Personal issues resolved:
Well I found out that inorder for me to run monodevelop I was going ot have to run that export command everytime right before I open up monodevelop.

Well I sent out an e-mail to the mail list and a guy told me to put it in the /etc/profile and voila it worked. Apparently, looking out it, that is where quite a few Envrionment varaibles are stored. I need to remember that.

Little bug:
I found out that the version 0.7 issue is just an accident. So no real big deal there.

Can’t wait to try:
Also the database stuff looks awesome in monodevelop. I am going to install mysql on my laptop temporarily to test it out then see about opening the ports up to my server and play with remote mysql adminstration. I can’t wait to test this little thing out.

Interesting:
From what I have read on the monodevelop roadmap they are going to incorporate stetic into it as the gui form editor. Which IMO will be awesome stetic from what I have seen look awesome. On the stetic site there is a flash video of how to use it. And I must say that it is nice.

Monnopix:
If you want to just jump into doing some development in mono I suggest you do two things at Monoppix.com
a) Downlaod the ISO burn it and get ready to do some development as soon as you reboot with the cd in like knoppix.
b) Watch the Video tutorials on the site they are quite good and can really get you started.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Linux | Mono | Programming

Monodevelop on my laptop

by percent20 10/30/2005 7:09:00 AM

woohoo. I finally got monodevelop installed on my laptop in crux.

What a bear of a job. I spent a few days wondering why in the world it wouldn’t start. Then mircoulusly(sp ?) I tried to start it through console and it spit out that it needed MOZILLA_FIVE_HOME variable set to Mozilla installation directory. Well that sucked because I had not idea what program it was refereing to. Whether it meant a specific one or the whole freaking package.

So after a day of griping and complaining and google searches I finally decided to just download the 13 meg mozilla file and untar it. Well once I finally did that I set the envritonment variable like so:

export MOZILLA_FIVE_HOME="path/to/mozilla/"

After that it worked. Now I need to figure out why it says Version .8 and not version .7. Oh, well at least I have it installed now and can play with it.

Until next time happy coding.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , ,

Linux | Mono | Open Source

Database connection with ASP.NET and PHP

by percent20 10/28/2005 5:09:00 PM

Well continueing with my ASP.NET to PHP comparisons I am also amazed at how similar they are to connect to a database.

PHP

$connection = mysql_connect($host, $user, $password) or die("error connecting");
mysql_select_db($database, $connection);

echo "You have connected to the database";

ASP.NET:

string ConnectionString = "server=myServer;uid=User;pwd=Password;database=NorthWind"
SqlConnection Connection = new SqlConnection(ConnectionString);
Try
{
     Connection.Open();            //Opens the connection
     Response.WriteLine("Hello");  //Prints out: Hello to the web page
     Connection.Close();           //Close the connection
}
catch()
{
     Response.WriteLine("Error connection");
}

There are definatly differences, but what I find interesting is how close the actually connection strings are. It just shows the power of once you learn one then learning another language is fairly simple.

The one thing I do like about connecting to the database with C# or in .NET is the connecting is universal accross all .NET technologies. Include windows forms and embedded devices. Quit cool I think.

The cool thing about php is you can actually run scripts on the command line like a bash script and in that you can even do database connections for data. That is very cool too. I am not sure how to do it, but I have seen it done.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

ASP.NET | PHP | Programming

Finally

by percent20 10/25/2005 7:09:00 AM

Well I finally got crux back and working on my laptop using Gnome. I don’t think I will do that again for a long time. I just want to say thank you to Jaeger for all the help he gave me. Wiithout him I wouln’t have gotten it back up. Now is the long and tedious process to get all things mono working. This will take a while though, it will be fun though.

I also can’t wait to get monodevelop 0.8 going so I can play with it. There looks like many good things in it.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

Linux

Change of Direction

by percent20 10/21/2005 7:00:00 AM

Ok. I mostly do Technical posts on this blog, but seeing as how this is becoming more of my homepage/portfolio you will want to get to know me a little more. So I have added a couple of more categories for me to post about to get a better over all feel of who I am and about me.

Don’t get me wrong most of my posts are going to be technical and relating to computers because that is where a lot of my interests lie, but I also plan to add things about Boy Scouts, nutrition, and a few other things in as they are now, have been, and forever will be a part of me. After all, that is the purpose of the site me and my wanting to help others to learn and get to know me.

Also keep an eye out for a tutorials section for sure. I don’t know how I am going to incorporate this, but I have a few ideas. I personally like writing tutorials just know where to post them so I don’t usually write them. I might start a wiki section so others can help. I don’t know yet. As soon as I know I will let you know.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Personal

Mono and Crux

by percent20 10/8/2005 6:58:00 AM

I am working on creating ports for everything mono. I have several things done so far, but have a few scripts to write to finish it.

I finally got ASP.NET running in linux using mod_mono. It didn’t really take as long as I thought it would. Once I figured out a few basic things about installing applications from scratch in crux things are flying. I am really picking up a lot, and really likeing this distro more and more.

Also, you something I find quite funny is that as a computer person when you see something different at a kiosk that is very limiting you tend to try to do as much as you can to see what all is possible on the computer. For example I am at a coffe shop called Kaffe Bona. They have a highly customized version of IE with a lot of limitaions, mostly done in active directory i am sure. Anyway the first thing I do when I see it is start to see what all is closed off in it. Like i can’t control click to finish urls. I can’t minimize it in anyway ctrl+d doesn’t work. It is very interesting indeed.

But it just says something. When restircited one of the first things people do is see what they can do to get around it. Usually, like in my case, so they can do something incase they need to fix a problem. Like if I the browser crashed most people would just give up, but a computer person would do what they can to reopen the browser.

Anyway enough of my rambling.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , ,

Linux | Mono

Powered by BlogEngine.NET 1.3.0.0
Theme by Mads Kristensen


My Flare

AddThis Feed Button

National Blog Posting Month

Eagle Scout

I'm Test Driven

[Reserved for MVP status I want to earn]

View Buddy Lindsey's profile on LinkedIn

Twitter



Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008

Sign in