Recent content by alberto-morrison

  1. A

    String-Searching Functions

    Thank you ! A concise and effective explanation.
  2. A

    Is there a way to "find" inside a <select> element?

    Try Ctrl + F on the codes or make a visit to W3school tutorial.
  3. A

    Creating Strings

    Thanks for this useful information
  4. A

    How to run a Bash script via PHP and match the output?

    You do it with exec ie: $exec = exec('/bin/sh /bin/scripts/myscript.sh ' , $output, $return); and you can see the output with: var_dump($output);
  5. A

    What are the different types of caching?

    Major types of caching we are exploring in present era include data caching, web caching, application caching and distributed caching.
  6. A

    What is Tracing in ASP.Net?

    ASP.NET tracing enables you to view diagnostic information about a single request for an ASP.NET page. ASP.NET tracing enables you to follow a page's execution path, display diagnostic information at runtime, and debug your application. ASP.NET tracing can be integrated with system-level tracing...
  7. A

    Coding Style

    Different Styles of Programming 1. Overview 2. Functional programming 3. Modular programming 4. Object-Oriented Programming (OOP)
  8. A

    What is the difference between declaration and definition?

    In computer programming, a declaration determines the name and data type of a variable or other element. Programmers declare variables by writing the name of the variable into the code, along with any data type indicators and another required syntax.
  9. A

    Which is the best website to learn online?

    8 Websites for Free Online Learning Coursera - www.coursera.org Duolingo - www.duolingo.com Khan Academy - www.khanacademy.org iTunes U - www.apple.com/education/ipad/itunes-u/ MIT OpenCourseWare - ocw.mit.edu/index.htm EdX - www.edx.org Codecademy - www.codecademy.com Livemocha - livemocha.co
  10. A

    Remote PHP Development

    Here are the 11 essential areas of knowledge for a web developer: 1. The languages/frameworks you want to specialize 2. Debugging tools 3. Git 4. Databases 5. IDEs 6. Operating system and basic system administration 7. Web servers 8. Web APIs 9. HTTP protocol 10. DNS management 11. Web services
  11. A

    What is .Net frame work??

    The .NET framework is a software development framework from Microsoft. It provides a controlled programming environment where software can be developed, installed and executed on Windows-based operating systems.
  12. A

    What does WSDL stand for?

    Web Services Description Language (WSDL) is an XML-based language that describes Web services and their uses. A WSDL document is a concrete description of a Web service that includes both abstract and concrete elements. WSDL describes the abstract functionality of a service and provides a...
  13. A

    What is java naming and directory service?

    Java Naming and Directory Interface (JNDI) can be used for much more than simply finding resources stored by your J2EE server. A Naming Service provides a mechanism for giving names to objects so you can retrieve and use those objects without knowing the location of the object. Objects can be...
  14. A

    What is the difference between length and length()?

    length is a variable wich is used in arrays for find out the length.lenght() is function defined in Object class as well as String class for find out the length of String
  15. A

    what is topology and its types in networking?

    Network topology refers to the physical or logical layout of a network. It defines the way different nodes are placed and interconnected with each other. Alternately, network topology may describe how the data is transferred between these nodes. There are two types of network topologies...
Back
Top