-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 13.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html><html lang="zh-CN"><head><meta name="generator" content="Hexo 3.9.0"><meta http-equiv="content-type" content="text/html; charset=utf-8"><meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport"><meta content="yes" name="apple-mobile-web-app-capable"><meta content="black-translucent" name="apple-mobile-web-app-status-bar-style"><meta content="telephone=no" name="format-detection"><meta name="description" content="一个都不能少"><title>把问题都记下来</title><link rel="stylesheet" type="text/css" href="/css/style.css?v=0.0.0"><link rel="stylesheet" type="text/css" href="//lib.baomitu.com/normalize/8.0.1/normalize.min.css"><link rel="stylesheet" type="text/css" href="//lib.baomitu.com/pure/1.0.0/pure-min.css"><link rel="stylesheet" type="text/css" href="//lib.baomitu.com/pure/1.0.0/grids-responsive-min.css"><link rel="stylesheet" href="//lib.baomitu.com/font-awesome/4.7.0/css/font-awesome.min.css"><script type="text/javascript" src="//lib.baomitu.com/jquery/3.4.0/jquery.min.js"></script><link rel="icon" mask sizes="any" href="/favicon.ico"><link rel="Shortcut Icon" type="image/x-icon" href="/favicon.ico"><link rel="apple-touch-icon" href="/apple-touch-icon.png"><link rel="apple-touch-icon-precomposed" href="/apple-touch-icon.png"></head><body><div class="body_container"><div id="header"><div class="site-name"><h1 class="hidden">把问题都记下来</h1><a id="logo" href="/.">把问题都记下来</a><p class="description"></p></div><div id="nav-menu"><a class="current" href="/."><i class="fa fa-home"> 首页</i></a><a href="/archives/"><i class="fa fa-archive"> 归档</i></a><a href="/about/"><i class="fa fa-user"> 关于</i></a></div></div><div class="pure-g" id="layout"><div class="pure-u-1 pure-u-md-3-4"><div class="content_container"><div class="post"><h1 class="post-title"><a href="/2020/02/25/mono源代码学习(二)pe文件结构/">mono源代码学习(二) pe文件结构</a></h1><div class="post-meta">2020-02-25</div><div class="post-content"><p>处理数据是一切程序的本质,所以先从数据结构学起。<br>
数据有两大类,一类是存放磁盘上的静态数据——文件,另一类是加载到内存中的动态数据。<br>
.net程序以<code>assembly</code>为存储单位,以<code>domain</code>和<code>module</code>为运行单元。<br></p></div><p class="readmore"><a href="/2020/02/25/mono源代码学习(二)pe文件结构/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/21/SkiaImageSource在图片尺寸上也犯了和Xamarin-iOS一样的问题/">SkiaImageSource在图片尺寸上也犯了和Xamarin.iOS一样的问题</a></h1><div class="post-meta">2020-02-21</div><div class="post-content"><h3 id="起因">起因</h3>
<p>做了个播放器控制界面,发现进度滑动条<code>Slider</code>这个控件,如果全用默认不加修饰,那个滑块在iOS上会特别大。</p>
<img src="/2020/02/21/SkiaImageSource在图片尺寸上也犯了和Xamarin-iOS一样的问题/bug.jpg"></div><p class="readmore"><a href="/2020/02/21/SkiaImageSource在图片尺寸上也犯了和Xamarin-iOS一样的问题/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/18/macos上PATH环境变量的来源/">macos上PATH环境变量的来源</a></h1><div class="post-meta">2020-02-18</div><div class="post-content"><p>自从安装了dotnet、mono后,就可以直接在终端上敲相应的命令。<br>
但是它们既不在常规路径里(如<code>/usr/local/bin/</code>之类),我也没有把它们添加到自定义的配置中,它们是怎么进入<code>PATH</code>环境变量的呢?</p></div><p class="readmore"><a href="/2020/02/18/macos上PATH环境变量的来源/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/18/mono源代码学习(一)/">mono源代码学习(一)</a></h1><div class="post-meta">2020-02-18</div><div class="post-content"><p>由于最近都在写c#,对其底层实现产生了很大兴趣,所以计划把源码拉下来学习一番。 首先备忘一下环境搭建:</p>
<h3 id="源代码">源代码</h3>
<p>仓库:<a href="https://github.com/mono/mono.git" target="_blank" rel="noopener">https://github.com/mono/mono.git</a><br></p></div><p class="readmore"><a href="/2020/02/18/mono源代码学习(一)/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/15/C-里可空类型-Nullable-T-的特殊处理/">C#里可空类型(Nullable<T>)的特殊性</a></h1><div class="post-meta">2020-02-15</div><div class="post-content"><p>😸</p>
</div><p class="readmore"><a href="/2020/02/15/C-里可空类型-Nullable-T-的特殊处理/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/11/mono和.net core在gc上的区别/">mono和.net core在gc上的区别</a></h1><div class="post-meta">2020-02-11</div><div class="post-content"><p>简单的测试代码:</p></div><p class="readmore"><a href="/2020/02/11/mono和.net core在gc上的区别/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/09/一个莫名其妙的yml-lint问题排查/">hexo换render加emoji兼排查一个莫名其妙的vscode-yml-lint问题</a></h1><div class="post-meta">2020-02-09</div><div class="post-content"><p>因为想使用emoji,搜索得知hexo可以支持,但是要换render并安装相应插件。</p>
<p>换render过程很简单</p>
<figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">yarn remove hexo-renderer-marked </span><br><span class="line">yarn add hexo-renderer-markdown-it</span><br></pre></td></tr></table></figure></div><p class="readmore"><a href="/2020/02/09/一个莫名其妙的yml-lint问题排查/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/08/gitment的两个问题备忘/">gitment的两个问题备忘</a></h1><div class="post-meta">2020-02-08</div><div class="post-content"><p>换了个主题,果然gitment又出问题了,还好上次折腾时做了记录。这次没费多少力气就搞定。<br>
再次整理如下:</p>
<ol>
<li>
<p>访问过期的https域名问题:<br></p></li></ol></div><p class="readmore"><a href="/2020/02/08/gitment的两个问题备忘/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2020/02/08/给xcode10-2装上iossdk13-2/">给xcode10.2装上iossdk13.2</a></h1><div class="post-meta">2020-02-08</div><div class="post-content"><p>用的黑苹果,又是N卡,系统卡在10.13.6上,能装的xcode最高版是10.2<br>
但是xamarin不断更新版本,对xcode的要求也越来越高<br>
最近的<code>xamarin.ios 13.10</code>居然要求xcode11.3了<br>
换机器是不可能换的,这辈子也不会换白苹果<br></p></div><p class="readmore"><a href="/2020/02/08/给xcode10-2装上iossdk13-2/">阅读全文</a></p><div style="height:30px"></div></div><div class="post"><h1 class="post-title"><a href="/2019/08/11/tmux内联使用方法/">tmux内联使用方法</a></h1><div class="post-meta">2019-08-11</div><div class="post-content"><p>tmux非常好用,但是跟vim一样,也是建立在配置纯熟的前提下。<br>
当然即使配好了,还是有很多痛点……<br>
比如内联使用就是其中一个。</p>
<img src="/2019/08/11/tmux内联使用方法/tmux.jpg" title="tmux">
<p>所谓内联,就是:</p></div><p class="readmore"><a href="/2019/08/11/tmux内联使用方法/">阅读全文</a></p><div style="height:30px"></div></div><nav class="page-navigator"><span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><a class="extend next" rel="next" href="/page/2/">下一页</a></nav></div></div><div class="pure-u-1-4 hidden_mid_and_down"><div id="sidebar"><div class="widget"><form class="search-form" action="//www.google.com/search" method="get" accept-charset="utf-8" target="_blank"><input type="text" name="q" maxlength="20" placeholder="Search"><input type="hidden" name="sitesearch" value="http://fatfatson.github.io"></form></div><div class="widget"><div class="widget-title"><i class="fa fa-folder-o"> 分类</i></div></div><div class="widget"><div class="widget-title"><i class="fa fa-star-o"> 标签</i></div><div class="tagcloud"><a href="/tags/docker/" style="font-size: 15px;">docker</a> <a href="/tags/docker-machine/" style="font-size: 15px;">docker machine</a> <a href="/tags/openssl/" style="font-size: 15px;">openssl</a> <a href="/tags/c/" style="font-size: 15px;">c#</a> <a href="/tags/SkiaSharp/" style="font-size: 15px;">SkiaSharp</a> <a href="/tags/xamarin/" style="font-size: 15px;">xamarin</a> <a href="/tags/blog/" style="font-size: 15px;">blog</a> <a href="/tags/hexo/" style="font-size: 15px;">hexo</a> <a href="/tags/gitment/" style="font-size: 15px;">gitment</a> <a href="/tags/exsi/" style="font-size: 15px;">exsi</a> <a href="/tags/vsphere/" style="font-size: 15px;">vsphere</a> <a href="/tags/coreos/" style="font-size: 15px;">coreos</a> <a href="/tags/macos/" style="font-size: 15px;">macos</a> <a href="/tags/PATH/" style="font-size: 15px;">PATH</a> <a href="/tags/minikube/" style="font-size: 15px;">minikube</a> <a href="/tags/k8s/" style="font-size: 15px;">k8s</a> <a href="/tags/maven/" style="font-size: 15px;">maven</a> <a href="/tags/grpc/" style="font-size: 15px;">grpc</a> <a href="/tags/kotlin/" style="font-size: 15px;">kotlin</a> <a href="/tags/mono/" style="font-size: 15px;">mono</a> <a href="/tags/gc/" style="font-size: 15px;">gc</a> <a href="/tags/pe/" style="font-size: 15px;">pe</a> <a href="/tags/mvc/" style="font-size: 15px;">mvc</a> <a href="/tags/mvp/" style="font-size: 15px;">mvp</a> <a href="/tags/mvvm/" style="font-size: 15px;">mvvm</a> <a href="/tags/ca/" style="font-size: 15px;">ca</a> <a href="/tags/cert/" style="font-size: 15px;">cert</a> <a href="/tags/sign/" style="font-size: 15px;">sign</a> <a href="/tags/tmux/" style="font-size: 15px;">tmux</a> <a href="/tags/shell/" style="font-size: 15px;">shell</a> <a href="/tags/wsl/" style="font-size: 15px;">wsl</a> <a href="/tags/win10/" style="font-size: 15px;">win10</a> <a href="/tags/yaml/" style="font-size: 15px;">yaml</a> <a href="/tags/nodejs/" style="font-size: 15px;">nodejs</a> <a href="/tags/samba/" style="font-size: 15px;">samba</a> <a href="/tags/xcode/" style="font-size: 15px;">xcode</a> <a href="/tags/hackintosh/" style="font-size: 15px;">hackintosh</a></div></div><div class="widget"><div class="widget-title"><i class="fa fa-file-o"> 最近文章</i></div><ul class="post-list"><li class="post-list-item"><a class="post-list-link" href="/2020/02/25/mono源代码学习(二)pe文件结构/">mono源代码学习(二) pe文件结构</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/21/SkiaImageSource在图片尺寸上也犯了和Xamarin-iOS一样的问题/">SkiaImageSource在图片尺寸上也犯了和Xamarin.iOS一样的问题</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/18/macos上PATH环境变量的来源/">macos上PATH环境变量的来源</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/18/mono源代码学习(一)/">mono源代码学习(一)</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/15/C-里可空类型-Nullable-T-的特殊处理/">C#里可空类型(Nullable<t>)的特殊性</t></a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/11/mono和.net core在gc上的区别/">mono和.net core在gc上的区别</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/09/一个莫名其妙的yml-lint问题排查/">hexo换render加emoji兼排查一个莫名其妙的vscode-yml-lint问题</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/08/gitment的两个问题备忘/">gitment的两个问题备忘</a></li><li class="post-list-item"><a class="post-list-link" href="/2020/02/08/给xcode10-2装上iossdk13-2/">给xcode10.2装上iossdk13.2</a></li><li class="post-list-item"><a class="post-list-link" href="/2019/08/11/tmux内联使用方法/">tmux内联使用方法</a></li></ul></div></div></div><div class="pure-u-1 pure-u-md-3-4"><div id="footer">Copyright © 2020 <a href="/." rel="nofollow">把问题都记下来.</a> Powered by<a rel="nofollow" target="_blank" href="https://hexo.io"> Hexo.</a><a rel="nofollow" target="_blank" href="https://github.com/tufu9441/maupassant-hexo"> Theme</a> by<a rel="nofollow" target="_blank" href="https://github.com/pagecho"> Cho.</a></div></div></div><a class="show" id="rocket" href="#top"></a><script type="text/javascript" src="/js/totop.js?v=0.0.0" async></script><script type="text/javascript" src="//lib.baomitu.com/fancybox/3.5.7/jquery.fancybox.min.js" async></script><script type="text/javascript" src="/js/fancybox.js?v=0.0.0" async></script><link rel="stylesheet" type="text/css" href="//lib.baomitu.com/fancybox/3.5.7/jquery.fancybox.min.css"><script type="text/javascript" src="/js/codeblock-resizer.js?v=0.0.0"></script><script type="text/javascript" src="/js/smartresize.js?v=0.0.0"></script><script src="/js/hexo_resize_image.js?v=0.0.0"></script></div></body></html>