1. YAHOO.example.Data = { menu: { breakfasts: [ "donuts", "omelette", "pancakes", "yogurt" ], lunches: [ "burrito", "hamburg ...

    阅读全文
  2. COPY命令用于对文件的复制。 无法复制目录。 XCOPY命令提供了更强大的功能,可以复制目录(添加/s选项),并提供了更多的选项来灵活的实现复制需求。 命令基本格式: COPY 源文件 目标文件/目标文件夹 XCOPY 源文件/源文件夹 目标文件/目标文件夹 常见错误: 目标文件夹不存在,导致目标文件夹名视为一个未知格式的文件 例: copy C:/test/*.* D:/test 本意是将C:/test目录下的所 ...

    阅读全文
  3. Action Items2013-09-14
    53570

    (Done)support editor topic support my topic (Done)support to delete topic support to delete topic in batch 支持图片显示 编辑器支持插入编辑日期和作者 设计bug系统 (Done)定义Bug系统 设计广告投放 显示是保留editor的样式 支持journling text 标准化文本内容格式 标准化博客内容 设计类 ...

    阅读全文
  4. PHP中可以修改HTTP header的几个函数如下: header /header_remove session_start/session_regenerate_id setcookie/setrawcookie 如果在使用上面函数时出现了 Warning: Cannot modify header information - headers already sent (output started at script:line) 根本原因就是应该在o ...

    阅读全文
  5. 昨晚fix了本博客一个剪贴复制的问题。 需求:希望在编辑博客时能够直接剪贴复制图片到文本框中,这样可以简单快捷的编写文章。 解决方法:是通过javascript来允许用户来粘贴图片到一个div中,然后再复制到文本框中。在读取event.clipboardData的时候chrome和Firefox出现了不同的行为。原因是firefox在某个版本后并不允许javascript访问剪贴板。 安全问题: 允许浏览器访问剪贴板有一定安全问题,正常浏览器可以设置。IE设置如下: ...

    阅读全文
  6. 1)两数和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [0, 1] 来源:力扣(LeetCode) 链接 ...

    阅读全文
  7. SpringMVC中核心控制器DispatcherServlet接受请求后通过handlerMapping映射到一个HandlerExecutionChain 对象(包含一个 Handler 处理器对象、多个 HandlerInterceptor 拦截器)对象,通过这种策略模式,很容易添加新的映射策略。 处理器映射器有三种,三种可以共存,相互不影响,分别是BeanNameUrlHandlerMapping、SimpleUrlHandlerMapping和ControllerClassNam ...

    阅读全文
  8. UML工具2019-09-06

    plantUML:http://plantuml.com/zh/class-diagram。 PlantUML是一个开源项目,支持快速绘制UML各类图表以及一些非UML图表。 plantText: https://www.planttext.com/ 是一个在线网站,可以用来设计UML以及生成代码。 UML图表有: 时序图 用例图 类图 活动图  组件图 状态图 对象图 部署图  定时图&n ...

    阅读全文
  9. Operating as a community of like-minded professionals, OWASP issues software tools and knowledge-based documentation on application security. Everyone is free to participate in OWASP and all of our materials are available under a free an ...

    阅读全文
  10. NYSE, NASDAQ Vocabulary: 熊市:bear 牛市: bull 股票: share 保证金,债券: security 交易所: exchange 经纪人: broker 商品: commodity 货币: currency 期货: feature 股息,红利: dividend 债券: bond 股票,股份: share 买卖的特权,选择权: option 普通股:common stock 优先股: preferred stock 派生 ...

    阅读全文
  11. 学习内容源于 官方文档 https://docs.spring.io/spring/docs/current/spring-framework-reference/core.html#expressions   学习摘要: SpEL: Spring Express Language, a java expression language. Other known expression Language: OGNL, MVEL, JBoss EL ... ...

    阅读全文
  12. 符号英语2018-08-24

    + plus 加号;正号 - minus 减号;负号 ± plus or minus 正负号 × is multiplied by 乘号 ÷ is divided by 除号 = is equal to 等于号 ≠ is not equal to 不等于号 ≡ is equivalent to 全等于号 ≌ is equal to or approximately equal to 等于或约等于号 & ...

    阅读全文
  13. css总定义margin, padding等值时可以用以下格式: margin 属性,这个属性接受任何长度单位、百分数值甚至负值。 任何长度单位:可以是像素、英寸、毫米或 em。 可以设置为 auto。更常见的做法是为外边距设置长度值。 百分数是相对于父元素的 width 计算的。 margin: top right bottom left 值复制 有时,我们会输入一些重复的值: p {margin: 0.5em 1em 0.5em 1em;} ...

    阅读全文
  14. 当前中国的投资市场,充斥着许多“绝对论”的投资者,房价在涨,他们就觉得房价会一直涨下去;股票在跌,他们就觉得会一直跌下去。但是回顾历史我们发现,05-07年的A股大牛市催生了一大批暴发户,而08年至今的楼市又催生了另一批暴发户。股民在哀叹自己被套在6000点的时候,是不是也时常幻想着当年把股市上赚到的钱投到楼市上会怎样?这一期财经我们就介绍这样一种教您如何在周期轮转中配置资产的方法。   ...

    阅读全文
  15. http://en.wikipedia.org/wiki/Comparison_of_JavaScript-based_source_code_editors   ...

    阅读全文
  16. 参考文章 https://www.runoob.com/go/go-environment.html Go的官方文档地址为 https://golang.google.cn/doc/, 里面包括了安装文档,go的简单教程,包含如何写go代码,选用什么IDE, 如何troubleshooting,一些常见问题,以及go community的wiki. 同时也列出 Package Documentation(The documentation for the Go ...

    阅读全文
  17. Deployd: 官网: http://deployd.com/ 功能需求: THE SIMPLEST WAY TO BUILD AN API.Design, build, and scale APIs for web and mobile apps in minutes instead of days. License: Apache 2.0 ...

    阅读全文
  18. Travis CI学习2020-03-19

    官网:https://travis-ci.org/ "Test and Deploy with Confidence" Easily sync your project with Travis CI and you'll be testing your code in minutes! 这是Travis的宗旨。很多github上的open source都在使用travis。 我也是在学习开源项目tesseract的时候接触Travis. &nbs ...

    阅读全文
  19. 280

    How to Create a Study Plan Using Study4Pass? Success begins with a structured plan. Here's how you can develop a winning strategy with Study4Pass: 1. Assess Your Starting Point Before diving into materials, take a diagnostic test using S ...

    阅读全文
  20. Spring Security 是一个功能强大且高度可定制的 Java 安全框架,用于保护基于 Spring 的应用程序。`spring-security-web` 和 `spring-security-core` 是 Spring Security 的两个主要模块,它们各自承担不同的职责: ### spring-security-core 1. **核心安全机制**:`spring-security-core` 模块包含 Spring Security 的核心安全机制,如认证(Auth ...

    阅读全文