zoukankan      html  css  js  c++  java
  • Important Concept

    1. backslash as continuation: A non-quoted backslash ‘’ is the Bash escape character. It preserves the literal value of the next character that follows, with the exception of newline. If a ewline pair appears, and the backslash itself is not quoted, the  ewline is treated as a line continuation (that is, it is removed from the input stream and effectively ignored): http://www.gnu.org/software/bash/manual/html_node/Escape-Character.html
      $ svn checkout 
            http://svn.collab.net/repos/svn/trunk/subversion/tests/cmdline/
    2. MIME type: Multipurpose Internet Mail Extensions: is an internet standard that extends the format of email to support: Text(in character sets other than ASCII); Non-text attachments; Message bodies with multiple parts; Header information in non-ASCII character sets. http://www.cnblogs.com/jsean/articles/1610265.html. 
    3. Every web developer should have a solid ground in CSS
    4. Difference between a helper application and a plug-in:
      A helper application is a separate application program that is invoked by the browser. It is simply a program that can understand and interpret files which the browser cannot handle by itself. Almost any program can be configured to act as a helper application for the browser. Examples of helper applications include Telnet and Excel.
      The browser forks a separate process which starts the helper application. The helper application runs outside of the browser window. So, an advantage of helper applications over plug-ins is multitasking between a helper application and the browser window. If the browser is closed down, the helper application lives on.
      Helper applications cannot display the contents of a file in the context of a Web page. If the file being read is a graphic, the helper application displays only the image, not the image embedded in the Web page. Another difference is that the browser has no control over the behavior of the helper application. The browser only has the ability to start the helper application and display the appropriate file.
      
      whereas
      
      A plug-in is an application program invoked by the browser. It is a dynamic code module designed to extend the capabilities of the browser by integrating a third party application program into the browser. Thus, a plug-in is part of the browser binary tree and runs inside the browser window. It cannot live on its own.
      When plug-ins are installed they automatically tell the browser what file extensions they work with. Normally, there is no configuration involved with plug-ins, only installation. Because plug-ins are part of the browser binary tree they are platform specific. Therefore the correct version must be downloaded for plug-ins to work properly. Examples of plug-ins include RealAudio and Shockwave.
    5. n
    6. n
    7. n
    8. n
    9. n
    10. n
    11. n
    12. n
    13. n
    14. n
    15. n
  • 相关阅读:
    时间选择器和日期选择器
    paip.c++ qt 项目工程互相引用的方法
    leetcode_question_85 Largest Rectangle in Histogram
    在VirtualBox虚拟机上采集Fedora15系统
    Oracle
    VC6.0调试大全
    oracle中的exists 和not exists 用法详解
    vi常用命令
    【虚拟化实战】容灾设计之四VPLEX
    CentOS6.3 安装配置 ant
  • 原文地址:https://www.cnblogs.com/wade-case/p/3261820.html
Copyright © 2011-2022 走看看