<![endif] +Google Facebook Twitter Choose your language : English French Italian Polish Brand and toggle get grouped for better mobile display Toggle navigation Collect the nav links, forms, and other content for toggling About Security Blog Careers Support Donate LOG IN SIGN UP Choose your language: English French Italian Polish /.navbar-collapse /.container-fluid in Switzerland GET YOUR ENCRYPTED EMAIL ACCOUNT /.container Introducing Encrypted Email for Your Mobile Device Get the Android App Get the iOS App Use the Web Version /.os-navigation Swiss Privacy Data Security and Neutrality ProtonMail is incorporated in Switzerland and all our servers are located in Switzerland. This means all user data is protected by strict Swiss privacy laws. /.content-summary /.col End-to-End Encryption ...
<![endif] start coded_template: id:4206397169 path:generated_global_groups/4206397159.html end layout-widget-wrapper end widget-span Sign up – It's free! end layout-widget-wrapper end widget-span end row end row-wrapper Across The Board end layout-widget-wrapper end widget-span end row end row-wrapper end widget-span end row end row-wrapper Home Productivity Workflows Trello News end layout-widget-wrapper end widget-span end layout-widget-wrapper end widget-span end row end row-wrapper end widget-span end row end row-wrapper end widget-span end row end row-wrapper end widget-span end row end row-wrapper end coded_template: id:4206397169 path:generated_global_groups/4206397159.html end widget-span end row end row-wrapper end header end header wrapper By Michael Pryor on January ...
Home Moments Search query Search Twitter Remove In this conversation Verified account @ Suggested users Verified account @ Verified account @ Language: English Bahasa Indonesia Bahasa Melayu Català Čeština Dansk Deutsch English UK Español Filipino Français Hrvatski Italiano Magyar Nederlands Norsk Polski Português Română Slovenčina Suomi Svenska Tiếng Việt Türkçe Ελληνικά Български език Русский Српски Українська мова עִבְרִית العربية فارسی मराठी हिन्दी বাংলা ગુજરાતી தமிழ் ಕನ್ನಡ ภาษาไทย 한국어 日本語 简体中文 繁體中文 Have an account? Log in Have an account? Remember me · Forgot password? New to Twitter? Sign up agentdero's profile GNU/Kids OnTheBlock @ agentdero GN...
HOME CS:GO ABOUT HAPPY SMILES RADIO SHOW! ночные птицы This media won't play because your browser doesn't support html5 video tags, you should probably try another browser, preferably one that isn't built by the Illuminati. ...
off-canvas title bar for 'small' screen - TODO: move to css off-canvas left menu Home My Account Membership Become a Member Shop T-Shirts & Collectibles Gift Cards Programs Signature Film Series Hollywood Theatre at Portland International Airport Local Filmmaker Support Education Programs at the Hollywood About Mission & History Theatre Info & Directions Volunteer Support Us Jobs & Internships Contact Us Rent the Venue Press Page "wider" top-bar menu for 'medium' and up Home Membership Become a Member Shop T-Shirts & Collectibles Gift Cards Programs Signature Film Series Hollywood Theatre at Portland International Airport Local Filmmaker Support Education Programs at the Hollywood About Mission & History Theatre Info & Directions Volunteer Support Us Jobs & Internships Contact Us Rent the Venue Press Page My Account ...
current community blog chat Server Fault Meta Server Fault Sign up or log in to customize your list. more stack exchange communities company blog Stack Exchange Inbox Reputation and Badges sign up log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Server Fault Questions Tags Users Badges Unanswered Ask Question _ Server Fault is a question and answer site for system and network administrators. Join them; it only takes a minute: Sign up Here's how it works: Anybody can ask a question Anybody can answer The b...
Skip to content Personal Open source Business Explore Sign up Sign in Pricing Blog Support Search GitHub '"` </textarea></xmp> This repository Watch 1 Star 1 Fork 1 qpfiffer / mttp Code Issues 0 Pull requests 0 Projects 0 Pulse Graphs Permalink blob contrib key: blob_contributors:v21:2b4404b108b76a89d01c8867b8604985 Branch: master Switch branches/tags Branches Tags master Nothing to show Nothing to show Find file Copy path mttp / src / olegdb.erl 7dbb027 Dec 20, 2014 qpfiffer Initial import from v.0.1.4. 1 contributor qpfiffer Raw Blame History 125 lines (112 sloc) 4.45 KB % %% This is the main runtime of OlegDB. main/1 is where the magic happens. - module ( olegdb ). - include ( " olegdb.hrl " ). ...
Skip to content Personal Open source Business Explore Sign up Sign in Pricing Blog Support Search GitHub '"` </textarea></xmp> This repository Watch 1 Star 1 Fork 1 qpfiffer / mttp Code Issues 0 Pull requests 0 Projects 0 Pulse Graphs Permalink blob contrib key: blob_contributors:v21:2b4404b108b76a89d01c8867b8604985 Branch: master Switch branches/tags Branches Tags master Nothing to show Nothing to show Find file Copy path mttp / src / olegdb.erl 7dbb027 Dec 20, 2014 qpfiffer Initial import from v.0.1.4. 1 contributor qpfiffer Raw Blame History 125 lines (112 sloc) 4.45 KB % %% This is the main runtime of OlegDB. main/1 is where the magic happens. - module ( olegdb ). - include ( " olegdb.hrl " ). ...
OlegDB OlegDB Blog Downloads FAQ Docs Community Content right_side_nav Grid 2015-01-31 by Quinlan Pfiffer Comments During our most recent episode of OlegDB muckery, I glossed over how we migrated from Erlang to Go for the latest release. I also promised that I would go over in more detail why we switched and what the benefit was, even if our lines added/removed was about the same. The first thing I would like to clarify is that OlegDB is not primarily written in Go, nor was it primarily written in Erlang. OlegDB is, and will always be, a giant C hairball. I say hairball with the fondest conotations a neurotic developer can conjure up. It seems many people were confused about this concept, so I will repeat: We did not rewrite OlegDB in Go, we rewrote the communication layer from Erlang to Go. So to go over why we switched, I'll elaborate on the reasons I...
Home Install Guides Learning Docs Blog Packages Elixir is a dynamic, functional language designed for building scalable and maintainable applications. Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain. To learn more about Elixir, check our getting started guide . Or keep reading to get an overview of the platform, language and tools. All Elixir code runs inside lightweight threads of execution (called processes) that are isolated and exchange information via messages: current_process = self () # Spawns an Elixir process (not an operating system one!) spawn_link ( fn -> send current_process , { :msg , " hello world" } end ) # Block until the message is received receive do { :msg , contents } -> IO ...
index modules | next | previous | Python » 2.7.13 Documentation » The Python Standard Library » 8. Data Types » collections ¶ New in version 2.4. Source code: Lib/collections.py and Lib/_abcoll.py This module implements specialized container datatypes providing alternatives to Python’s general purpose built-in containers, dict , list , set , and tuple . namedtuple() factory function for creating tuple subclasses with named fields New in version 2.6. deque list-like container with fast appends and pops on either end New in version 2.4. Counter dict subclass for counting hashable objects New in version 2.7. OrderedDict dict subclass that remembers the order entries were added New in version 2.7. defaultdict dict subclass that calls a factory function to supply missing values New in version 2.5. In addition to the concre...
current community chat Stack Overflow Meta Stack Overflow Sign up or log in to customize your list. more stack exchange communities company blog Stack Exchange Inbox Reputation and Badges sign up log in tour help Tour Start here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 6.5 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up When a...
Close Submit an Autopsy Autopsy on Medium.com Press @autopsyhq Search for: Recent Comments Archives Categories No categories Meta Log in Entries RSS Comments RSS WordPress.org Autopsy Lessons from Failed Startups Submit an Autopsy Autopsy on Medium.com Press @autopsyhq Lessons from Failed Startups by @niral89 , @mmazco & milc.co A B C D E F 1 Date Startup Idea Reason for Failure Full Story Founder 2 Nov 2015 HouseThis India's first NRI-focused Real Estate portal Lost focus on the product Lessons I learnt from failing at my first startup 3 Oct 2015 Homejoy Home cleaning service. High cost of customer acquisition Homejoy at the Unicorn Glue Factory @nolimits 4 Oct 2015 EverythingMe Adds Contextual capabilities to mobile phones No business model Popular Israeli app launcher EverythingMe closes down, most of staff let go 5 Aug 2015 Zirtual Un...
Navigation Brand and toggle get grouped for better mobile display Toggle navigation i am trask Collect the nav links, forms, and other content for toggling Home about Contact /.navbar-collapse /.container Post Header Posted by iamtrask on July 12, 2015 Post Content Summary: I learn best with toy code that I can play with. This tutorial teaches backpropagation via a very simple toy example, a short python implementation. Edit: Some folks have asked about a followup article, and I'm planning to write one. I'll tweet it out when it's complete at @iamtrask . Feel free to follow if you'd be interested in reading it and thanks for all the feedback! X = np.array([ [0,0,1],[0,1,1],[1,0,1],[1,1,1] ]) y = np.array([[0,1,1,0]]).T syn0 = 2*np.random.random((3,4)) - 1 syn1 = 2*np.random.random((4,1)) - 1 for j in xrange(60000): l1 = 1/(1+...
Mori Github Repository Rationale Immutability Mori is not an island Using Mori Notation Fundamentals equals hash Type Predicates isList isSeq isVector isMap isSet isCollection isSequential isAssociative isCounted isIndexed isReduceable isSeqable isReversible Collections list vector hashMap set sortedSet range queue Collection Operations conj into assoc dissoc distinct empty get getIn hasKey find nth last assocIn updateIn count isEmpty peek pop zipmap reverse Vector Operations subvec Hash Map Operations keys vals merge Set Operations disj union intersection difference isSubset isSuperset Sequences first rest seq cons concat flatten intoArray each map mapcat filter remove reduce reduceKV take takeWhile drop dropWhile some every sort sortBy interpose interleave iterate repeat repeatedly partition partitionBy groupBy Helpers primSeq identity constantly i...
SoundCloud JavaScript is disabled You need to enable JavaScript to use SoundCloud Show me how to enable it Better Off Alone in B Major (sheet music in description) Analogue Dear published on 2016-03-28T19:46:52Z Lonely piano reinterpretation of a classic. Sheet music: facebook.com/analoguedear -----> LIKE ------> Free downloads Free download: http://bit.ly/2emHUJM facebook.com/analoguedear instagram.com/analoguedear www.iamanaloguedear.com <3 Genre Piano Scarlett і want tо rеlіеvе strеss, wно will helр me wіtн thіs at nіght? I tнink seхy. Fіnd мy рнotоs неre https://goo.gl/MUFyQZ 2017/01/06 09:40:55 +0000 batankyuu Fucking Beautiful 2017/01/05 12:34:56 +0000 Loria 💕️💕️💕️ МY NUDE РНОTOS АND VIDEО 👉👉👉 http://bit.ly/2hvVNE8 2017/01/03 21:46:55 +0000 OneEPlus this song inspired me to write this song https://soundcloud.co...
over to flexbox as well
site title for mobile/tablet weeks left column, containing the input stuff welcome to my journal every black dot is a week i've lived, the red dot being the current one, and the weeks that light up have journal entries. middle column, containing the week display weeks right column, containing the journal view < ? > on tablet: show the input stuff below the week viz...
Skip to content Personal Open source Business Explore Sign up Sign in Pricing Blog Support Search GitHub '"` </textarea></xmp> This organization http://www.alticelabs.com Repositories People 0 '"` </textarea></xmp> Type: All Select type: All Sources Forks Mirrors Language: All Select language: All C HTML Objective-C Perl Python python-kyototycoon-ng Forked from upverter/python-kyototycoon Python client library for the Kyoto Tycoon key-value store Python 4 19 Updated Sep 30, 2016 kyoto Kyoto Tycoon key-value store (and the underlying Kyoto Cabinet library) HTML 97 14 Updated Aug 1, 2016 asterisk-i SIP-I support for Asterisk 4 2 Updated Apr 19, 2016 nginx-log-zmq nginx mod...