This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: nil | |
| --- | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <feed xmlns="http://www.w3.org/2005/Atom"> | |
| <title>{{ site.sitename }} | {{ site.tagline }}</title> | |
| <link href="{{ site.url }}atom.xml" rel="self"/> | |
| <link href="{{ site.url }}"/> | |
| <updated>{{ site.time | date_to_xmlschema }}</updated> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: nil | |
| --- | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <urlset | |
| xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 | |
| http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> | |
| {% for post in site.posts %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int * foo() | |
| { | |
| int a = 5; | |
| return &a; | |
| } | |
| using std::cout; | |
| int main() | |
| { | |
| int* p = foo(); | |
| cout << *p; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.CodeDom.Compiler.ICodeGenerator gen = new CSharpCodeProvider().CreateGenerator(); | |
| gen.GenerateCodeFromNamespace(ns, sw, new System.CodeDom.Compiler.CodeGeneratorOptions()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.CodeDom.Compiler.CodeDomProvider provider = System.CodeDom.Compiler.CodeDomProvider.CreateProvider("CSharp"); | |
| provider.GenerateCodeFromNamespace(ns, sw, new System.CodeDom.Compiler.CodeGeneratorOptions()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| msiexec /i vs_setup.msi vsextui=1 addlocal=all reboot=reallysuppress |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if page.post-link %} | |
| <h2><a href="{{ page.post-link }}">{{ page.title }}</a></h2> | |
| {% else %} | |
| <h2> {{ page.title }} </h2> | |
| {% endif %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: post | |
| title: Posting link post in Jekyll | |
| date: 2012-01-06 13:28 | |
| post-link: http://yourpostlink.com | |
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults write com.panic.Transmit CopyURLWithoutLogin 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% if page.link %} | |
| <h1><a href="{{ page.link }}">{{ page.title }}</a></h1> | |
| {% else %} | |
| <h1><a href="{{ page.url }}">{{ page.title }}</a></h1> | |
| {% endif %} |
OlderNewer