« 1183 1184 1185 1186 1187 1506 »

Pages are deceptive. Live life in a basket.

Reagent: Minimalistic React for ClojureScript

Reagent: Intro News GitHub Reagent provides a minimalistic interface between ClojureScript and React . It allows you to define efficient React components using nothing but plain ClojureScript functions and data, that describe your UI using a Hiccup -like syntax. The goal of Reagent is to make it possible to define arbitrarily complex UIs using just a couple of basic concepts, and to be fast enough by default that you rarely have to care about performance. A very basic Reagent component may look something like this: hide I am a component! I have bold and red text. ( defn simple-component [ ] [ :div [ :p "I am a component!" ] [ :p.someclass "I have " [ :strong "bold" ] [ :span { :style { :color "red" } } " and red " ] "text." ] ] ) You can build new components using other components as building blocks. Like this: hide I include sim...

Linked on 2014-12-01 05:03:37 | Similar Links
Rodney Mullen: Pop an ollie and innovate! | Talk Video | TED.com

<![endif] Navigation TED 1 Log in Sign up Skip to content… Watch TED Talks Browse the library of TED talks and speakers Playlists Collections of themed talks queued up to view TED-Ed videos Watch, share and create lessons with TED-Ed TEDx Talks Talks from independently organized local events Topics Explore TED offerings by topic Surprise Me The easy option. Let us choose for you! Read ideas.ted.com Outbound Our daily coverage of the world of ideas TED Blog Outbound Updates from TED and highlights from our global community TED Books Short books to feed your craving for ideas TED Studies Curated course material for educators and life long learners Newsletter Inspiration delivered straight to your inbox Attend Conferences Take part in our events: TED, TEDGlobal, TEDActive and more TEDx events Find and attend local, independently organized eve...

Linked on 2014-12-01 05:02:07 | Similar Links
◉ Satellite Lu on Twitter: "@0SCUR0 array : foo bar"

<![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? KERO SQUAD MEMBER ‏ @ 0SCUR0 2h 2 hours ago @ aliceffekt how are arrays being handled in Den though? Expand Collapse 0 re...

Linked on 2014-12-01 03:19:39 | Similar Links
XXIIVV ∴ Den

Den Talk Den is a small scripting language created for XXIIVV, and the successor to Mute . It is meant for optimal readability and simplicity. Similarly to Mute, there is only one syntax, for conditions, objects, functions, etc.. For example, a variable is just a function that returns a value. A return, in Den, uses the colon character. You can think of it like, index = value, like the setter [index:value]. index : value An if/else system is simply a function with cases. The following example will return 20, if a is not equal to 10. isEqual a b ? = a b : 1 : 0 Every function must exit, or else it runs itself into a loop. The following example shows an incrementation loop that exits once loop has equaled 10. loop value ? = value 10 : value + value 1 The following object is initialized with variables a and b, followed with the method, divided with a pipe. ob...

Linked on 2014-12-01 03:12:39 | Similar Links
overview for RandomCodeWalkThru

jump to content my subreddits announcements Art AskReddit askscience aww blog books creepy dataisbeautiful DIY Documentaries EarthPorn explainlikeimfive Fitness food funny Futurology gadgets gaming GetMotivated gifs history IAmA InternetIsBeautiful Jokes LifeProTips listentothis mildlyinteresting movies Music news nosleep nottheonion OldSchoolCool personalfinance philosophy photoshopbattles pics science Showerthoughts space sports television tifu todayilearned TwoXChromosomes UpliftingNews videos worldnews WritingPrompts edit subscriptions front - all - random | LifeProTips - news - philosophy - listentothis - movies - gaming - explainlikeimfive - videos - mildlyinteresting - nosleep - Documentaries - food - AskReddit - Jokes - TwoXChromosomes - gifs - dataisbeautiful - books - Fitness - aww - OldSchoolCool - Music - space - askscience - IAmA - funny - InternetIsBeautiful - Showerthough...

Linked on 2014-12-01 03:10:18 | Similar Links
RRDtool - About RRDtool

############################# # MENU ############################# Welcome Download Documentation Tutorials Programming Bugs, Wiki Support Gallery Projects using RRDtool Sponsoring RRDtool License Cast SiteSearch Google Enter your search terms Web oss.oetiker.ch Submit search form SiteSearch Google Gold Sponsors Silver Sponsors ... ############################# # Logo and Body ############################# Swiss Original . Mirrors: UK Graeme Fowler <graeme@graemef.net> RRDtool ############################# # BODY ############################# google_ad_section_start RRDtool is the OpenSource industry standard, high performance data logging and graphing system for time series data. RRDtool can be easily integrated in shell scripts, perl, python, ruby, lua or tcl applications. For the lastest news re...

Linked on 2014-12-01 01:57:16 | Similar Links
Learn C • Build Your Own Lisp

Learn C and build your own programming language in 1000 lines of code! If you're looking to learn C, or you've ever wondered how to build your own programming language, this is the book for you. In just a few lines of code, I'll teach you how to use C, and together, we'll start building your very own language. Along the way we'll learn about the weird and wonderful nature of Lisps, how to develop a real-world project, concisely solve problems, and write beautiful code! This books is free to read online, so you can get started right away! But for those who want to show their support, or who want the best reading experience, this book is also available for purchase in print format, or for cheap in all major e-book formats. Buy Now! Read Online! <p>If you want to show support, I also accept donations in the following formats...</p> <table cellpadding='10'> <tr><td><...

Linked on 2014-12-01 00:26:25 | Similar Links
(How to Write a (Lisp) Interpreter (in Python))

This page has two purposes: to describe how to implement computer language interpreters in general, and in particular to show how to implement a subset of the Scheme dialect of Lisp using Python . I call my language and interpreter Lispy ( lis.py ). Years ago, I showed how to write a Scheme interpreter in Java as well as one in Common Lisp . This time around the goal is to demonstrate, as concisely and accessibly as possible, what Alan Kay called "Maxwell's Equations of Software." Why does this matter? As Steve Yegge said , "If you don't know how compilers work, then you don't know how computers work." Yegge describes 8 problems that can be solved with compilers (or equally with interpreters, or with Yegge's typical heavy dosage of cynicism). The syntax of a language is the arrangement of characters to form correct statements or expressions; the semantics is the meaning ...

Linked on 2014-12-01 00:25:24 | Similar Links
Coalbe on Twitter: "Loving this subwoofer, but I wonder which part of this six hour @deadmau5 mix will make my wall-sharing neighbors homicidal."

<![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? Follow Following Unfollow Blocked Unblock Pending Cancel Coalbe ‏ @ colby 2h 2 hours ago Loving this subwoofer, but I wonder wh...

Linked on 2014-12-01 00:24:50 | Similar Links
dat

Home About Team Docs View on GitHub dat Build data pipelines Dat is an open source project that provides a streaming interface between every file format and data storage backend. Find out more › Dat Alpha Now Available Our first stable API, intended for developers and early adopters. Read more here . <div class="content-card"> <img src="http://placekitten.com/480/270"> <div class="content-card-title">Dat alpha preview screencast</div> <div class="content-card-subtitle">April 2014</div> </div> <div class="content-card"> <img src="http://placekitten.com/480/270"> <div class="content-card-title">10 minute intro presentation to dat</div> <div class="content-card-subtitle">Late 2013</div> </div> Features Learn more at our getting started guide . Streaming Everything in dat is built using streaming + non-blocking...

Linked on 2014-12-01 00:17:54 | Similar Links
Chopin Vodka - Hand Made Polish Vodka - Please drink responsibly. Chopin Vodka, Distilled from Potatoes, Rye and Wheat, 40% Alc. By Vol. Imported by Chopin Imports, Manhasset. NY

The world's finest AGE VERIFICATION BY CLICKING THIS BOX, YOU CERTIFY THAT YOU ARE ABOVE THE LEGAL DRINKING AGE FOR YOUR COUNTRY OF RESIDENCE. By clicking the ENTER button you agree to the terms and conditions of our web site, which can be found here . Chopin Vodka encourages moderate and responsible consumption. To find out more, visit: The Century Council . © 2011 Chopin Vodka ...

Linked on 2014-12-01 00:04:06 | Similar Links
bodyfuck: gestural brainfuck interpreter. "HI" on Vimeo

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 nik hanselmann Plus 5 years ago Not Yet Rated update: all the final videos are here vimeo.com/album/2517538 update: finished version & more...

Linked on 2014-11-30 23:53:12 | Similar Links |
Hotlips Pizza - MAVN

Locations SE Hawthorne ...

Linked on 2014-11-30 23:19:48 | Similar Links
almost/regex-crossword-solver · GitHub

Skip to content Sign up Sign in This repository Explore Features Enterprise Blog Star 2 Fork 0 almost / regex-crossword-solver /.container /.repohead Code Issues Pull Requests Pulse Graphs HTTPS Subversion You can clone with HTTPS or Subversion . Download ZIP /.repository-sidebar A solver for a Regular Expression Crossword 4 commits 1 branch 0 releases 1 contributor Haskell 100% Haskell 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 regex-crossword-solver...

Linked on 2014-11-30 21:21:52 | Similar Links
Solving a Regular Expression Crossword with Haskell, Part 1

_ _ _ ___ _ _ _ _ /_\ | |_ __ ___ __| |_ / _ \| |__ ___ ___| |___| |_ ___ _ _ ___| |_ / _ \| | ' \/ _ (_-< _| (_) | '_ (_-</ _ \ / -_) _/ -_)_| ' \/ -_) _| /_/ \_\_|_|_|_\___/__/\__|\___/|_.__/__/\___/_\___|\__\___(_)_||_\___|\__| In Glorious ASCII-VISION Home UPDATE: Part 2 is now available 2014-02-03 Mon Last Tuesday I arrived at my desk at The Skiff to find this sheet of paper had been left on my desk: click here for a clearer version It's a Regular Expression Crossword. And it clearly needed to be solved. I briefly considered trying it by hand before realising that there was far more entertainment to be had by writing a program to solve it. To makes things more entertaining I decided that there would be no brute forcing and no ...

Linked on 2014-11-30 21:21:07 | Similar Links
Save 33% on The Escapists on Steam

[if lt IE 7]> <style type="text/css"> #logo_holder img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); } #logo_holder { display: inline-block; width: 176px; height: 44px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png'); } </style> <![endif] STORE Community ABOUT SUPPORT Install Steam login | language Български (Bulgarian) čeština (Czech) Dansk (Danish) Nederlands (Dutch) Suomi (Finnish) Français (French) Ελληνικά (Greek) Deutsch (German) Magyar (Hungarian) Italiano (Italian) 日本語 (Japanese) 한국어 (Korean) Norsk (Norwegian) Polski (Polish) Português (Portuguese) Português-Brasil (Portuguese-Brazil) Русский (Russian) Română (Romanian) 简体中文 (Simplified Chinese) Español (Spanish) Svenska (Swedish) 繁體中文 (Traditional Chine...

Linked on 2014-11-30 20:47:40 | Similar Links
The Five Stages of Hosting (Pinboard Blog)

Pinboard go to site ‧ take a tour END BANNER RSS Pinboard Blog The Five Stages of Hosting As a proud VPS survivor, I thought it might be fun to write up five common options for hosting a web business, ranked in decreasing order of 'cloudiness'. People who aren't interested in this kind of minutia would be wise to pull the rip cord right here. 1. The Monastery You run your site on an 'application platform' like Heroku , Azure , or Google App Engine . You design your application around whatever metaphors and APIs the service lays out, and in return you are veiled from all the mysteries of implementation. You never interact with the computer directly, but upload your code to the platform with the proper incantations and it runs. The orders vary in strictness, with GAE requiring that you purify yourself of all worldly design habits before writing your app, Azure...

Linked on 2014-11-30 05:44:47 | Similar Links
Thoughts on Colocation (Pinboard Blog)

Pinboard go to site ‧ take a tour END BANNER RSS Pinboard Blog Thoughts on Colocation After a week of slogging servers around northern California, I thought a brain dump on colocation might be useful to readers, and to future me. I wrote about the difference between colocation, leased servers and other kinds of hosting in an earlier post . This one is strictly about colocation, the 'Condo' approach where you own a bunch of hardware and need a place to put it. What you are after is not complicated: A physical enclosure Some kind of Internet connection Power Security guards However, buying it is a pain in the neck. Money It's typical to sign a one- or three-year contract. Right off the bat this introduces an element of pressure, since you're making a fairly binding, long-term decision without knowing what you're doing. Unless you live in the Bay Area, colocation i...

Linked on 2014-11-30 05:44:45 | Similar Links
« 1183 1184 1185 1186 1187 1506 »

Pages are deceptive. Live life in a basket.