跟风,风中漫步

风很大,顺风一段再逆风狂奔吧!

  • 学习历程
  • Issue收集
  • 我的项目
  • 随笔
  • 默认分类
  • Nearby安装许可使用协议

学习历程

学习的过程中,各种知识的收集与记录

CSS 视觉可视化模型

2017 年 3 月 25 日2017 年 8 月 17 日 TechDong Leave a comment Web前端, 学习历程

https://www.w3.org/html/ig/zh/wiki/CSS2/visuren 视口 View […]

Continue reading


first notes about weex

2017 年 1 月 5 日2017 年 1 月 5 日 TechDong Leave a comment Web前端, 学习历程

this.$openURL :forward to page this.$vm(id) : If child […]

Continue reading


Entity framework practices & issues

2016 年 11 月 7 日2016 年 11 月 8 日 TechDong Leave a comment .Net, Issue收集, 学习历程

dbcontext.Entry performance issue:very slow The DbConte […]

Continue reading


SNAT、DNAT — Static NAT、Dynamic NAT and Source NAT、Destination NAT

2016 年 10 月 29 日 TechDong Leave a comment 学习历程

Static NAT、Dynamic NAT and PAT 内部主机到外部主机的地址转换。Static和Dy […]

Continue reading


SED 命令小结

2016 年 10 月 27 日 TechDong Leave a comment 学习历程

sed maintains two data buffers: the active pattern spac […]

Continue reading


sql server physical operations

2016 年 9 月 21 日2016 年 9 月 23 日 TechDong Leave a comment 学习历程

the Physical Operation and Logical Operation. The logic […]

Continue reading


SQL Server: Data File Structure 数据文件结构

2016 年 9 月 20 日2016 年 9 月 20 日 TechDong Leave a comment 学习历程

In our earlier posts , we have discussed about various […]

Continue reading


CPU特权级别(R0 R3) 内核态与用户态总结

2016 年 9 月 13 日2016 年 9 月 23 日 TechDong Leave a comment 学习历程, 默认分类

说到内核态与用户态,一直都不是很清晰。到底是操作系统控制,CPU控制还是他两兄弟协同控制? x86 的 pro […]

Continue reading


IPSec transport vs tunnel,and nat-t

2016 年 9 月 13 日2016 年 9 月 23 日 TechDong Leave a comment 学习历程

IPSEC 场景拓扑 Gateway: The gateway is usually your firewal […]

Continue reading


记录一段linux 数据包的处理流程(eg. ip packet)

2016 年 9 月 12 日2016 年 9 月 12 日 TechDong Leave a comment 学习历程

中断、软中断和接收数据流程 Assume that the CPU 0 is executing an app […]

Continue reading


ISAKMP IKE SA 总结

2016 年 9 月 11 日 TechDong Leave a comment 学习历程

SA 安全关联(英语:Security association,缩写为SA),又译为安全性关联、安全群组、安全 […]

Continue reading


Linxu上搭建vpn服务(l2tp协议)(ipsec xl2tpd)

2016 年 9 月 8 日2016 年 9 月 12 日 TechDong Leave a comment 学习历程

需要的组件 openswan(新版本叫Libreswan) ipsec协议实现,包括pluto(key管理组件 […]

Continue reading


Mysql Regular Expressions 正则表达式

2016 年 8 月 28 日2016 年 8 月 28 日 TechDong Leave a comment MySql Study, 学习历程

Regular Expressions Table 12.9 String Regular Expressio […]

Continue reading


sql server 增加登陆与用户并授权的储存过程

2016 年 8 月 5 日2016 年 10 月 28 日 TechDong Leave a comment 数据库, 随笔

修改验证模式是通过注册表完成的。 键名:HKLM\Software\Microsoft{MSSQLS […]

Continue reading


用例图(Use Case diagram)

2016 年 7 月 30 日2016 年 8 月 9 日 TechDong Leave a comment 学习历程, 建模

用例是一个较新的,比较敏捷的捕获软件需求的形式。 用例描述了在一个场景中,系统是如何和最终用户或外部系统交互的 […]

Continue reading


C# 装箱(boxing)与拆箱(unboxing) ToString VS boxing

2016 年 7 月 6 日2016 年 7 月 6 日 TechDong Leave a comment .Net, 学习历程

In the .NET framework, there are two species of types–v […]

Continue reading


when update a=b,b=a in sql

2016 年 7 月 5 日 TechDong Leave a comment 学习历程, 数据库

在程序语句中,如果想修改两个字段的值,其中一个字段的值根据另一个字段的值计算所得。 那么可以这样 obj.a […]

Continue reading


css 垂直居中

2016 年 7 月 1 日2016 年 7 月 25 日 TechDong Leave a comment Web前端, 学习历程

有这么几个说明 MDN: For absolutely positioned elements, the to […]

Continue reading


mutex内核对象

2016 年 6 月 17 日 TechDong Leave a comment .Net, 学习历程

Mutex: On a server that is running Terminal Services, a […]

Continue reading


.net com注册后 IE中创建automation自动化对象失败:新版IE 64位与32位

2016 年 5 月 24 日2016 年 5 月 24 日 TechDong Leave a comment .Net, .Net, Issue收集, 学习历程, 编程知识

前言:为了方便其它语文调用,使用.net注册了一个com组件。测试时,使用VB测试成功,但是在IE中一直失败。 […]

Continue reading


ELF格式文件符号表分析

2016 年 4 月 12 日 TechDong Leave a comment C++ 学习, 学习历程

ELF格式文件符号表分析 1、ELF格式文件的结构和内容 a)现在PC平台流行的可执行文件格式(Executa […]

Continue reading


关于 .net expression tree

2016 年 3 月 23 日 TechDong Leave a comment .Net, 学习历程

Only expression trees that represent lambda expressions […]

Continue reading


.net 实用环境事务Transaction.Current随笔

2016 年 3 月 20 日2016 年 3 月 20 日 TechDong Leave a comment .Net, 学习历程

环境事务使用静态属性Transaction.Current与线程关联,仅作用于线程上,它是可设置的。Commi […]

Continue reading


.net gc 垃圾回收机制

2016 年 3 月 15 日 TechDong Leave a comment .Net, 学习历程

源于Clr Via C# 在什么时候回收 CLR 在检测第 0 代超过预算时触发一次 GC。这是 GC 最常见 […]

Continue reading


What is the difference between marginal benefit and marginal revenue?

2016 年 3 月 6 日 TechDong Leave a comment 学习历程, 经济

Marginal benefit measures the consumer’s benefit […]

Continue reading


opportunity cost(机会成本)、PPF(生产可能性曲线)

2016 年 3 月 6 日2016 年 3 月 6 日 TechDong Leave a comment 学习历程, 经济

机会成本(Opportunity Cost, OC)是指决策过程中面临多项选择时,当中被放弃而价值最高的选择( […]

Continue reading


什么是经济学?自我一下

2016 年 3 月 5 日2016 年 3 月 5 日 TechDong Leave a comment 学习历程, 经济

什么是经济学? 答:关于经济的学问。   那什么是经济? 以前肤浅的认为,经济就是钱。 今天终于知道 […]

Continue reading


t4 模板总结

2016 年 1 月 25 日2016 年 1 月 25 日 TechDong Leave a comment .Net, 学习历程

模板包含如下几种block 指令<#@ DirectiveName [AttributeName = & […]

Continue reading


lexical variable 词法变量

2016 年 1 月 22 日2016 年 1 月 31 日 TechDong Leave a comment 学习历程, 编程知识

LISP定义 A lexical variable is a variable that can be ref […]

Continue reading


AOP通俗深入浅出 到位

2016 年 1 月 22 日2016 年 1 月 22 日 TechDong Leave a comment 学习历程

1、问题 问题:想要添加日志记录、性能监控、安全监测   2、最初解决方案 2.1、最初解决方案 缺 […]

Continue reading


设计模式的原则:六大设计原则

2016 年 1 月 21 日2017 年 11 月 6 日 TechDong Leave a comment 学习历程, 编程知识

依赖倒置原则:面向抽象(可简单对应为接口)编程 接口隔离原则:接口要精简单一。接口不应该包含非必须的方法,因为 […]

Continue reading


[转]索引 Include列

2016 年 1 月 20 日2016 年 9 月 20 日 TechDong Leave a comment 学习历程, 数据库

开文之前首先要讲讲几个概念 【覆盖查询】 当索引包含查询引用的所有列时,它通常称为“覆盖查询”。 【索引覆盖】 […]

Continue reading


js prototype constructor 简单直白的理解

2016 年 1 月 14 日2016 年 1 月 21 日 TechDong Leave a comment Web前端, 学习历程, 默认分类

一张图说明prototype与constructor 优先强调,constructor只是一个属性,并不是“构 […]

Continue reading


Python 异常处理 异常捕获与抛出

2015 年 12 月 27 日2015 年 12 月 27 日 TechDong Leave a comment Python, 学习历程

传统的一句代码一个if else的方法繁锁,不易理解,不灵活,所以有了“结构化的异常处理SEH”。现代语言都提 […]

Continue reading


python 3 笔记2 类的总结

2015 年 12 月 24 日2016 年 2 月 4 日 TechDong Leave a comment Python, 学习历程

类 不要new一个实例了,直接 foo=Person(),这样的好处是可以让某些特定的类用起来像函数一样,比如 […]

Continue reading


.net 中的可变性(variance):协变(covariant)与逆变(contravariant)

2015 年 12 月 23 日2016 年 3 月 14 日 TechDong Leave a comment .Net, 学习历程

协变和逆变 实际上这个词来源于类型和类型之间的绑定。我们从数组开始理解。数组其实就是一种和具体类型之间发生绑定 […]

Continue reading


Python 3 笔记

2015 年 12 月 22 日2016 年 9 月 4 日 TechDong Leave a comment Python, 学习历程

本文以3.4版本实践。 基本知识 “//” 整除运算符。1//2 输出 0,1/2输出 […]

Continue reading


php pear 的安装与使用

2015 年 12 月 19 日2015 年 12 月 19 日 TechDong Leave a comment Php, 学习历程

本次使用的pear版本是1.10 pear安装器下载地址:http://pear.php.net/go-pea […]

Continue reading


功能(Function)与特性(Feature)的差异

2015 年 12 月 2 日2015 年 12 月 2 日 TechDong Leave a comment 学习历程, 建模

http://blog.csdn.net/highroad/article/details/8651273#c […]

Continue reading


UML状态图 个人总结

2015 年 12 月 1 日2016 年 7 月 30 日 TechDong Leave a comment 学习历程, 建模

状态图(Statechart Diagram)主要用于描述一个对象在其生存期间的动态行为,表现为一个对象所经历 […]

Continue reading


python3 pyQt5 启蒙入门 第1课 安装与运行

2015 年 11 月 15 日2015 年 11 月 15 日 TechDong 1 Comment Python, 学习历程

安装 python 3.x qt5:pt有GPL版本的 pyQt + SIP :python与qt5本来是两个 […]

Continue reading


sql server 触发器 回滚 异常

2015 年 11 月 10 日 TechDong Leave a comment 学习历程, 数据库

sql server 触发器中,rollback tran 或出现异常时(sql 2012测试): 在trig […]

Continue reading


ios swift 调用 oc 编写的组件

2015 年 11 月 8 日2015 年 11 月 8 日 TechDong Leave a comment IOS, 学习历程

将引用的所有.m文件将加到工程的Compile Sources中(直接拖文件夹到xcode中,选择『组+需要时 […]

Continue reading


css border-radius知多少 小结

2015 年 11 月 5 日2015 年 11 月 5 日 TechDong Leave a comment Web前端, 学习历程, 默认分类

首先需要明确一点:border-radius是作用在width+padding+border的框上的。 bor […]

Continue reading


swift IOS 圆圈向周围扩散效果 动画简单入门体验

2015 年 11 月 2 日2015 年 11 月 2 日 TechDong Leave a comment IOS, 学习历程

IOS有个CALayer的概念,类似于 PS中的层:图像由一个或多个层组成 window GDI中的graph […]

Continue reading


mysql 主从服务器快速简单配置

2015 年 4 月 21 日2016 年 10 月 30 日 TechDong Leave a comment MySql Study, 学习历程

修改配置文件开启服务器二进制日志(实际就是开启集群功能了),配置服务器id log-bin=mysql_bin […]

Continue reading


c++ 中为何在使用基类的引用或指引才能触发“动态绑定”

2015 年 3 月 30 日2015 年 3 月 30 日 TechDong Leave a comment C++ 学习, 学习历程

Dog dog; dog.call(); Animal &animal = dog; animal.c […]

Continue reading


mysql 常用命令集

2013 年 9 月 21 日2015 年 12 月 12 日 TechDong Leave a comment MySql Study

修改密码:mysqladmin -u root -p password <newpwd> 其中:- […]

Continue reading


正则表达式“断言”的执行

2013 年 9 月 12 日2015 年 10 月 28 日 TechDong Leave a comment 编程知识

那我们再从这个角度出发,看看它对字符串   1 http://dingxiaodong86.blog […]

Continue reading


我的timer不执行了,好象被回收了

2013 年 9 月 10 日2017 年 3 月 7 日 TechDong Leave a comment .Net

代码时需要一个timer,这个Timer不需要被引用,所以就定义成了局部变量(或者直接不赋值给任何变量)。但总 […]

Continue reading


Posts navigation

Older posts
Search for:

歇脚的时候

2021年二月
一 二 三 四 五 六 日
« 4月    
1234567
891011121314
15161718192021
22232425262728

近期文章

  • hackintosh dsdt
  • CSS 视觉可视化模型
  • first notes about weex
  • Entity framework practices & issues
  • SNAT、DNAT — Static NAT、Dynamic NAT and Source NAT、Destination NAT

标签

AOP code CPU CSS data DBMS Entity framework IPSec jetbrains L2TP Linux mysql Network Orm Principle python RDP sql Sql Server t4 TCP/IP uml Usage VPN Web 内核 前端 协议 建模 操作系统 敏捷 文本处理 盒模型 破解 索引 索引优化 触发器 计算机科学 设计原则 设计模式 需求

近期评论

  • 达发表在《hackintosh dsdt》
  • dance发表在《asp.net WebApi 一个奇怪的问题》
  • 三五营销发表在《asp.net WebApi 一个奇怪的问题》
  • 任务网发表在《asp.net WebApi 一个奇怪的问题》
  • TD发表在《python3 pyQt5 启蒙入门 第1课 安装与运行》

备案

滇ICP备14003792号

标签

AOP code CPU CSS data DBMS Entity framework IPSec jetbrains L2TP Linux mysql Network Orm Principle python RDP sql Sql Server t4 TCP/IP uml Usage VPN Web 内核 前端 协议 建模 操作系统 敏捷 文本处理 盒模型 破解 索引 索引优化 触发器 计算机科学 设计原则 设计模式 需求
  • 关于
  • Q群:289147891
  • Nearby安装许可使用协议
dazzling Theme by Colorlib Powered by WordPress