Page 1 of 3 123 LastLast
Results 1 to 25 of 62

Thread: ...

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date: Jul:2010
    Location: -
    Posts: 647

    ...

    . , ?

    . php ( , . ...), css javascript , photoshop ( , ). ? Php - ( , php ),, 2-3 , , .....

    C++ , Visual basic ..?

    , PHP Pretty Hot Programmer
    lovelife.bg - ,

  2. #2
    Pesho's Avatar
    Join Date: Nov:2001
    Location: Sofia
    Posts: 5,169
    - JavaScript, HTML CSS . server-side PHP , ; Python Ruby.
    , !

  3. #3
    Registered User
    Join Date: Jul:2005
    Location: Sofiq
    Posts: 2,798
    , PHP Javascript.

    . Python Ruby , PHP. , C , PHP.

  4. #4
    Registered User fly's Avatar
    Join Date: Jun:2005
    Location:
    Posts: 803
    Pesho Ruby/Pyhton. JavaScript, framework .

  5. #5
    Registered User
    Join Date: Aug:2006
    Location:
    Posts: 4,052
    - PHP.

    ,

  6. #6
    Registered User fly's Avatar
    Join Date: Jun:2005
    Location:
    Posts: 803
    , , PHP. copy/paster

  7. #7
    hmm BornToDrink's Avatar
    Join Date: Aug:2005
    Location: .
    Posts: 11,573
    , , frameworks ..
    .
    , ++ ( ) .
    Hey, mother, I come bearing a gift. I'll give you a hint. It's in my diaper and it's not a toaster.
    .

  8. #8
    philosophus duratea icaci's Avatar
    Join Date: Oct:2006
    Location: Aachen
    Posts: 2,698
    Objective-C - iOS , , , .
    Internet - it doesn't make you stupid, it just makes your stupidity more accessible to others

  9. #9
    Registered User fly's Avatar
    Join Date: Jun:2005
    Location:
    Posts: 803
    BornToDrink, .

  10. #10
    Eclipse Plugin Developer aphex's Avatar
    Join Date: Mar:2003
    Location: Karlsruhe
    Posts: 546
    Objective C, . . , memory allocation, pointers & etc.

    / Java.
    We are drowning in information, but starving for knowledge and time!

  11. #11
    Registered User fly's Avatar
    Join Date: Jun:2005
    Location:
    Posts: 803
    Objective-C C Smalltalk,

  12. #12
    Registered User
    Join Date: Aug:2006
    Location:
    Posts: 4,052
    Smalltalk ...

  13. #13
    Eclipse Plugin Developer aphex's Avatar
    Join Date: Mar:2003
    Location: Karlsruhe
    Posts: 546
    , . 2 memory alloc , .
    We are drowning in information, but starving for knowledge and time!

  14. #14
    Registered User
    Join Date: Jul:2010
    Location: -
    Posts: 647
    ( ) - , .

    , pretty hot programmer?
    lovelife.bg - ,

  15. #15
    ɐ-əpoɔᴉu⋂ ɐ ə anrieff's Avatar
    Join Date: Apr:2004
    Location: Sofia
    Posts: 8,448
    aphex, , - valgrind Mac OS X, memory allocation .

    - : - PHP; , - .
    PHP , web - " PHP ' , Python web...?" ( , web ).
    , ", PHP". .
    , web- ! - , . web PHP
    , . .
    "640K ught to be enough for anybody" - Bill Gates, 1981
    ::Machine specs::Fract::AGG::::Baileys::blog::YouTube channel

  16. #16
    دارس وعامل Siemens's Avatar
    Join Date: Jul:2003
    Location:
    Posts: 1,576
    php python:
    http://wiki.python.org/moin/PythonVsPhp

    offtopic - . , , , .
    php first class, .
    Last edited by Siemens; 21st December 2010 at 00:04. Reason:

  17. #17
    Pesho's Avatar
    Join Date: Nov:2001
    Location: Sofia
    Posts: 5,169
    Quote Originally Posted by Siemens View Post
    offtopic - . , , , .
    , , , self , ( this , ). ( , ).
    , !

  18. #18
    ɐ-əpoɔᴉu⋂ ɐ ə anrieff's Avatar
    Join Date: Apr:2004
    Location: Sofia
    Posts: 8,448
    , Siemens ( -). , "Roman", , display(), :

    Code:
    class Roman(object):
    	def __init__(self, num):
    		self.value = num
    	def display(self):
    		...
    
    x = Roman(5)
    , x , :

    Code:
    Roman.display(x)
    x.display()
    this , . , 99.997%

    , , - __str__(self), , :

    print "%s + %s = %s" % (x, y, z)

    x, y z Roman . . PHP -
    , . .
    "640K ught to be enough for anybody" - Bill Gates, 1981
    ::Machine specs::Fract::AGG::::Baileys::blog::YouTube channel

  19. #19
    Pesho's Avatar
    Join Date: Nov:2001
    Location: Sofia
    Posts: 5,169
    Quote Originally Posted by anrieff View Post
    , x , :

    Code:
    Roman.display(x)
    x.display()
    this , . , 99.997%
    , Siemens, ( , ). ( "" ) . , self ,
    , !

  20. #20
    دارس وعامل Siemens's Avatar
    Join Date: Jul:2003
    Location:
    Posts: 1,576
    Quote Originally Posted by anrieff View Post
    , Siemens ( -). , "Roman", , display(), :

    Code:
    class Roman(object):
    	def __init__(self, num):
    		self.value = num
    	def display(self):
    		...
    
    x = Roman(5)
    , x , :

    Code:
    Roman.display(x)
    x.display()
    this , . , 99.997%

    , , - __str__(self), , :

    print "%s + %s = %s" % (x, y, z)

    x, y z Roman . . PHP -
    ... , ? (- php).

    php , , . , . E_STRICT ( ), ( ). , - $this .
    PHP - , :
    error_reporting(E_ALL|E_STRICT);
    E_ALL &~E_NOTICE, . , open source CMS - . ... / ... magento , __toString().
    ( php 5.3 $object::static_call()).

    .. php :

    Code:
    <?
    //error_reporting(E_ALL|E_STRICT);
    error_reporting(E_ALL);//   E_STRICT  - E_ALL   E_STRICT
    class roman
    {
    	
    	public $num;//   ,             
    	
    	public function __construct($num) {
    		$this->num = $num;
    	}
    	
    	
    	public function display() {
    		
    		$args = func_get_args();
    		if (isset($args[0])&&$args[0] instanceof roman) {
    			$obj = $args[0];
    		} elseif (isset($this) && $this instanceof roman) {
    			$obj = $this;
    		} else {
    			throw new Exception(' roman::display()                     roman.');
    		}
    		//display logic
    		print 'V';
    	}
    
    }
    
    $o = new roman(5);
    $o->display();
    $o::display($o);//   php 5.3
    roman::display($o);
    , , -. , . ( ) , $o->display() , $this .
    , $o::display().
    php __toString .

    P.S. "} elseif (isset($this) && $this instanceof roman) {" ( $this roman?) - - - . , php .
    $this , roman :
    Code:
    class test
    {
    
    	public function func() {
    		roman::display();
    	}
    }
    
    $o2 = new test();
    
    $o2->func();
    Last edited by Siemens; 21st December 2010 at 13:33. Reason:

  21. #21
    Registered User
    Join Date: Jul:2010
    Location: -
    Posts: 647
    , ,

    Php , ?


    ( , 3 , CMS , php. )
    lovelife.bg - ,

  22. #22
    Eclipse Plugin Developer aphex's Avatar
    Join Date: Mar:2003
    Location: Karlsruhe
    Posts: 546
    anrieff, .

    web.py !
    We are drowning in information, but starving for knowledge and time!

  23. #23
    Registered User
    Join Date: Aug:2006
    Location:
    Posts: 4,052

  24. #24
    Registered User
    Join Date: Jul:2010
    Location: -
    Posts: 647
    Quote Originally Posted by solar_sea View Post

    . . , .

    , ruby , php- ( php -, ruby)
    lovelife.bg - ,

  25. #25
    Registered User
    Join Date: Aug:2006
    Location:
    Posts: 4,052
    , . . .

    - C, C++, java 1.4. php *interpreter- ..

    . cgi, ,

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Copyright © 1999-2011 . .
iskamPC.com | mobility.BG | Bloody's Techblog | | 3D Vision Blog |