sit

MarkDown的常用语法

半城伤御伤魂 提交于 2019-12-03 07:25:35
个人比较喜欢Markdown的语法,常用来做一些笔记,下面就简单介绍一下它的语法。 概览 宗旨 Markdown 的目标是实现「易读易写」。 可读性,无论如何,都是最重要的。一份使用 Markdown 格式撰写的文件应该可以直接以纯文本发布,并且看起来不会像是由许多标签或是格式指令所构成。Markdown 语法受到一些既有 text-to-HTML 格式的影响,包括 Setext 、 atx 、 Textile 、 reStructuredText 、 Grutatext 和 EtText ,而最大灵感来源其实是纯文本电子邮件的格式。 兼容 HTML Markdown 语法的目标是:成为一种适用于网络的书写语言。 Markdown 不是想要取代 HTML,甚至也没有要和它相近,它的语法种类很少,只对应 HTML 标记的一小部分。Markdown 的构想不是要使得 HTML 文档更容易书写。在我看来, HTML 已经很容易写了。Markdown 的理念是,能让文档更容易读、写和随意改。HTML 是一种发布的格式,Markdown 是一种书写的格式。就这样,Markdown 的格式语法只涵盖纯文本可以涵盖的范围。 不在 Markdown 涵盖范围之内的标签,都可以直接在文档里面用 HTML 撰写。不需要额外标注这是 HTML 或是 Markdown;只要直接加标签就可以了。

Chrome columns bug when number of columns is less then column-count

匿名 (未验证) 提交于 2019-12-03 02:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm having an issue with Chrome when I use the column-count property. I have a div where inside it I will have some items so I set column-count: 3; When I have 3 items or more it works well, but when I have only two they are not shown in the same row but in the same column. This happens only on Chrome. code example: . userinfo - content . grid - view . author - profile - tabs { . column - count ( 3 ); . column - gap ( 30 ); . article { position : relative ; display : inline - block ; margin - bottom : 40px ; width : 100 %; line -

python: Interplay between lib/site-packages/site.py and lib/site.py

匿名 (未验证) 提交于 2019-12-03 01:57:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Due to a specific problem which I managed to solve, I spent most of today figuring out how site.py(s) work. There is a point which I don't understand. As far as I understand, when python is loaded, first lib/python2.7/site-packages/site.py is run. It goes over PYTHONPATH , searches for lib/python2.7/site.py , and imports it. This file has the addsitedir method, that not only adds a path to sys.path , but also processes *.pth files which exists on it. At this point, main() from lib/python2.7/site.py is ran, and addsitedir is ran on site

Unable to reference CSS properly in Site.Master with MVC2 in a Virtual Directory

匿名 (未验证) 提交于 2019-12-03 00:52:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Currently, I have a Site.Master page for my MVC app that renders great when run directly from VS2008. It looks like this: <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="../../Content/css/layout1_setup.css" /> <link rel="stylesheet" type="text/css"

【NOIP2012】开车旅行

匿名 (未验证) 提交于 2019-12-02 23:56:01
题面 https://www.luogu.org/problem/P1081 题解 // luogu-judger-enable-o2 #include<iostream> #include<cstdio> #include<set> #include<algorithm> #include<vector> #include<cstdlib> #include<cassert> using namespace std; const long long INF=100000000000LL; struct city{ int num; long long h; bool operator < (const city rhs) const { return h<rhs.h; } }; set<city> s; vector <int> son[205000]; int fa[205000],f[205000][20],n,m,p; long long h[105000],sum1[205000],sum2[205000],sum0[205000],x0; bool vis[205000]; double val; long long abq(long long x){ if (x>=0) return x; else return -x; } bool smaller(int x

Markdown使用笔记

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-01 00:03:45
标题 h1. Markdown heading h2. Markdown heading h3. Markdown heading h4. Markdown heading h5. Markdown heading h6. Markdown heading # h1. Markdown heading ## h2. Markdown heading ### h3. Markdown heading #### h4. Markdown heading ##### h5. Markdown heading ###### h6. Markdown heading 内联文本 This line of text is meant to be treated as deleted text. This line of text will render as underlined This line rendered as italicized text. This line rendered as bold text. ~~This line of text is meant to be treated as deleted text.~~ <u>This line of text will render as underlined</u> *This line rendered as

页面布局-浮动、定位

末鹿安然 提交于 2019-11-29 16:59:39
id选择器里面只能有一个值,class可以有多个值。 回顾 什么是盒子模型 元素(盒子) 实际大小(内容、边框、内边距) 块状元素 内联元素 display 属性: none / inline / block / inine-block 标准文档流 盒子和盒子位置 margin塌陷 相关属性 display / overflow:auto/hidden/scroll overflow-x overflow-y margin visibility:visible/hidden 1 浮动 1.1 浮动 元素可以设置向左 或者 向右浮动 (不会跳出父元素的宽) 元素浮动后,会脱离文档流。 (对后面的元素产生影响) 元素一旦浮动,会转换为块状元素 浮动的元素并不独占一行(仍然是块状元素) 因为脱离标准文档流 浮动的元素,宽度默认会是auto,被内容撑开 多个元素浮动,会排成一行,宽度超过父元素宽度,会自动换行 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>同志浮动</title> 6 <style> 7 .box { 8 padding: 20px; 9 width: 1000px; 10 border: 5px dashed red; 11 margin-bottom:

自制Markdown简明语法教程

﹥>﹥吖頭↗ 提交于 2019-11-29 03:49:35
Markdown是什么? 一种轻量级标记语言 不想也不会取代HTML 易读易写的网络书写语言 总结起来就是:Markdown是一种可以使用普通文本编辑器编写的标记语言,通过简单的标记语法使普通文本内容具有一定的格式。 谁发明了这个东西? 它由 Aaron Swartz 和 John Gruber 共同设计, Aaron Swartz 就是那位于前几年( 2013年1月11日 )自杀,有着 开挂 一般人生经历的程序员。维基百科对他的 介绍 是: 软件工程师、作家、政治组织者、互联网活动家、维基百科人 。 他有着本可以靠脸吃饭却足以让你跪拜的人生经历: + 14岁 参与RSS 1.0规格标准的制订。 + 2004 年入读 斯坦福大学 ,一年后退学。 + 2005 年创建 Infogami ,之后与 Reddit 合并成为其合伙人。 + 2010 年创立求进会(Demand Progress),积极参与禁止网络盗版法案(SOPA)活动,最终该提案 居然 被撤回。 + 2011 年7月19日,因被控从MIT和JSTOR下载480万篇学术论文并以免费形式上传于网络被捕。 + 2013 年1月自杀身亡(天妒英才)。 怎么使用Markdown? 一点点说明 由于这是入门级的简要教程,所以涉及到如有两种或多种方法可以达到同样效果的情况,本文只分享一种。 详细的语法说明: Markdown

珂朵莉树小结

戏子无情 提交于 2019-11-29 02:36:53
珂朵莉是世界上最幸福的女孩,不接受任何反驳 学习珂学?请左转 此处 1、珂朵莉树简介 珂朵莉树是由某毒瘤在2017年的一场CF比赛中提出的数据结构,原名老司机树(Old Driver Tree,ODT)。由于第一个以珂朵莉树为正解的题目的背景以《末日时在做什么?有没有空?可以来拯救吗?》中的角色——珂朵莉为主角,所以这个数据结构又被称为珂朵莉树(Chtholly Tree)她主要处理区间修改、查询问题,在数据随机的前提下有着优秀的复杂度。 说到区间维护, 我就想起明年年初 我们都会想到线段树、树状数组、splay、分块、莫队等数据结构,这些数据结构貌似是无所不能的 (毕竟一个不行用两个) ,无论区间加减乘除、平方开方都能搞定。但如果我们有这么一题:(CF中的起源题) 【CF896C】 Willem, Chtholly and Seniorious 题意:写个数据结构维护长度为 \(n\) 的序列( \(n≤10^5\) ),实现区间赋值、区间加上一个值、求区间第k小、求区间每个数x次方之和模y的值的操作, 数据随机生成 。 我们发现本题的第4个操作涉及 每个数字 的相关操作,那么线段树、树状数组、分块甚至splay是肯定行不通的,莫队虽然可以维护4操作,但复杂度同样难以承受(要对每个入队出队的数取快速幂)。我们需要一个更为高效的数据结构来维护这些操作,她就是珂朵莉树。 2

【NOIP2012】开车旅行

给你一囗甜甜゛ 提交于 2019-11-28 20:56:28
题面 https://www.luogu.org/problem/P1081 题解 // luogu-judger-enable-o2 #include<iostream> #include<cstdio> #include<set> #include<algorithm> #include<vector> #include<cstdlib> #include<cassert> using namespace std; const long long INF=100000000000LL; struct city{ int num; long long h; bool operator < (const city rhs) const { return h<rhs.h; } }; set<city> s; vector <int> son[205000]; int fa[205000],f[205000][20],n,m,p; long long h[105000],sum1[205000],sum2[205000],sum0[205000],x0; bool vis[205000]; double val; long long abq(long long x){ if (x>=0) return x; else return -x; } bool smaller(int x