Supervisitor Release 16 Commits Talk Supervisitor is the third album of Aliceffekt 's Fourth wave . It was performed live at the Dodecae event in Toronto and was written for Arturia 's analog and monophonic Microbrute synthetiser. Fourth wave Portal Damoiseau canalx Supervisitor Ten axitecture Purchase Bandcamp #Audio #Supervisitor Devine Lu Linvega Nereid, Neptune Dodesamber 8, 2014 ...
Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 922 Fork 24 munificent / vigil /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar Vigil, the eternal morally vigilant programming language 6 commits 1 branch 0 releases 2 contributors Python 100% Python branch: master Switch branches/tags /.select-menu-header Branches Tags /.select-menu-tabs /.select-menu-filters master /.select-menu-item Nothing to show /.select-menu-list Nothing to show /.select-menu-list /.select-menu-modal /.select-menu-modal-holder /.select-menu vigil / Merge pu...
Sign up for a GitHub account Sign in All Gists qpfiffer / example.jaml Created December 08, 2014 Code Revisions 1 /.sunken-menu-group /.sunken-menu-contents Embed HTTPS SSH You can clone with HTTPS or SSH . Download Gist /.only-with-full-nav View example.jaml example.jaml Raw File suppressed. Click to show. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 --- !clarkevans.com/^invoice invoice: 34843 date : 2001-01-23 bill-to: &id001 { given : Chris family : Dumars address" { lines: | 458 Walkman Dr. Suite #292 city : Royal Oak state : MI postal : 48046 } } ship-to: *id001 product: { - { sku : BL394D quantity : 4 description : Basketball price : 450...
Hacker News new | comments | show | ask | jobs | submit login The Birth and Death of JavaScript [video] (destroyallsoftware.com) 634 points by gary_bernhardt 235 days ago | comments tinco 234 days ago | link The reason why metal doesn't exist now is because you can't turn the memory protection stuff off in modern CPU's. For some weird reason (I'm not an OS/CPU developer) switching to long mode on an x86 cpu also turns on the mmu stuff. You just can't have one without the other. There's a whole bunch of research done on VM software managed operating systems, back when the VM's started becoming really good. Microsoft's Singularity OS was the hippest I think.[0] Perhaps that ARM cpu's don't have this restriction, and we will benefit from ARM's upmarch sometime? [0] http://research.microsoft.com/en-us/projects/singularity/ ----- gary_bernhardt 234 days ago | link I didn't want to go i...
Destroy All Software Talks Screencasts — Blog — Talks A talk by Gary Bernhardt from PyCon 2014 This science fiction / comedy / absurdist / completely serious talk traces the history of JavaScript, and programming in general, from 1995 until 2035. It's not pro- or anti-JavaScript; the language's flaws are discussed frankly, but its ultimate impact on the industry is tremendously positive. For Gary's more serious (and less futuristic) thoughts on programming, try some Destroy All Software screencasts. DAS Screencasts → Download Destroy All Software: screencasts for serious developers . ...
<![endif] Twitter Search query Search Twitter Remove Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Čeština Dansk Deutsch EnglishUK Español Filipino français Italiano Magyar Nederlands Norsk Polski Português română Suomi Svenska Tiếng Việt Türkçe Русский Українська мова עִבְרִית العربية فارسی हिन्दी বাংলা ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in New to Twitter? Join Today » Log in Phone, email or username Password Log in Remember me Forgot password? Already using Twitter via text message? The Strange Log @ TheStrangeLog Tweets 686 Followers 13.1K Favorites 105 More Favorites ...
<![endif] [if lte IE 9]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif] Made by @nickuuuuu , using KineticJS , based on a tutorial which can be found here . Fork this on Github if you're in to that kind of thing. ...
Curtis Twitter Github RSS Cube Drone First Previous Next Last First Previous Next Last DISQUS DROP-IN Please enable JavaScript to view the comments powered by Disqus. blog comments powered by Disqus inner 105 - Texting in the Rain 104 - Everybody is Hiring 103 - Pipes 102 - The Bad Presentation 101 - Junior Programmer Presentations Hexadecimal Endianness Just a Little Bit Sketch Bits & Bytes Sketch Imbruglia Problem Solving Terminator Tech Whiz Wanted - How to Programming Imbroglio Neckbeards Scrum Presentations Advertising Content © Curtis Lassam 2014 Cube Drone by Curtis Lassam is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License . This site built using the Arglebargle Website Engine content ...
The Doom that Came to Puppet Posts generated by a Markov chain trained on the Puppet documentation and the assorted works of H. P. Lovecraft “We determined to dispense with intermediate bases, taking our chances in the interest of consistent look-and-feel” 8 minutes ago /post “You can expand your coverage further by maintaining a stable of snapshotted environments in various states, to ensure that your classes do what’s expected in all the contours, dimensions, proportions, decorations, and constructional nuances of the blasphemously archaic stonework.” 3 hours ago /post “This key is certified by several of the summits—as poor Lake must have done when he made that early mistake about volcanism” 6 hours ago /post “The ideal way to check for a service is to use an exec resource with refreshonly set to true, such as in this case one of the blocks of th...
<![endif] RSS Blog Archive (by date) Archive (by popularity) About Dec 4 th , 2014 Let’s write a malloc and see how it works with existing programs! This tutorial is going to assume that you know what pointers are, and that you know enough C to know that *ptr dereferences a pointer, ptr->foo means (*ptr).foo , that malloc is used to dynamically allocate space , and that you’re familiar with the concept of a linked list. If you decide to work through this tutorial without really knowing C, please let me know what parts could use more exposition. If you want to look at all of this code at once, it’s available here . The tests are from Andrew Roth, who had a github repo lying around with some tests for malloc. Preliminaries aside, malloc’s function signature is void *malloc(size_t size); It takes as input a number of bytes and returns a pointer to a block of memory of t...
CentralNotice Bit field From Wikipedia, the free encyclopedia Jump to: navigation , search A bit field is a term used in computer programming to store multiple, logical, neighboring bits , where each of the sets of bits, and single bits can be addressed. A bit field is most commonly used to represent integral types of known, fixed bit-width. A well-known usage of bit-fields is to represent a set of bits, and/or series of bits, known as flags . [ citation needed ] For example, the first bit in a bit field can be used to determine the state of a particular attribute associated with the bit field. A bit field is distinguished from a bit array in that the latter is used to store a large set of bits indexed by integers and is often wider than any integral type supported by the language. Bit fields, on the other hand, typically fit within a machine word , and the denotation o...
Force any HTML comments inject by third parties to close Vimeo Join Log In Create Video School Learn how to make better videos. Music Store Get free and affordable licensed tracks. Cameo New! Create cinematic videos on your phone. Creative Commons Find licensed videos on Vimeo. Creator Services Make money by making video. Watch Staff Picks Hand-picked videos we like On Demand New! Watch movies, series, and more. Categories A simple way to browse our catalog of videos. Channels Video showcases curated by members. Groups Join other members to watch and discuss. Couch Mode Lean back and enjoy the Vimeo. Upload from Moran Plant Plus 1 week ago Not Yet Rated Perfectly positioned at the heart of the Lake Champlain waterfront, the degrading industrial relic...
What is Fugue? Getting Started Use Cases Docs Sign in Fugue automates the deployment, operations and maintenance of cloud-based workloads to give you declarative control over reliable and resilient infrastructure. Watch video Register for beta Fugue is immutable infrastructure, realized. It automates the operations of dynamic, distributed workloads in the cloud. Fugue uses a regenerative component architecture to enforce the desired state of infrastructure, normalize quality, and provide resilience in cloud environments. Focus on what you want, not how to achieve and maintain it. Fugue provides a single source of truth and trust for cloud-based infrastructure. You always know what’s running, what changes are made, and how your infrastructure will behave. Compositions are testable, repeatable, and predictable. With Fugue, you don’t trade control and sec...