• 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
  • 相关阅读:
    groovy 执行shell
    expect 用法
    shebang解释
    docker 安装
    centos7 lvm添加硬盘后扩展磁盘空间
    scoped的原理和deep深度选择器的妙用
    swagger3
    帮评网
    反射工具
    网络只能传输二进制
  • 原文地址:https://www.cnblogs.com/wade-case/p/3261820.html
Copyright © 2020-2023  润新知