{{ post.title }}
8 | 9 |{{ post.excerpt }} Read More
10 |├── CNAME ├── .gitignore ├── .DS_Store ├── favicon.ico ├── images ├── UI.PNG ├── logo.PNG ├── logo.jpg ├── logo.jpeg ├── appDefaults.PNG ├── jsoneditor.PNG ├── jsonhandle.PNG ├── AppPoolAdvSetting.PNG └── conditional-lib-ref.PNG ├── assets ├── .DS_Store ├── css │ ├── .DS_Store │ ├── site.css │ ├── highlight.css │ └── bootstrap-theme.min.css ├── images │ └── logo.PNG ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── site.js │ ├── bootstrap.min.js │ └── jquery-2.1.4.min.js ├── README.md ├── contact.html ├── _config.yml ├── about.html ├── LICENSE ├── index.html ├── _posts ├── 2016-10-10-how-to-set-IIS-hosting-environment-in-ASP.NET-Core.md ├── 2016-7-6-Set-derived-class-properties-from-base-class.md ├── 2015-10-4-This-site-based-on-Jekyll-and-github-pages.md ├── 2015-10-15-conditional-library-reference-in-visual-studio.md ├── 2015-10-6-docker-redis-master-slave.md ├── 2015-10-17-host-services-in-IIS-rather-than-windows-services.md └── 2016-10-10-Love-net-help.md ├── _layouts └── default.html └── stylesheets ├── github-light.css ├── stylesheet.css └── normalize.css /CNAME: -------------------------------------------------------------------------------- 1 | coding.xyting.org 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/.DS_Store -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/favicon.ico -------------------------------------------------------------------------------- /images/UI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/UI.PNG -------------------------------------------------------------------------------- /images/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/logo.PNG -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/logo.jpg -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/.DS_Store -------------------------------------------------------------------------------- /images/logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/logo.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Arch team's official site 2 | 3 | This repo contains **Arch team official site**. 4 | -------------------------------------------------------------------------------- /assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/css/.DS_Store -------------------------------------------------------------------------------- /assets/images/logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/images/logo.PNG -------------------------------------------------------------------------------- /images/appDefaults.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/appDefaults.PNG -------------------------------------------------------------------------------- /images/jsoneditor.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/jsoneditor.PNG -------------------------------------------------------------------------------- /images/jsonhandle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/jsonhandle.PNG -------------------------------------------------------------------------------- /images/AppPoolAdvSetting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/AppPoolAdvSetting.PNG -------------------------------------------------------------------------------- /images/conditional-lib-ref.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/images/conditional-lib-ref.PNG -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arch/arch.github.io/master/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/js/site.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function () { 2 | $('li').click(function () { 3 | $(this).siblings().removeClass('active'); 4 | $(this).addClass('active'); 5 | }); 6 | }); -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
We are programmers, lives in Hangzhou, Zhejiang, China. The difference with other programmers is we are .NET lover and developer, 7 | but we also embrace all the new stuff. (^<>^)
8 | 9 |
12 | A man like we, are unique in the world of existence, no matter where you go, there belonging to our stage. Like desert 15 | gold, light can not hide forever! Especially our messy hair, melancholy eyes, sigh of stubble, handsome face, are deeply 16 | addicted whom even we.
17 |{{ post.excerpt }} Read More
10 |We are programmers, lives in Hangzhou, Zhejiang, China. The difference with other programmers is We are software architects (or want to be), particularly love . NET Core, but we also embrace all the new stuff. (^<>^)
52 |A man like we, are unique in the world of existence, no matter where you go, there belonging to our stage. Like 53 | desert gold, light can not hide forever! Especially our messy hair, melancholy eyes, sigh of stubble, handsome 54 | face, are deeply addicted whom even we.
55 |