Zigmoyd Php Framework

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

User avatar
neel_basu
Forum Contributor
Posts: 454
Joined: Wed Dec 06, 2006 9:33 am
Location: Picnic Garden, Kolkata, India

Zigmoyd Php Framework

Post by neel_basu »

Hello Everybody Zigmoyd Php Framework 1.0.0.0 Has Been Released.
Please Log On To http://www.zigmoyd.net To See It.And Now Get A Deep Sleep Cause I Hope After Using It You Would Make a Dynamic Php Site In Just 20 Mins.
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Post by Benjamin »

What are the features and benefits of your framework?

Why would one want to use it?

If your framework is designed to eliminate programming, why are you marketing it to programmers?
User avatar
neel_basu
Forum Contributor
Posts: 454
Joined: Wed Dec 06, 2006 9:33 am
Location: Picnic Garden, Kolkata, India

Post by neel_basu »

astions wrote:What are the features and benefits of your framework?

Why would one want to use it?

If your framework is designed to eliminate programming, why are you marketing it to programmers?
Visit http://www.zigmoyd.net You Will Understand. I am not Marketting. I am Just saying It To Every Body.
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

The site wrote:Even if you make some mistakes while typing it it will understand what you meant to do and it will do that very job very for you.
Hmm... lovely, I'm sure. I always thought that's the sort of thing frameworks try to detract from... to promote good programming practise. It sounds like a recipe for a mess where bugs go un-noticed for a long time.

On a side-note, you may want to look at sorting out the text on the website. I know you're not a ntive English speaker but it looks very rushed with words like "cause" instead of "because".

Also, why am I clicking links that point to "#" ?

I'm not sure why you use camelcaps everywhere in your documentation like you do when you post on this forum... it takes me longer to read and just looks very wrong.

I'm not going to keep picking holes, but after looking over your API docs (of which there appears to be little of nothing in your framework) I have to wonder, have ou used other frameworks like Zend, Symfony, Cake or CodeIgniter before?
User avatar
neel_basu
Forum Contributor
Posts: 454
Joined: Wed Dec 06, 2006 9:33 am
Location: Picnic Garden, Kolkata, India

Post by neel_basu »

I've never used any framework before . But I should say one of my faults thats its a library rather than a framework. and second fault of mine i was trying hard not to using Caps that much but i've told you before about it......
alvinphp
Forum Contributor
Posts: 380
Joined: Wed Sep 21, 2005 11:47 am

Post by alvinphp »

I find the best way to learn a language is to build your own framework from it. So, congratulations on all your hard work. You can park it with the 100 other frameworks that exist for PHP.
User avatar
Luke
The Ninja Space Mod
Posts: 6424
Joined: Fri Aug 05, 2005 1:53 pm
Location: Paradise, CA

Post by Luke »

I find the best way to learn a language is to build your own framework from it
I agree... it is definitely an invaluable learning experience.
User avatar
daedalus__
DevNet Resident
Posts: 1925
Joined: Thu Feb 09, 2006 4:52 pm

Post by daedalus__ »

/agreeeee
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Post by onion2k »

If http://www.zigmoyd.net is an example of what this framework can do I think I can happily ignore it.
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Post by Christopher »

Congrats neel_basu! It looks like you put some work into your creation. I won't critique it here as it is not really a general purpose framework, but is a library and runtime. The code could definitely use a Zigmoydoscopy. Someone may find the code useful.

It does have some of the best error messages I have seen (though they should not be echoed). This one is the best of the best though:

Code: Select all

echo "Artificial Intelligence Failed To deciede anything.\n";
(#10850)
User avatar
neel_basu
Forum Contributor
Posts: 454
Joined: Wed Dec 06, 2006 9:33 am
Location: Picnic Garden, Kolkata, India

Post by neel_basu »

Haha :lol: :lol: :lol: :lol:
I've forgotten To Change It To Something By Which One Can Understand The Error Correctly.
By the Way This Error message Will Fire If You've Supplied Insufficient Arguments to the Function
Please Please Tell me When You got This Error Message ??
nwp
Forum Contributor
Posts: 105
Joined: Sun Feb 04, 2007 12:25 pm

Post by nwp »

I just cant tell it wrong. Its very good to me.It can do a lot with this 18 line code

Code: Select all

<?php
include_once("zig/config.php");
include_once("zig/weather/weather.php");
include_once("zig/done.php");
echo "<form method='GET'>";
echo '<input type="text" name="location" value="'.$_GET['location'].'">';
echo "<input type='submit' value='submit'>";
echo "</form>";
if(isset($_GET['location']))
{
	$res = new weather_info(weather_direct($_GET['location']), "m");
	$current = $res->get_current();
	foreach($current as $key => $val)
	{
		echo $key.' : '.$val."<br />\n";
	}
}
?>
http://localhost/zig/w.php?location=Bangalore wrote:last_update : 3/29/07 11:00 PM Local Time
location_name : Bangalore, India
temperature : 24
feels_like : 24
feels_like_str : Clear
feels_like_icon : 31.png
baro_reading : 1015.9
baro_condition : steady
wind_speed : 5
wind_gust : N/A
wind_degree : 90
wind_direction : E
humidity : 47
visibality : 8.0
uv_index : 0
uv_text : Low
dewpoint : 12
moon_icon : 11.png
moon_text : Waxing Gibbous
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Post by Christopher »

neel_basu wrote:Haha :lol: :lol: :lol: :lol:
I've forgotten To Change It To Something By Which One Can Understand The Error Correctly.
By the Way This Error message Will Fire If You've Supplied Insufficient Arguments to the Function
I would suggest an error property or return value.
neel_basu wrote:Please Please Tell me When You got This Error Message ??
I glanced through your code to get feel for what you have built.
(#10850)
User avatar
neel_basu
Forum Contributor
Posts: 454
Joined: Wed Dec 06, 2006 9:33 am
Location: Picnic Garden, Kolkata, India

Post by neel_basu »

zigmoyd.net wrote: even if you have made any mistake while using it Its AI would make it correct and Go on
Its For That Purpouse.In Weather Class if you make Such a mistake that It Cant Understand Wht It Should Do Now It will fire this error.
As of nwp is sending 2 arguments but in the manual its 3 arguments. here its understanding what he wanna do from this 2 arguments but if it cant understand anything (Very Rare Cases) It Will Show this Error.
nwp
Forum Contributor
Posts: 105
Joined: Sun Feb 04, 2007 12:25 pm

Post by nwp »

I am trying so many things to get this error
Artificial Intelligence Failed To deciede anything
But i didn't got something like this still now.
whatever wrong I am typing it doesn't care.Its doing that very job what i am thinking.
and amazing. :o
i've just tested the db_sys Class.And I am not going to buy any SQL books tomorrow.
I would think myself great if i find this error. :roll: cause then i'll :evil: defeat artificial intelegence with my natural intelegence :!:
Post Reply