这篇文章主要是记录下我从讨厌,习惯,喜欢,热爱BEM方式的心路历程 刚入职水滴, 第一个需求是做5个落地页,开了需求,过了设计图,so easy一切都在计划中,提测,准备上线最后阶段codereview 居然打回重写,原因是css要按照BEM规范,迷茫脸 what?what?what? 这个是什么鬼 ...
分类:
Web程序 时间:
2020-06-02 18:47:10
阅读次数:
60
原文地址:https://stackoverflow.com/questions/33910294/what-is-the-difference-between-article-and-section-in-html5 <section>标签 : section,汉语意思为部分,这个标签定义网页上的 ...
分类:
Web程序 时间:
2020-06-02 00:07:00
阅读次数:
95
HDU-5608(杜教筛) 题意:\(G(n)=n^2?3n+2=\sum_{d|n}F(d)\),求$\sum_1^nF(i)$ 反演得到:\(F(n)=\sum_{d|n}\mu(d)G(\frac{n}{d})\) 则$\sum_1^nF(i)=\sum_i\sum_{d|i}\mu(d)G( ...
分类:
其他好文 时间:
2020-06-01 20:47:19
阅读次数:
44
PHP: Callback / Callable 类型 - Manual https://www.php.net/manual/zh/language.types.callable.php Callback / Callable 类型 自 PHP 5.4 起可用 callable 类型指定回调类型 ...
分类:
其他好文 时间:
2020-06-01 14:03:45
阅读次数:
60
Reference Resource juejin segmentfault 目录 跨域why 跨域what 跨域how JSONP CORS Websocket Nginx反向代理 Node 中间件代理 跨域方案总结 跨域why 浏览器的同源策略 结论:浏览器的安全机制,不许跨域, 一是针对接口的 ...
分类:
其他好文 时间:
2020-06-01 01:17:20
阅读次数:
183
介绍 DCL(Data Control Language),即数据控制语言,用来定义数据库的访问权限和安全级别,及创建用户。 主要包括创建用户、给用户授权、对用户撤销授权、查询用户授权和删除用户等。 用户及权限、角色管理 包含的语句 mysql> help Account Management Yo ...
分类:
数据库 时间:
2020-06-01 01:09:36
阅读次数:
115
题目链接:https://vjudge.net/problem/HDU-1176 都说天上不会掉馅饼,但有一天gameboy正走在回家的小径上,忽然天上掉下大把大把的馅饼。说来gameboy的人品实在是太好了,这馅饼别处都不掉,就掉落在他身旁的10米范围内。馅饼如果掉在了地上当然就不能吃了,所以ga ...
分类:
其他好文 时间:
2020-05-31 19:55:08
阅读次数:
55
题目链接:https://vjudge.net/problem/HDU-1069 A group of researchers are designing an experiment to test the IQ of a monkey. They will hang a banana at the ...
分类:
其他好文 时间:
2020-05-30 13:06:28
阅读次数:
65
今天来小结一下indexOf()方法的几种API 首选自定义一个字符串(生活就像一盒巧克力,你永远不会知道你要拿起的是哪一个——《阿甘正传》) String str= "life was like a box of chocolates you never know what you are gon ...
分类:
其他好文 时间:
2020-05-30 10:43:48
阅读次数:
627
题意:给你两个字符串s1,s2,让你寻找最长s1前缀和s2后缀的匹配长度,若长度大于0,且输出最长匹配s1前缀。 #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace st ...
分类:
其他好文 时间:
2020-05-30 01:32:37
阅读次数:
72