on my messenger! I have 13 persons 1) beyonca (you won't believe her real name) 2) middle-famous pr0n actress 3) hollywood movie's author 4) famous skin doctor 5) my gf the rest are web masters, local friends and nerds
microsoft did release UNIX based OS years before they did release ms DOS, and they called it xenix, anyway... to have UNIX as OS doesn't help anything, I have IE6 running over wine on linux, lately when I start it (mainly I use IE to test my web site) IE display pop-ups with different ads every time! my homepage set to "about:blank" so the only thing I can think, I have malware running over wine on my linux box, installed trough some hole in IE, in other hand, surfing net via firefox is secure, whatever your OS is, firefox makes it secure, microsoft is in big trouble they have crapy softwares... "it just work" & "fix it later" wont work, end of microsoft has been start...
--
- ah! forgive my stupidness
> Havoc I don't understand, you can't talk about Gnome 3 without talking about GTK+ 3, the only way I would see Gnome 3 is when you use GTK+ 3 as toolkit, GTK+ really need new features... may "you" need to re-code the core to have it.
for example... I would like to have "play" button in my music player in a special look, so with my package I want to attach an XML file to descript how the button should look like, and the rest of wedgets can have the same look as the rest of desktop, also I want to be able to attache many toolbars in one row, I want MDI (I know you don't like it, but GTK+ as toolkit must have it)... there long list!!!
the other part is glib, it's wonderfull but still there much room to improve it, for example, string functions, DOM functions (libxml do works but easy to mistake) easier GTK+/Gnome-db functions and so.
and even if possible I want to get OOP language to develop softwares, The GIMP guys did code GTK+ right? getting python compiler wouldn't be harde.
at time we get super-modern GTK+ 3 toolkit, Gnome 3 would be another talk, another ideas, better desktop... but at moment Gnome 2 rock
Re:Is there a list of softare ready for it?
on
Windows XP X64 Goes Gold
·
· Score: 2, Interesting
imaging if Novell could release Mono for Windows 64-bit before Microsoft release.NET
> object-oriented language like C++ I don't think you know what you are talking about this is very shot code I just made which to show you that C (with wonderful Glib lib) can do OOP/****/ #include <gtk/gtk.h>
typedef struct obj {/* so you can access widget from anywhere */
GtkWindow *window;
GtkButton *button; } OBJECTS;
int main(int argc, char *argv[]) {
gtk_init (&argc, &argv);
obj.window = g_object_new (GTK_TYPE_WINDOW,
"default-height", 200,
"default-width", 200, NULL);/* this can be add to g_object_new *//* also you can do g_object_get *//* more at http://developer.gnome.org/doc/API/2.0/gobject/gob ject-The-Base-Object-Type.html */
g_object_set (G_OBJECT (obj.window), "title", "OOP in GTK/GNOME");
g_signal_connect (obj.window, "destroy", gtk_main_quit, NULL);
obj.button = g_object_new (GTK_TYPE_BUTTON, "label", "I AM OOP CODE", NULL);
g_signal_connect (obj.button, "clicked", G_CALLBACK (sayoops), NULL);
kubuntu is not based on ubuntu, kubuntu is ubuntu with KDE instead of gnome, it's from the same ubuntu team, anyway kubuntu mean "to humanity", it's real word
> kde vs. gnome it's simple, it's choice, everyone can pick up whatever he/she like... if you trying (trolling / flamware) force people use "DE" you like, you are nothing better than "ben laden"... it's really never mind, as long as "they" listen to freedesktop.org
one thing to say to kde people, QT is GPL, fork it, the company is out there to profit not to help kde project, when you fork QT you will control the widgets then drive it to direction right that kde needs, as free project you shouldn't risk stay under mercy of trolish or whatever you call it.
think about day trolish may think playing friendly with kde is not good for it business!!!
how poeple could know about talk.google.com and that jabber server running up?
ayttm do!
you know! web monkey?
on my messenger! I have 13 persons
1) beyonca (you won't believe her real name)
2) middle-famous pr0n actress
3) hollywood movie's author
4) famous skin doctor
5) my gf
the rest are web masters, local friends and nerds
how do you rate me?
how do you compare game console market to pc one?
will Nokia release WiMax's driver for linux?
when will Evolution/Nokia start support sync calendar/to-do/email with Nokia phone via bluetooth/infrared/cable?
will Nokia support VOIP on new phones?
I did add skype to Nokia 3650 - I use bluetooth to call or recieve calls
> when most of the (US) developers are asleep
as far as I know (US) developers sleeping during the night time in... China
if you note the list, there also ubuntu linux... it interesting, now I'm sure there no google os
> Call me a Google fangirl, but this rocks.
you are a girl!? I thought slashdot is guys's castle
well, of course, osnews's girl doesn't count
microsoft did release UNIX based OS years before they did release ms DOS, and they called it xenix, anyway... to have UNIX as OS doesn't help anything, I have IE6 running over wine on linux, lately when I start it (mainly I use IE to test my web site) IE display pop-ups with different ads every time! my homepage set to "about:blank" so the only thing I can think, I have malware running over wine on my linux box, installed trough some hole in IE, in other hand, surfing net via firefox is secure, whatever your OS is, firefox makes it secure, microsoft is in big trouble they have crapy softwares... "it just work" & "fix it later" wont work, end of microsoft has been start...
--
- ah! forgive my stupidness
> Havoc
I don't understand, you can't talk about Gnome 3 without talking about GTK+ 3, the only way I would see Gnome 3 is when you use GTK+ 3 as toolkit, GTK+ really need new features... may "you" need to re-code the core to have it.
for example... I would like to have "play" button in my music player in a special look, so with my package I want to attach an XML file to descript how the button should look like, and the rest of wedgets can have the same look as the rest of desktop, also I want to be able to attache many toolbars in one row, I want MDI (I know you don't like it, but GTK+ as toolkit must have it)... there long list!!!
the other part is glib, it's wonderfull but still there much room to improve it, for example, string functions, DOM functions (libxml do works but easy to mistake) easier GTK+/Gnome-db functions and so.
and even if possible I want to get OOP language to develop softwares, The GIMP guys did code GTK+ right? getting python compiler wouldn't be harde.
at time we get super-modern GTK+ 3 toolkit, Gnome 3 would be another talk, another ideas, better desktop... but at moment Gnome 2 rock
imaging if Novell could release Mono for Windows 64-bit before Microsoft release .NET
it's just the bright side, they says it take one minute to charge 80% but did not say it take 5 minutes to charge the rest 20%
should I patent the idea?
Linux in processor
> object-oriented language like C++ /****/
/* so you can access widget from anywhere */
/* this can be add to g_object_new */ /* also you can do g_object_get */ /* more at http://developer.gnome.org/doc/API/2.0/gobject/gob ject-The-Base-Object-Type.html */
/****/
I don't think you know what you are talking about
this is very shot code I just made which to show you that C (with wonderful Glib lib) can do OOP
#include <gtk/gtk.h>
typedef struct obj {
GtkWindow *window;
GtkButton *button;
} OBJECTS;
OBJECTS obj;
static void sayoops (GtkWidget *widget, gpointer data);
int
main(int argc, char *argv[])
{
gtk_init (&argc, &argv);
obj.window = g_object_new (GTK_TYPE_WINDOW,
"default-height", 200,
"default-width", 200, NULL);
g_object_set (G_OBJECT (obj.window), "title", "OOP in GTK/GNOME");
g_signal_connect (obj.window, "destroy", gtk_main_quit, NULL);
obj.button = g_object_new (GTK_TYPE_BUTTON, "label", "I AM OOP CODE", NULL);
g_signal_connect (obj.button, "clicked", G_CALLBACK (sayoops), NULL);
gtk_container_add (GTK_CONTAINER (obj.window), GTK_WIDGET (obj.button));
gtk_widget_show_all (GTK_WIDGET (obj.window));
gtk_main ();
return 0;
}
static void
sayoops (GtkWidget *widget, gpointer data)
{
g_print ("Oooooops\n");
}
to compile do
gcc oop.c `pkg-config --libs --cflags gtk+-2.0`
a small program that
1) fool web browser to download without user notice
2) chmod itself ---x--x--x
3) excute itself!!!
I don't think that is possible at *nix systems
what the differents between flickr.com and photos.yahoo.com ?
don't forget anything
> Little known fact: kubuntu means to defecate.
oh really?
kubuntu is not based on ubuntu, kubuntu is ubuntu with KDE instead of gnome, it's from the same ubuntu team, anyway kubuntu mean "to humanity", it's real word
see it
one of two, Yahoo! took it legal or France hates google
it's valid English!
repost +5 comments and get your karma up up up... what I'm doing here?
> kde vs. gnome
it's simple, it's choice, everyone can pick up whatever he/she like... if you trying (trolling / flamware) force people use "DE" you like, you are nothing better than "ben laden"... it's really never mind, as long as "they" listen to freedesktop.org
one thing to say to kde people, QT is GPL, fork it, the company is out there to profit not to help kde project, when you fork QT you will control the widgets then drive it to direction right that kde needs, as free project you shouldn't risk stay under mercy of trolish or whatever you call it.
think about day trolish may think playing friendly with kde is not good for it business!!!
the mouse itself is too confusing for your average user, did you remember when had hard time moving pointer to click the hyperlinks?