PageRenderTime 125ms CodeModel.GetById 30ms RepoModel.GetById 6ms app.codeStats 0ms

/output/author/d4n110.html

https://gitlab.com/d4n1/d4n1
HTML | 199 lines | 180 code | 15 blank | 4 comment | 0 complexity | 8ba42f21131ce051a4ce58147593deaf MD5 | raw file
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <!-- ## for client-side less
  5. <link rel="stylesheet/less" type="text/css" href="http://www.d4n1.org/theme/css/style.less">
  6. <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.7.3/less.min.js" type="text/javascript"></script>
  7. -->
  8. <link rel="stylesheet" type="text/css" href="http://www.d4n1.org/theme/css/style.css">
  9. <link rel="stylesheet" type="text/css" href="http://www.d4n1.org/theme/css/pygments.css">
  10. <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=PT+Sans|PT+Serif|PT+Mono">
  11. <link rel="shortcut icon" href="http://www.d4n1.org/theme/images/favicon.ico">
  12. <meta charset="utf-8" />
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <meta name="author" content="d4n1">
  15. <meta name="description" content="Posts and writings by d4n1">
  16. <title>
  17. d4n1
  18. &ndash; Posts by: d4n1 </title>
  19. </head>
  20. <body>
  21. <aside>
  22. <div id="user_meta">
  23. <a href="http://www.d4n1.org">
  24. <img src="http://www.d4n1.org/theme/images/avatar.png" alt="logo">
  25. </a>
  26. <h2><a href="http://www.d4n1.org">d4n1</a></h2>
  27. <p>Programming Coffee</p>
  28. <ul>
  29. <li><a href="http://www.d4n1.org/pages/about.html">About</a></li>
  30. <li><a href="http://www.d4n1.org/pages/contact.html">Contact</a></li>
  31. <li><a href="http://www.d4n1.org/pages/project.html">Project</a></li>
  32. <li><a href="http://www.d4n1.org/pages/social.html">Social</a></li>
  33. </ul>
  34. </div>
  35. </aside>
  36. <main>
  37. <header>
  38. <p>
  39. <a href="http://www.d4n1.org">Index</a> &brvbar; <a href="http://www.d4n1.org/archives.html">Archives</a>
  40. &gt; Author: d4n1
  41. </p>
  42. </header>
  43. <article>
  44. <div class="article_title">
  45. <h1><a href="http://www.d4n1.org/haskell.html">Haskell</a></h1>
  46. </div>
  47. <div class="article_text">
  48. <p>Haskell is a standardized, general-purpose purely functional
  49. programming language, with non-strict semantics and strong static
  50. typing. It is named after logician Haskell Curry. The latest standard
  51. of Haskell is Haskell 2010. As of May 2016, a group is working on the
  52. next version, Haskell 2020.</p>
  53. <h4>ghc</h4>
  54. <div class="highlight"><pre><span></span><code>main = putStrLn \&quot;Hello World </code></pre></div>
  55. </div>
  56. </article>
  57. <hr />
  58. <article>
  59. <div class="article_title">
  60. <h1><a href="http://www.d4n1.org/lua.html">Lua</a></h1>
  61. </div>
  62. <div class="article_text">
  63. <p>Lua was originally designed in 1993 as a language for extending
  64. software applications to meet the increasing demand for customization
  65. at the time. It provided the basic facilities of most procedural
  66. programming languages, but more complicated or domain-specific
  67. features were not included; rather, it included mechanisms for
  68. extending the language </p>
  69. </div>
  70. </article>
  71. <hr />
  72. <article>
  73. <div class="article_title">
  74. <h1><a href="http://www.d4n1.org/ruby.html">Ruby</a></h1>
  75. </div>
  76. <div class="article_text">
  77. <p>Ruby is a dynamic, reflective, object-oriented, general-purpose
  78. programming language. It was designed and developed in the mid-1990s
  79. by Yukihiro \"Matz\" Matsumoto in Japan. According to its creator,
  80. Ruby was influenced by Perl, Smalltalk, Eiffel, Ada, and Lisp. It
  81. supports multiple programming paradigms, including functional,
  82. object-oriented, and imperative. It also has </p>
  83. </div>
  84. </article>
  85. <hr />
  86. <article>
  87. <div class="article_title">
  88. <h1><a href="http://www.d4n1.org/python.html">Python</a></h1>
  89. </div>
  90. <div class="article_text">
  91. <p>Python is a widely used high-level, general-purpose,
  92. interpreted, dynamic programming language. Its design philosophy
  93. emphasizes code readability, and its syntax allows programmers to
  94. express concepts in fewer lines of code than possible in languages
  95. such as C++ or Java. The language provides constructs intended to
  96. enable writing clear programs on </p>
  97. </div>
  98. </article>
  99. <hr />
  100. <article>
  101. <div class="article_title">
  102. <h1><a href="http://www.d4n1.org/cpp.html">CPP</a></h1>
  103. </div>
  104. <div class="article_text">
  105. <p>C++ is a general-purpose programming language. It has
  106. imperative, object-oriented and generic programming features, while
  107. also providing facilities for low-level memory manipulation.</p>
  108. <h4>example.cpp</h4>
  109. <div class="highlight"><pre><span></span><code><span class="cp">#include</span><span class="cpf">&lt;iostream&gt;</span><span class="cp"></span>
  110. <span class="n">using</span><span class="w"> </span><span class="n">namespace</span><span class="w"> </span><span class="nn">std</span><span class="p">;</span><span class="w"></span>
  111. <span class="kr">int</span><span class="w"> </span><span class="nf">main</span><span class="p">()</span><span class="w"></span>
  112. <span class="p">{</span><span class="w"></span>
  113. <span class="w"> </span><span class="n">cout</span><span class="w"> </span><span class="o">&lt;&lt;</span><span class="w"> </span><span class="s">&quot;Hello World&quot;</span><span class="w"> </span><span class="o">&lt;&lt;</span><span class="w"> </span><span class="n">endl</span><span class="p">;</span><span class="w"></span>
  114. <span class="p">}</span><span class="w"></span>
  115. </code></pre></div>
  116. <p><a href="http://isocpp.org">C++</a></p>
  117. </div>
  118. </article>
  119. <hr />
  120. <article>
  121. <div class="article_title">
  122. <h1><a href="http://www.d4n1.org/c.html">C</a></h1>
  123. </div>
  124. <div class="article_text">
  125. <p>C language is a general-purpose, imperative computer programming
  126. language, supporting structured programming, lexical variable scope
  127. and recursion, while a static type system prevents many unintended
  128. operations. By design, C provides constructs that map efficiently to
  129. typical machine instructions, and therefore it has found lasting use
  130. in applications that had formerly </p>
  131. </div>
  132. </article>
  133. <hr />
  134. <article>
  135. <div class="article_title">
  136. <h1><a href="http://www.d4n1.org/json.html">JSON</a></h1>
  137. </div>
  138. <div class="article_text">
  139. <p>In computing, JSON (JavaScript Object Notation) is an
  140. open-standard format that uses human-readable text to transmit data
  141. objects consisting of attributevalue pairs. It is the most common
  142. data format used for asynchronous browser/server communication,
  143. largely replacing XML which is used by Ajax.</p>
  144. <h4>nvim example.json</h4>
  145. <div class="highlight"><pre><span></span><code>{
  146. &quot;firstName&quot;: &quot;Daniel&quot;,
  147. &quot;lastName </code></pre></div>
  148. </div>
  149. </article>
  150. <hr />
  151. <article>
  152. <div class="article_title">
  153. <h1><a href="http://www.d4n1.org/xml.html">XML</a></h1>
  154. </div>
  155. <div class="article_text">
  156. <p>In computing, Extensible Markup Language (XML) is a markup
  157. language that defines a set of rules for encoding documents in a
  158. format that is both human-readable and machine-readable.</p>
  159. <h4>vim example.xml</h4>
  160. <div class="highlight"><pre><span></span><code><span class="nt">&lt;note&gt;</span>
  161. <span class="nt">&lt;to&gt;</span>RMS<span class="nt">&lt;/to&gt;</span>
  162. <span class="nt">&lt;from&gt;</span>D4n1<span class="nt">&lt;/from&gt;</span>
  163. <span class="nt">&lt;heading&gt;</span>Reminder<span class="nt">&lt;/heading&gt;</span>
  164. <span class="nt">&lt;body&gt;</span>Happy Hacking!<span class="nt">&lt;/body&gt;</span>
  165. <span class="nt">&lt;/note&gt;</span>
  166. </code></pre></div>
  167. <p><a href="http://www.w3.org/TR/rec-xml">XML</a></p>
  168. </div>
  169. </article>
  170. <footer>
  171. <div id="paginator">
  172. <a href="http://www.d4n1.org/author/d4n111.html" class="button_accent">&larr; Older Posts</a>
  173. <a href="http://www.d4n1.org/author/d4n19.html" class="button_accent">Newer Posts &rarr;</a>
  174. </div>
  175. </footer>
  176. <div id="ending_message">
  177. <p>
  178. &copy; 2000-2018 by Daniel Pimentel (d4n1). Under
  179. <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a>.
  180. </p>
  181. </div>
  182. </main>
  183. </body>
  184. </html>