Skip to content

Instantly share code, notes, and snippets.

#什么是“拼图”

###关于维基 将多次学习、讨论的知识碎片进行记录(保存)和整理(修正),组成成阶段性/最终的完整知识系统(最终文档及历史)。 一个知识系统的建立,基本上完成了完整的“集体(单体多次)思维活动”。

###关于微博 根微博通过转发(继承)、演绎(生长),完成对某一观点(知识)的修正(增删改)。用户的视角限于一条不完整的直线。同wiki相比,轻结果而重传播

###微博可视化

缘起知乎上为什么多 TCP 连接分块下载比单连接下载快?

大部分路由器为tcp分配带宽的策略: 每接受一个ack就将tcp的发送窗口增倍,收到一个丢包则减半(通常情况下)

丢包:

  • ack丢失,即sender timeout
  • sender收到三次重复的ack

##组成 ###基本文件:

  • style.css
  • index.php

###完整文件:

  • style.css
  • index.php
  • home.php

gist test hello wode

java hash map源码分析之 v put(k,v)

通过put方法了解hashmap的结构

###1. hashmap的主要成员变量table

transient Entry<K,V>[] table = (Entry<K,V>[]) EMPTY_TABLE;

简单的说:table是Entry链表的数组。如图: hashmap.table

@pk13610
pk13610 / firewall.sh
Created December 10, 2013 06:39 — forked from x1a0/firewall.sh
#! /bin/bash
# Set the default policies to allow everything while we set up new rules.
# Prevents cutting yourself off when running from remote SSH.
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
# Flush any existing rules, leaving just the defaults
iptables -F