How much Geek are you?
Check it out to find out ;)
My grade is 29.89 ! It means I am "Major Geek"....Really? :)
Tuesday, January 17, 2006
Monday, January 09, 2006
Blue Robbin Campaign
Wednesday, January 04, 2006
PYML,where Python and ML get married
Hi There....
I've just tried PyML .What's it?
PyML is an interactive object oriented framework for
Machine Learning in Python !
WOW!! great ,isn't it ?
It supports SVM,Filter Methods(Humm),Model Selection and ...
I use Debian Linux so,I didn't faced by any problem to use it.
But if you are Win User,SORRY,it has some native C++ code !!
It means you can't use it. Bingo !!!:)
But don't panic,I 've read the source code.
It's cool,you can migrate it to Window$ easily.
Who knows!I optimized it for you,Maybe.But I don't promise :)
Update:As I mentioned in previous Post,I love AI ...specially
AI approach to Control Systems.
I wanna Mix it with some cool fields.Fields Like DCS and SCADA need it a lot.
What about Machine Vision and/or Robotics?
These are common and interesting areas.
Cheers
I've just tried PyML .What's it?
PyML is an interactive object oriented framework for
Machine Learning in Python !
WOW!! great ,isn't it ?
It supports SVM,Filter Methods(Humm),Model Selection and ...
I use Debian Linux so,I didn't faced by any problem to use it.
But if you are Win User,SORRY,it has some native C++ code !!
It means you can't use it. Bingo !!!:)
But don't panic,I 've read the source code.
It's cool,you can migrate it to Window$ easily.
Who knows!I optimized it for you,Maybe.But I don't promise :)
Update:As I mentioned in previous Post,I love AI ...specially
AI approach to Control Systems.
I wanna Mix it with some cool fields.Fields Like DCS and SCADA need it a lot.
What about Machine Vision and/or Robotics?
These are common and interesting areas.
Cheers
Sunday, January 01, 2006
My approach to AI,Cognition and Maestro
Hello dear visitor....
I don't know why I send this POST !!!
This is too personal stuff...BUT you know,I wanna share
my Idea with you because I can'tFind anybody who
understand my unCommon Idea :(
UnCommon Idea?
Yes a bit.My field is Electrical ! so...
WHY I LOVE AI and Cognitive Science ??
My friends told me that I'm dreamy person !!
They instead advised me to Focus on High Voltage.
For the first time,one of my collage mates advised that when
he saw I've downloaded MAESTRO source code and soaked up on
it's sources for along 4 hours !It was designed very nice and clear.
Good work JPL :)
Please Forgive me because of this post,
I know this is Fuzzy fact.But it's exactly the point,exactly...
AI is nice because it is Fuzzy and challenging..
when you prefer to consider the Biology to find analgorithm....
that's a revelation.When you got fascinated by it's beauty Hum...
That's not just code anymore,your code is alive and it can
spead and communicate with other codes.
It can makes colony and collects knowledge till extreme.
You can create and make them alive.
Why cognition is so critical for me? I don't know,I don't know...
I don't know why I send this POST !!!
This is too personal stuff...BUT you know,I wanna share
my Idea with you because I can'tFind anybody who
understand my unCommon Idea :(
UnCommon Idea?
Yes a bit.My field is Electrical ! so...
WHY I LOVE AI and Cognitive Science ??
My friends told me that I'm dreamy person !!
They instead advised me to Focus on High Voltage.
For the first time,one of my collage mates advised that when
he saw I've downloaded MAESTRO source code and soaked up on
it's sources for along 4 hours !It was designed very nice and clear.
Good work JPL :)
Please Forgive me because of this post,
I know this is Fuzzy fact.But it's exactly the point,exactly...
AI is nice because it is Fuzzy and challenging..
when you prefer to consider the Biology to find analgorithm....
that's a revelation.When you got fascinated by it's beauty Hum...
That's not just code anymore,your code is alive and it can
spead and communicate with other codes.
It can makes colony and collects knowledge till extreme.
You can create and make them alive.
Why cognition is so critical for me? I don't know,I don't know...
Saturday, December 24, 2005
NetBeans gmail module
Please read this nice Interview with Masoud Kalili,
Gmail module writer for
NetBeans and one of the most active NetBeans developer...
He is Final term CS Student...
Good Work Masoud...Continue
Wednesday, December 21, 2005
GUI designers
I personally prefer GUI coding from scratch.Yes,there is simpler wayes to do it.
For example when there are nice GUI designers like
NetBeans or JBuilder for Java and Boa-Constructor for Python ,
why I Code from scratch?
This is my reply....CONTROL....and more control...
You know , I've already understand this concept !!! Control over what you need to do.
PLease let me to explain more:
When you use designers the unwantedMacros will produce.
This is not disadvantage at all but THAT's not
what you NEED as well....You have to accept them because you
restricted in the preCoded macroes . It may be not honey you realy want !!
On the other side,it's not so time consuming you maybe think :)
With WxPython tha't just 5 or 6 line code to make an frame and
less than 20 line to add panels and menu !check it out(by DevShed magazine):
**************CUT HERE*************************
# Here we import wxPython:
from wxPython.wx import *
# Before we create anything, we must create an "App" object:
application = wxPySimpleApp()
# Now we create the dialog:
dialog = wxTextEntryDialog ( None, 'Enter some text:', 'Title Here', 'Default text here.' )
# If the user presses, "OK", print the value.
#Otherwise, print another message.
if dialog.ShowModal() == wxID_OK:
print dialog.GetValue()
else:
print 'You did not push the "OK" button.'
# Destroy the dialog
dialog.Destroy()
***********CUT HERE*************************
As you see this is all thing you need to make an javascript like Prompt order to get text from end user . or in Java Swing :
***********CUT HERE************************
import java.lang.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class SimpleGui1 {
public static void main(String args[]) {
JButton btn = new JButton("Click Me!");
btn.setMnemonic(KeyEvent.VK_C); // Now you can hit the button with Alt-C
JPanel pane = new JPanel(new FlowLayout());
pane.add(btn); // Add the button to the pane
// Now for the frame
JFrame fr = new JFrame();
fr.setContentPane(pane);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.setLocation(200, 200);
fr.pack();
fr.setVisible(true);
}
}
***************CUT HERE**************
humm,NICE , isn't it?control over the code GUI!! it's like cool dream.
Throw the designers on garbage pail and FLY....
For example when there are nice GUI designers like
NetBeans or JBuilder for Java and Boa-Constructor for Python ,
why I Code from scratch?
This is my reply....CONTROL....and more control...
You know , I've already understand this concept !!! Control over what you need to do.
PLease let me to explain more:
When you use designers the unwantedMacros will produce.
This is not disadvantage at all but THAT's not
what you NEED as well....You have to accept them because you
restricted in the preCoded macroes . It may be not honey you realy want !!
On the other side,it's not so time consuming you maybe think :)
With WxPython tha't just 5 or 6 line code to make an frame and
less than 20 line to add panels and menu !check it out(by DevShed magazine):
**************CUT HERE*************************
# Here we import wxPython:
from wxPython.wx import *
# Before we create anything, we must create an "App" object:
application = wxPySimpleApp()
# Now we create the dialog:
dialog = wxTextEntryDialog ( None, 'Enter some text:', 'Title Here', 'Default text here.' )
# If the user presses, "OK", print the value.
#Otherwise, print another message.
if dialog.ShowModal() == wxID_OK:
print dialog.GetValue()
else:
print 'You did not push the "OK" button.'
# Destroy the dialog
dialog.Destroy()
***********CUT HERE*************************
As you see this is all thing you need to make an javascript like Prompt order to get text from end user . or in Java Swing :
***********CUT HERE************************
import java.lang.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class SimpleGui1 {
public static void main(String args[]) {
JButton btn = new JButton("Click Me!");
btn.setMnemonic(KeyEvent.VK_C); // Now you can hit the button with Alt-C
JPanel pane = new JPanel(new FlowLayout());
pane.add(btn); // Add the button to the pane
// Now for the frame
JFrame fr = new JFrame();
fr.setContentPane(pane);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.setLocation(200, 200);
fr.pack();
fr.setVisible(true);
}
}
***************CUT HERE**************
humm,NICE , isn't it?control over the code GUI!! it's like cool dream.
Throw the designers on garbage pail and FLY....
Saturday, December 10, 2005
Eclipse and NetBeans
Last night,I installed NetBeans(for Java),and Eclipse(PyDev for Python).
Although Eclipse is suitable for Java Development,
I preferred NetBeansfor it.
Beacause of it's nice GUI design (completely match with Swing:)
and maybe more powerful Docs !!But Eclipse is
Very nice when you mix it by PyDev extension.
From now,I have a good IDE for Python Development.
It has equipmentswhich any powerful IDE has them,
Class Browsing, CVS Technology,Define Project and...
Humm,I've no time to loose,so I must be brief and fast :)
Although Eclipse is suitable for Java Development,
I preferred NetBeansfor it.
Beacause of it's nice GUI design (completely match with Swing:)
and maybe more powerful Docs !!But Eclipse is
Very nice when you mix it by PyDev extension.
From now,I have a good IDE for Python Development.
It has equipmentswhich any powerful IDE has them,
Class Browsing, CVS Technology,Define Project and...
Humm,I've no time to loose,so I must be brief and fast :)
Thursday, December 08, 2005
My Idea about Linux Worms
Hi Folks :)
I've studied this paper some days before at security focus.please read it first!!You now,I "absolutely" don't think so !As a result of unix like operating systems design,and because of thier separate nature,Un wanted codes like worms,can't make them in trouble. Well,please consider Window$ !!!The design of this hell OS and their selfish utilities are good instance to explain what I wanna say.AS the matter of fact,their integrated architect is their achilles.It's exactly the point! read the mellisa or codeRed source codeto find out what do I say :)But as I mentioned before,Unix like Oses because of their unintegrateddesign(who said this is disadvantage?:) )and maybe multi protocol coding,there is no same way to explode their platform.
what do you think?do you agree with me?
I've studied this paper some days before at security focus.please read it first!!You now,I "absolutely" don't think so !As a result of unix like operating systems design,and because of thier separate nature,Un wanted codes like worms,can't make them in trouble. Well,please consider Window$ !!!The design of this hell OS and their selfish utilities are good instance to explain what I wanna say.AS the matter of fact,their integrated architect is their achilles.It's exactly the point! read the mellisa or codeRed source codeto find out what do I say :)But as I mentioned before,Unix like Oses because of their unintegrateddesign(who said this is disadvantage?:) )and maybe multi protocol coding,there is no same way to explode their platform.
what do you think?do you agree with me?
Monday, November 28, 2005
Window$ manifesto :)
Choose Windows. Choose the eXPerience.
Choose flashy menus on your ****** server.
Choose Exchange. Choose IIS.
Choose Code Red, Nimda, the Lovebug, and a sexy Melissa...
Choose Outlook and end up wondering
where your stupid .docs are.
Choose not to choose. Let Micro$oft do it for you.
But why would I want to do a thing like that?
I choose not to be chosen: I choose something else.
The reasons? There are too many reasons.
And who needs reasons when you've got Linux?
(from http://p.ulh.as/)
cheers :))
Choose flashy menus on your ****** server.
Choose Exchange. Choose IIS.
Choose Code Red, Nimda, the Lovebug, and a sexy Melissa...
Choose Outlook and end up wondering
where your stupid .docs are.
Choose not to choose. Let Micro$oft do it for you.
But why would I want to do a thing like that?
I choose not to be chosen: I choose something else.
The reasons? There are too many reasons.
And who needs reasons when you've got Linux?
(from http://p.ulh.as/)
cheers :))
Friday, November 25, 2005
Wednesday, November 16, 2005
Friday, November 04, 2005
Back Street Boys ( )
Empty spaces fill me up with holes
Distant faces with no place left to go
Without you within me I can't find no rest
Where I'm going is anybody's guess
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
Voices tell me I should carry on
But I am swimming in an ocean all alone
Baby, my baby
It's written on your face
You still wonder if we made a big mist
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
I don't mean to drag it on, but I can't seem to let you go
I don't wanna make you face this world alone
I wanna let you go (alone)
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
Incomplete
Distant faces with no place left to go
Without you within me I can't find no rest
Where I'm going is anybody's guess
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
Voices tell me I should carry on
But I am swimming in an ocean all alone
Baby, my baby
It's written on your face
You still wonder if we made a big mist
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
I don't mean to drag it on, but I can't seem to let you go
I don't wanna make you face this world alone
I wanna let you go (alone)
I've tried to go on like I never knew you
I'm awake but my world is half asleep
I pray for this heart to be unbroken
But without you all I'm going to be is incomplete
Incomplete
Thursday, November 03, 2005
JDK 1.6
Hi Folks:)
At last.....JDK1.6 has released.Thank you Moux for your compelete News;)
In this Version you can Design nicer GUIs with Swing (GREAT)
and JavaByteCodes will run faster and cleaner.
SPECIALLY ...... this VM is OpenSource to Optimize more nad more
(Thanks Sun guys for This great attempt ;)
You know , Java is One of My favorite Languages(with Python).
so.....this is anothr Birthday for Java coders......:D
As Raymond told before "Let Java Goes"!
Have a nice time...
At last.....JDK1.6 has released.Thank you Moux for your compelete News;)
In this Version you can Design nicer GUIs with Swing (GREAT)
and JavaByteCodes will run faster and cleaner.
SPECIALLY ...... this VM is OpenSource to Optimize more nad more
(Thanks Sun guys for This great attempt ;)
You know , Java is One of My favorite Languages(with Python).
so.....this is anothr Birthday for Java coders......:D
As Raymond told before "Let Java Goes"!
Have a nice time...
Wednesday, October 26, 2005
Code Grinder
Hello every body....
I'm in front of my PC in our Company now...and there is no idea to deal with
THIS problem..:)
you now,I think the Code Grinding will stop my breath!!:(
Yes,this is a job(programming),but if there is no interactive comunity,
you will be far from your Hacking mind.
By the way...
1-if you wanna know about Analyzing Server Logs ,you can see this nice Tutorial for more info:)
2- Do you have listened about Minix3?...............:)
3-Eltemase DOA......... :D
I'm in front of my PC in our Company now...and there is no idea to deal with
THIS problem..:)
you now,I think the Code Grinding will stop my breath!!:(
Yes,this is a job(programming),but if there is no interactive comunity,
you will be far from your Hacking mind.
By the way...
1-if you wanna know about Analyzing Server Logs ,you can see this nice Tutorial for more info:)
2- Do you have listened about Minix3?...............:)
3-Eltemase DOA......... :D
Sunday, October 16, 2005
Linuxer,A new Approach
Hi,Folks.
This is my new approach to blogging.:)
If you knew me before,you may ask me "Hey!vahid..,what's up?
Where hell were U?;)
Hummm,OK.First of all I must appologize because of my absent!
In that period of "I have To Think and Work Hard."
Do you wanna know HOW? See the Title:)
AI and Zen are my new interests.They had sorrounded me
in wonder andpleasure,and now I think I can Mix my
Hacking Altitude and life.Great....NO?
Anyway...Perl or python Coders-who are famliar with
JAVA specially-Knows that when a hacker wanna build a tool
which is constructed by stand-alone parts,The best way is
to switch to OOP.the Objects are live Parts which dawn soul
to your code:).Hey! If you "have to choice" bitween these
gentel Languages, What is your sexy honey?and Why?
PLease Reply me.I need your answer:)
This is my new approach to blogging.:)
If you knew me before,you may ask me "Hey!vahid..,what's up?
Where hell were U?;)
Hummm,OK.First of all I must appologize because of my absent!
In that period of "I have To Think and Work Hard."
Do you wanna know HOW? See the Title:)
AI and Zen are my new interests.They had sorrounded me
in wonder andpleasure,and now I think I can Mix my
Hacking Altitude and life.Great....NO?
Anyway...Perl or python Coders-who are famliar with
JAVA specially-Knows that when a hacker wanna build a tool
which is constructed by stand-alone parts,The best way is
to switch to OOP.the Objects are live Parts which dawn soul
to your code:).Hey! If you "have to choice" bitween these
gentel Languages, What is your sexy honey?and Why?
PLease Reply me.I need your answer:)
Subscribe to:
Posts (Atom)