September 09, 2010, 09:58:13 AM
  Show Posts
Pages: [1] 2 3 4 5 6 ... 23
1  The Members Hangout lounge !! / Graphics Designs / Re: Dead Planet on: September 05, 2010, 02:55:32 PM
anyone interested in a giant meatball?

nah looks pretty damn cool to me. only thing i dont like is the red dot/stars in the back, other than that planet looks cool

Yeah I enabled stars, and the compositing gave it that effect. I took them off, and working on trying to make a galaxy. Using particles, and I gotta do more compositing with that as well.
2  The Members Hangout lounge !! / Life 2.0 / Song Of The Day on: September 05, 2010, 12:42:40 AM
Simply put a song down that defines your day, feelings of your day, how your days going, etc: etc: Although you can only put one song down per day.

B.O.B ft. Eminem and Hayley Williams - Airplanes
Airplanes - B.o.B ft. Eminem and Hayley Williams Lyrics (External Embedding Disabled)
3  The Members Hangout lounge !! / Graphics Designs / Dead Planet on: September 04, 2010, 12:33:49 PM
All the dead planets I made in the past sucked lol, so I decided to give it another try in Blender, and I came up with this result, which will be a tutorial I have planned for my tutorial site BlenderPimp. I'll also have a tutorial on exploding the planet as well.

For more information checkout my article here on BlenderPimp.
4  Xtreme Downloads / Utilities and Operating System apps / Re: NinjaTxt: A Basic Test Editor (Beta) on: August 30, 2010, 02:05:34 AM
not sure how it works but.. look good and decent enough to maybe try and use.

Nice job.

I'm trying to figure out how to add the numbers on the side of the text editor, that way when users get an error in their coding they can see the line right away. I'm just working on some updates of it as this is only a beta not the final release.
5  The Members Hangout lounge !! / Media Center / ROFL Pimp In Training on: August 29, 2010, 05:25:22 AM
funniest kid in the world
6  Xtreme Downloads / Utilities and Operating System apps / NinjaTxt: A Basic Test Editor (Beta) on: August 27, 2010, 09:15:49 PM
NOTE: This program has not been tested under the windows os yet, and has only been tested under Gnome based Linux distributions.



Exactly as the title says "A Basic Text Editor".

To run the program on Linux extract the NinjaTxt folder to your desktop, and then open your terminal and type the following terminal command.
Code:
cd Desktop/NinjaTxt

This will navigate to the NinjaTxt directory on the desktop.

Then type this following terminal command which will make sure that the program is executable so we can run it.
Code:
chmod +x NinjaTxt.py

And then run the program by typing this terminal command.
Code:
./NinjaTxt.py
7  The Members Hangout lounge !! / High Tech / Re: Anybody ever use TimeFreeze 2 here ?? VMware on: August 27, 2010, 07:58:34 AM
Those dont do that like above said do they or no ??


I was when I read this post. Looks like a nice piece of software I checked this video on youtube (couldn't play the one on the website, idk if it's the flash player I have on linux or what)
Wondershare Time Freeze 2.0 Demo
8  Support and Tutorials / Tutorials / Simple Hello World Program In Linux Using Python With GUI Using Glade on: August 27, 2010, 07:31:28 AM
Today will be using Glade Interface Designer to create our graphical user interface. (Glade is cross platform, and will run on windows, linux, and mac os x) In this project Glade will be doing pretty much all the work for our program, but we will need to incorporate some code in Python so lets begin.

First off download Glade via Terminal, Tarball, Add Remove Section, etc:

For Ubuntu, Kubuntu, Xubuntu, Mythbuntu, and Debian users we can install Glade using the terminal by using the following terminal command. (Do not close your terminal after installing glade as we will be using it later on to finish up our program, so just minimize it for now)
Code:
sudo apt-get install glade

Now that you have Glade installed go ahead, and open it.
You will then see a window pop up with the title saying "Unsaved 1 preferences" just press the close button, as we don't need to change anything there today.

Now add click on the window button to add a window (by the top left, which is highlighted in green)

Now on the right change the name of the window title of the program to "Hello World!"

Below you'll see "Default Width" and "Default Height" check the boxes and you can give your program custom dimensions. (I chose 320x240)


Click on the Common tab, and go down to where you see "Visible" and click the button to change that to "Yes". Then clock the Signals tab and open GtkObject, and for our destory signal will choose "on_window1_destroy" (without quotes).


Now click on the label, and then click on the window that was added to add our label.

Now change the text of the label from "label" to "Hello World!".


Now save the glade project as helloworld.glade

Then open that glade project in a text editor and you should see an XML code similar to this.
Code:
<?xml version="1.0"?>
<glade-interface>
  <!-- interface-requires gtk+ 2.6 -->
  <!-- interface-naming-policy toplevel-contextual -->
  <widget class="GtkWindow" id="window1">
    <property name="visible">True</property>
    <property name="title" translatable="yes">Hello World!</property>
    <property name="default_width">320</property>
    <property name="default_height">240</property>
    <signal name="destroy" handler="on_window1_destroy"/>
    <child>
      <widget class="GtkLabel" id="label1">
        <property name="visible">True</property>
        <property name="label" translatable="yes">Hello World!</property>
      </widget>
    </child>
  </widget>
</glade-interface>

Save that XML code as helloworld.xml as we won't be needing the glade project anymore, cause the XML file here is what creates our GUI now, but we need to incorporate some coding so that way when we close the window the program will actually close, and not run in the background.

Now in our text editor make a new document, and paste the following code in there, and name it helloworld.py
Code:
#!/usr/bin/python

import gtk
import gtk.glade
import gnome.ui

def whateverdestroy(obj):
gtk.main_quit()

anynamehere = gtk.glade.XML("helloworld.xml")
dic = { "on_window1_destroy" : whateverdestroy }
anynamehere.signal_autoconnect (dic)
gtk.main()

Some of the names you may notice are kind of weird like "whateverdestroy", or "anynamehere".
anynamehere can obviously be changed, that's just the name of the event, and whateverdestroy is the name of the function that loads, and closes the application. The codes inside the function are the codes that load, and close the program, and notice we're incorporating out helloworld.xml file as the gui. Also notice that we put down "on_window1_destory" which is the closing name we gave out window in Glade.

However we need to make our program executable, and there's a couple ways to do that.

First, because I saved my files to my desktop I need to navigate to my desktop by putting the following terminal command down.
Code:
cd Desktop

Now put down the following terminal command to make our python file/program become executable.
Code:
chmod +x helloworld.py

Now the other way to do this is by right clicking the helloworld.py file and selecting Properties.
Then click the Permissions Tab, and then check "Allow existing file as a program".

Were now pretty much done all we have left to do is to is to test our program. (NOTE: Remember all errors will be automatically detected, and will tell you what the error is. As if there's no errors the program will run smoothly)

So now lets put down the following terminal command to test our program.
Code:
./helloworld.py

Our program is now up and running with no errors, but remember right now if you close the terminal the program will close as well.



So anyway that's how you guys can create a program with a GUI in Linux using the Python programming language.
9  The Members Hangout lounge !! / High Tech / Re: Anybody ever use TimeFreeze 2 here ?? VMware on: August 26, 2010, 06:14:27 PM
I use VMWare Player for windows, and VirtualBox on linux.
10  The Members Hangout lounge !! / High Tech / Re: Anybody ever use TimeFreeze 2 here ?? VMware on: August 26, 2010, 02:52:57 PM
I've never heard of it, but looks like I'm a day late lol
11  The Members Hangout lounge !! / Graphics Designs / Re: 3D Stone Ball on: August 24, 2010, 10:49:44 PM
Yeah it was actually pretty easy except making the texture part, as I wasn't sure exactly how I wanted the texture so I was experimenting and got that.
12  The Members Hangout lounge !! / Graphics Designs / Re: Monster Head (First Try At Sculpting) on: August 24, 2010, 10:47:36 PM
I was told it looks like a werewolf lol
13  The Members Hangout lounge !! / Graphics Designs / 3D Stone Ball on: August 23, 2010, 08:16:01 AM
http://img842.imageshack.us/img842/4359/stoneball.png


About 10-15 minutes in Gimp no stocks used.
14  The Members Hangout lounge !! / Graphics Designs / Re: Banner For My Website on: August 21, 2010, 08:46:05 PM
glad to see you have your own site now, congrats, doesnt look bad either

he has like 3 of them dude too. lol


I actually have 4 websites which are my own, and 1 which isn't my website, but I have full control over everything, it's a website for a company, and the owner of the company pays me for the site. Anyway I had to change hosts because I originally used VistaPanel to host my site, but I could only have 5 MySQL Databases, and 5 parked/addon/sub domains, and I went passed databases and domains, and needed more (Plus 300MB of Webspace). So I'm in the mix of transfering my files from VistaPanel to my new host Byethost, and I haft to download the files and upload them to the site manually. I got most of my sites back up, but some of the domains I used before, I keep getting an error, so I changed the names a bit for some of the sites, but I'm gonna wait 2 more days, and try to get my official site's domain back up, but if it doesn't work I'm gonna fill a support ticket out, and see if the admins can help me out with it. (I use Dot TK to give my site it's professional domain name by using name servers)

These are my websites so far (I still have to make web layouts)
http://blenderpimp.tk/ (Replacement for BlenderTuts)
http://gimppimp.tk/
http://freeweblayouts.tk/
http://hcew.tk/ (This is the site I mentioned that isn't mine, but I have full control read above if you're confused)

and my official website was originally http://officialspeed.tk/ but I'm trying to get that domain back, as it won't let me park the domain.

The inner glow on the banner is waaaaayyyy to dark I'd recommend using a dark shade of blue and then putting a light opacity on the banner...


Oh and I don't if you are actually done with your affiliates list (since your in the midst of a redesign), but there's way too much empty space there you could fill that in quite easily with a description of each affiliate like I did here


I was planning on making some banners for the affiliates list, but I'm waiting still some get their logos made, plus I still gotta make BlenderTuts's as well, but yeah I'm gonna add the descriptions in them as well. (Didn't think of that)


cool let me know when & whats up. ? Wink


Will Do thumbs up
15  The Members Hangout lounge !! / Graphics Designs / Re: Monster Head (First Try At Sculpting) on: August 21, 2010, 08:22:34 PM
Where's the intake on it lol???
Pages: [1] 2 3 4 5 6 ... 23