The Geek Forum

  • May 09, 2024, 03:38:34 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

Due to the prolific nature of these forums, poster aggression is advised.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - neonexus

Pages: [1]
1
Anarchy / Use ExtJS? Read this post
« on: June 18, 2009, 09:33:36 PM »
Well, as promised, I am re-posting to get opinions on my project (I will do my best to be short and to the point). For a short and simple answer, it blends the concept of a web OS with Mozilla Firefox's concept of using XUL for layout. The result is a XML file that is compiled by PHP to produce a JavaScript/XHTML interface. It uses ExtJS 2.2 as the front-end layout framework.

So, if you were to take a simple XML file like the following:
Code: [Select]
<window id="login-win" title="Access Restricted" width="310" height="186" layout="accordion" layoutConfig="animate:true">
<panel id="login-panel" title="User Login">
<form id="login-form" title="Credentials">
<textbox id="login-uname" label="Username"/>
<password id="login-pass" label="Password"/>
<submit text="Login"/>
</form>
</panel>
<panel id="login-register" title="Register">
Nothing, you can't register!
</panel>
</window>

then the system would compile that into the proper JavaScript (this is human readable, the output is compressed):

Code: [Select]
new Ext.Window({
constrainHeader:true,
maximizable:true,
minimizable:true,
border:false,
collapsible:true,
title:'Access Restricted',
layout:'accordion',
layoutConfig:{animate:true},
height:186,
width:310,
id:'login-win',
title:'User Login',
id:'login-panel',
items:[
{
xtype:'panel',
items:[
{
xtype:'form',
frame:true,
title:'Credentials',
id:'login-form',
items:[
{
xtype:'textfield',
fieldLabel:'Username',
id:'login-uname',
},{
xtype:'textfield',
fieldLabel:'Password',
inputType:'password',
id:'login-pass',
},{
xtype:'button',
text:'Login',
type:'submit',
}
]
}
]
},{
xtype:'panel',
html:'Nothing, you can\'t register!',
title:'Register',
id:'login-register'
}
]
});

If you work with ExtJS at all, you've seen something similar to the above 100's of times. It's nothing special. Except that it was generated from an XML file.

The following are snapshots of the interface as generated by the system:


The first is the default view, the second is after clicking on the 'Register' accordion bar.

Now, mind you, this is only a simple example. The overall system (which deals with it's own CLI and application delivery) is a lot more complex. I even went so far as to have the web OS back-end communicate with the front-end in 256 bit AES encrypted AJAX for security issues.

So, tell me, what do you think of this project? Would you find it useful in application development?

2
Anarchy / Re: Internet programmers, I need your opinions...
« on: June 08, 2009, 10:28:25 PM »
Now, I understand the 'need' for M$ styled web OS's. Sometimes I have a hard time expressing myself correctly, and I failed to mention that the way the system is set up, it would be possible to achieve any style for an OS, even a truly original style. I haven't tried to make any other styles as of yet, as I've been concentrating on the overall operation of the system.

As far as changing my links, I don't think that's fair. Now, grant it, I haven't been around long, and I understand I don't have 'rep'. But a forum post describing my project would be too long to keep anyone interested, and I can't show anyone what I'm attempting to achieve here. But, for the sake of proving myself, I will post another post without links if the mods would prefer that.

3
Anarchy / Re: Internet programmers, I need your opinions...
« on: June 08, 2009, 06:24:55 PM »
So, the reason for this post is this: I want to know the opinions of the internet community. What do you think about this project? I'm just looking for serious feedback, as not many people have seen it, and the few that have aren't geeks and don't understand what I'm trying to do.

Did you even bother?

4
Anarchy / Internet programmers, I need your opinions...
« on: June 08, 2009, 06:10:10 PM »
Let me start off by saying that I have been working on this project for over 2 years now, and it is no where near done.

My project (which I'm currently calling Codename Coyote) is a web OS. I know what your thinking, "Oh, that's been done already 100 times". And you're right, it has, but not like this...

I've had this dream of a web OS since I started learning how to program. Unfortunately, big companies and small groups alike have already beat me to it. I've done a million Google searches looking for every web OS I can, and every one of them model their designs after some M$ product (with the exception of Palm's web OS, which has it's own hardware). Not to mention they either use complicated frameworks to create applications, or something like Flash to provide the interface. This is where my web OS comes in.

Codename Coyote (or CC for short) isn't modeled after Windows, but rather Linux. CC also uses XML-like sheets to create applications, and utilizes JavaScript for interface functionality and display.

So, the reason for this post is this: I want to know the opinions of the internet community. What do you think about this project? I'm just looking for serious feedback, as not many people have seen it, and the few that have aren't geeks and don't understand what I'm trying to do.

If you want to read more about the system, the info site is here: (Link removed by mods)
(This wiki isn't finished, but it should give you a good idea of the overall project.)

If you want to play with the live demo, that site is here: (Link removed by mods)

Thank you for your feedback :-D.

5
New Geeks on the Block / Re: The short version of me
« on: June 08, 2009, 04:45:00 PM »
Easy with the hostility man... these people are nice. But welcome anyway.
Yes, I have come to realize that after browsing the forums... I've just been on too many un-nice forums. I apologize if I gave off the wrong vibe, and I thank you guys for the warm welcome :-D.

6
New Geeks on the Block / The short version of me
« on: June 07, 2009, 03:15:05 PM »
I go by the handle NeoNexus DeMortis (if you can translate it, you get brownie points). I am a self taught geek. From the age of 10 I've been teaching myself various programming languages, like PHP. I will NEVER even look at ASP. ASP is bullshit, as are all things M$ (except the Xbox 360, that's the only good thing to come from that company).

I am here out of boredom, and because I will need help later on down the line with my major project (no, I am not here to advertise or get help building my website). I will attempt to be on my best behavior when posting, but I guarantee nothing :evil:. If you deserve to be made fun of, you will be. I expect the exact same treatment.

I have said what I need to say. If you don't like it, too damn bad.

Pages: [1]