“
I don't keep mistresses; it's far too much trouble. I'm offering to marry you, although I might regret it. And if you think the Lim family disapproved of your marriage, wait until you meet mine.
”
”
Yangsze Choo (The Ghost Bride)
“
Virding's First Rule of Programming:
Any sufficiently complicated concurrent program in another language contains an ad hoc informally-specified bug-ridden slow implementation of half of Erlang.
”
”
Robert Virding
“
The best thing to do is create a lagom number of processes. Erlang comes from Sweden, and the word lagom loosely translated means “not too few, not too many, just about right.” Some say that this summarizes the Swedish character.
”
”
Joe Armstrong (Programming Erlang: Software for a Concurrent World (Pragmatic Programmers))
“
Men are selfish and petty,” argued Erlang Shen, Grand Marshal of the Heavenly Forces. “Their life spans are so short that they give no thought to the future of the land. If we lend them aid, they will drain this earth and squabble among themselves. There will be no peace.
”
”
R.F. Kuang (The Poppy War (The Poppy War, #1))
“
I let the divine being leave first and gave him a few minutes to do whatever it was he needed to do to get back to Heaven. It seemed polite, though I’d only made that rule up in my head.
When I stepped out of the shack, Quentin was there by the roadside, waiting for me.
“Have a nice chat?”
I knew his peevish tone was his usual allergic reaction to Erlang Shen, but for some reason I didn’t field it well today.
“Yeah, we really connected on an emotional level,” I snapped. “I promised to turn into a stick for him.”
That was perhaps the weirdest, most hyper-targeted dig I’d ever leveled at someone, but boy did it work. Quentin looked like I’d broken him in half and left him on the curb for pickup. He was completely silent the entire trip back to civilization.
He didn’t call or text me that night either
”
”
F.C. Yee (The Epic Crush of Genie Lo (The Epic Crush of Genie Lo, #1))
“
Men are selfish and petty,” argued Erlang Shen, Grand Marshal of the Heavenly Forces. “Their life spans are so short that they give no thought to the future of the land. If we lend them aid, they will drain this earth and squabble among themselves. There will be no peace.” “But they are suffering now.” Erlang Shen’s twin sister, the beautiful Sanshengmu, led the opposing faction. “We have the power to help them. Why do we withhold it?” “You are blind, sister,” said Erlang Shen. “You think too highly of mortals. They give nothing to the universe, and the universe owes them nothing in return. If they cannot survive, then let them die.
”
”
R.F. Kuang (The Poppy War (The Poppy War, #1))
“
Greenspun’s 10th rule states, “Any sufficiently complicated C or Fortran program contains an ad hoc, informally specified, bug-ridden, slow implementation of half of Common Lisp.” This has morphed into the newer joke: “Every microservice architecture contains a half-broken reimplementation of Erlang.” I think there is a lot of truth to this.
”
”
Sam Newman (Monolith to Microservices: Evolutionary Patterns to Transform Your Monolith)
“
Programming is not all the same. Normal written languages have different rhythms and idioms, right? Well, so do programming languages. The language called C is all harsh imperatives, almost raw computer-speak. The language called Lisp is like one long, looping sentence, full of subclauses, so long in fact that you usually forget what it was even about in the first place. The language called Erlang is just like it sounds: eccentric and Scandinavia. I cannot program in any of these languages because they're all too hard.
But Ruby, my language of choice, was invented by a cheerful Japanese programmer, and it reads like friendly, accessible poetry. Billy Collins by way of Bill Gates.
”
”
Anonymous
“
Generative testing is an approach to testing software that was made popular by the QuickCheck library. Originally written in Haskell and since ported to several other programming languages (Ruby, Python, C, C++, Objective-C, Smalltalk, Java, JavaScript, Erlang, Scala, Clojure...), the QuickCheck library allows the developer to separate test logic from the generation of test cases. This means that, as developers, we can spend less time instructing the compiler how to test our code, and focus instead on what properties we expect our code to have.
”
”
Anonymous
“
I met Jessie when I thought I would never find my place. She was a classmate who noticed my struggles and offered me a friendly smile and a helping hand.
”
”
Dr. Erlange Elisme
“
I stared at the reflection in the mirror, trying to recognize the person looking back at me. It had been weeks since I started this journey of understanding my emotions and the invisible walls I'd build around myself.
”
”
Dr. Erlange Elisme
“
As they made their promise, a cool breeze blew through the clearing, and they could have sworn they heard the kokiy's sound again, as if nature was saying "thank you".
”
”
Dr. Erlange Elisme
“
In the words of the German finance minister, Wolfgang Schaeuble, as reported by the International Herald Tribune (Castle and Erlanger 2011): ‘In recent months it has become clear: the answer to the crisis can only mean more Europe. . .Without. . . further steps toward stronger European institutions, eventually Europe will lose its effectiveness. We have to look beyond the national state.’ Other members of the Berlin government, possibly including the Chancellor herself, seem to share the view that the crisis could, paradoxically, bring the EU much closer to a political union. The crisis, they argue, cannot be resolved without a much tighter coordination of the fiscal and social policies of the members of the euro zone, even if this implies additional limits on national sovereignty. Also the leader of the opposition Social-Democratic Party, Sigmar Gabriel, is of the opinion that the crisis calls for political union.
”
”
Giandomenico Majone (Rethinking the Union of Europe Post-Crisis: Has Integration Gone Too Far?)
“
The applicability of the Erlang-B formula stems from the fact that it is independent of the service time distribution.
”
”
Mor Harchol-Balter (Performance Modeling and Design of Computer Systems: Queueing Theory in Action)
“
Programming is not all the same. Normal written languages have different rhythms and idioms, right? Well, so do programming languages. The language called C is all harsh imperatives, almost raw computer-speak. The language called Lisp is like one long, looping sentence, full of subclauses, so long in fact that you usually forget what it was even about in the first place. The language called Erlang is just like it sounds: eccentric and Scandinavian.
”
”
Robin Sloan (Mr. Penumbra's 24-Hour Bookstore (Mr. Penumbra's 24-Hour Bookstore, #1))
“
That means that a go block compares very favorably to an Elxir process—a very impressive result given that Clojure runs on the JVM, whereas Elixir runs on the Erlang virtual machine, which was built with efficient concurrency in mind.
”
”
Anonymous
“
If a customer asks you to build a system that handles netsplits while staying consistent and available, you know that you need to either calmly explain the CAP theorem or run away (possibly by jumping through a window, for a maximal effect).
”
”
Fred Hebert (Learn You Some Erlang for Great Good!: A Beginner's Guide)
“
Many languages are dogmatic about the solutions they offer for handling concurrent problems. For example, Erlang has elegant functionality for message-passing concurrency but has only obscure ways to share state between threads. Supporting only a subset of possible solutions is a reasonable strategy for higher-level languages, because a higher-level language promises benefits from giving up some control to gain abstractions. However, lower-level languages are expected to provide the solution with the best performance in any given situation and have fewer abstractions over the hardware.
”
”
Rust
“
It was some time before he motioned for me to come out, and when I did so, I couldn't help glancing around nervously. The gardeners were now mere specks in the distance.
"Do they work at night as well?" I asked, looking around at the dusky pall that still thankfully covered the sky.
"It will be morning soon," said Er Lang. "But they seem to go around at all hours. You look dreadful, by the way," he remarked conversationally.
I glared at him, conscious of the way my hair had straggled out of its plaits, the dirt that encrusted my clothing, not to mention the tear stains on my grimy face. "Why does it matter?
”
”
Yangsze Choo (The Ghost Bride)
“
Armstrong: I'd write them in C or assembler or something. Or I might actually write them in a dialect of Erlang and then cross-compile the Erlang to C. Make a dialect—this kind of domain-specific language kind of idea. Or I might write Erlang programs which generate C programs rather than writing the C programs by hand. But the target language would be C or assembler or something. Whether I wrote them by hand or generated them would be the interesting question. I'm tending toward automatically generating C rather than writing it by hand because it's just easier.
”
”
Peter Seibel (Coders at Work: Reflections on the Craft of Programming)
“
Erlang himself, working for the Copenhagen Telephone Company in the early twentieth century, used it to model how much time could be expected to pass between successive calls on a phone network. Since then, the Erlang distribution has also been used by urban planners and architects to model car and pedestrian traffic, and by networking engineers designing infrastructure for the Internet. There are a number of domains in the natural world, too, where events are completely independent from one another and the intervals between them thus fall on an Erlang curve. Radioactive decay is one example, which means that the Erlang distribution perfectly models when to expect the next ticks of a Geiger counter. It also turns out to do a pretty good job of describing certain human endeavors—such as the amount of time politicians stay in the House of Representatives.
”
”
Brian Christian (Algorithms to Live By: The Computer Science of Human Decisions)
“
The Erlang distribution gives us a third kind of prediction rule, the Additive Rule: always predict that things will go on just a constant amount longer. The familiar refrain of “Just five more minutes!… [five minutes later] Five more minutes!” that so often characterizes human claims regarding, say, one’s readiness to leave the house or office, or the time until the completion of some task, may seem indicative of some chronic failure to make realistic estimates
”
”
Brian Christian (Algorithms to Live By: The Computer Science of Human Decisions)
“
In a power-law distribution, the longer something has gone on, the longer we expect it to continue going on. So a power-law event is more surprising the longer we’ve been waiting for it—and maximally surprising right before it happens. A nation, corporation, or institution only grows more venerable with each passing year, so it’s always stunning when it collapses. In a normal distribution, events are surprising when they’re early—since we expected them to reach the average—but not when they’re late. Indeed, by that point they seem overdue to happen, so the longer we wait, the more we expect them. And in an Erlang distribution, events by definition are never any more or less surprising no matter when they occur. Any state of affairs is always equally likely to end regardless of how long it’s lasted. No wonder politicians are always thinking about their next election.
”
”
Brian Christian (Algorithms to Live By: The Computer Science of Human Decisions)
“
After a short consultation with A. L. Erlanger, it was understood that I was to open in a Broadway theater the following September. “What’s the name of the piece?” asked Erlanger. “Little Johnny Jones,” I replied.
”
”
George Cohan (Twenty Years on Broadway: And the Years It Took to Get There)
“
TJ's Plumbing Installation and Repair, led by TJ Thorp, a Master Plumber with over 20 years of experience, is your trusted local plumber in Erlanger, KY. We deliver expert plumbing solutions with attention to detail and exceptional customer service. From water heater installations and drain cleaning to bathroom remodels and toilet replacements, we handle all your residential and commercial plumbing needs. Locally owned and operated, we’re dedicated to quality workmanship.
”
”
TJs Plumbing Installation and Repair