science and technology [review + recipe] On Wings of Words by Jennifer Berne and Becca Stadtlander By jamarattigan.com Published On :: Fri, 01 May 2020 10:00:06 +0000 Each bird, bee, blossom, butterfly — was a source of joy and wonder for young Emily Dickinson. In this beautiful new picture book biography, aptly illustrated with a butterfly motif, we witness her singular metamorphosis from a keenly observant child into one of the most original and innovative poets in American literature. On Wings … Continue reading [review + recipe] On Wings of Words by Jennifer Berne and Becca Stadtlander Full Article book reviews (all genres) poetry friday baking children's literature children's poetry coconut cake emily dickinson historic recipes illustration picture book biographies picture books
science and technology [spicy guest post] Pippa Park’s Favorite Korean Stew by Erin Yun By jamarattigan.com Published On :: Tue, 05 May 2020 10:00:59 +0000 So pleased to welcome NYC author Erin Yun to the blog today. Her debut middle grade novel, Pippa Park Raises Her Game (Fabled Films Press, 2020), is a contemporary reimagining of the Dickens’s classic Great Expectations. Life is full of great expectations for Korean American Pippa Park. It seems like everyone, from her … Continue reading [spicy guest post] Pippa Park’s Favorite Korean Stew by Erin Yun Full Article author recipes guest posts middle grade fiction children's literature diverse children's books korean cuisine
science and technology cookie jar capers By jamarattigan.com Published On :: Fri, 08 May 2020 10:00:43 +0000 “A balanced diet is a cookie in each hand.” ~ Barbara Johnson Did YOU take the cookies from the cookie jar? Who, me? Yes, you! Couldn’t be. Then, who? Can’t fool me. I see crumbs on your face. ???? Don’t blame you, though. A cookie, at any time of day, always makes things … Continue reading cookie jar capers Full Article poetry friday cookie jars food poems hobbies poetry pottery and ceramics
science and technology Transfer of pywer By lambda-the-ultimate.org Published On :: Thu, 12 Jul 2018 17:15:46 +0000 Guido van Rossum is "resigning" from being the Python BDFL: "I'm basically giving myself a permanent vacation from being BDFL, and you all will be on your own." Apparently running a language can be tiring... It will be interesting to see what happens next. Full Article Python
science and technology ICFP Programming Contest 2018 By lambda-the-ultimate.org Published On :: Sat, 21 Jul 2018 06:45:18 +0000 Yep, it on! Full Article Fun Functional
science and technology Safe Dynamic Memory Management in Ada and SPARK By lambda-the-ultimate.org Published On :: Thu, 26 Jul 2018 19:42:01 +0000 Safe Dynamic Memory Management in Ada and SPARK by Maroua Maalej, Tucker Taft, Yannick Moy: Handling memory in a correct and efficient way is a step toward safer, less complex, and higher performing software-intensive systems. However, languages used for critical software development such as Ada, which supports formal verification with its SPARK subset, face challenges regarding any use of pointers due to potential pointer aliasing. In this work, we introduce an extension to the Ada language, and to its SPARK subset, to provide pointer types (“access types” in Ada) that provide provably safe, automatic storage management without any asynchronous garbage collection, and without explicit deallocation by the user. Because the mechanism for these safe pointers relies on strict control of aliasing, it can be used in the SPARK subset for formal verification, including both information flow analysis and proof of safety and correctness properties. In this paper, we present this proposal (which has been submitted for inclusion in the next version of Ada), and explain how we are able to incorporate these pointers into formal analyses For the systems programmers among you, you might be interested in some new developments in Ada where they propose to add ownership types to Ada's pointer/access types, to improve the flexibility of the programs that can be written and whose safety can be automatically verified. The automated satisfiability of these safety properties is a key goal of the SPARK Ada subset. Full Article Implementation Type Theory
science and technology Notes on notation and thought By lambda-the-ultimate.org Published On :: Sat, 28 Jul 2018 20:46:31 +0000 (via HN) A nice collection of quotes on notation as a tool of thought. Mostly not programming related, which actually makes them more interesting, offering a richer diversity of examples. We used to have quite a few discussions of notation in the early days (at least in part because I never accepted the prevailing dogma that syntax is not that interesting or important), which is a good reminder for folks to check the archives. Full Article General
science and technology History of Lisp By lambda-the-ultimate.org Published On :: Sat, 25 Aug 2018 17:43:23 +0000 History of Lisp (The history of LISP according to McCarthy's memory in 1978, presented at the ACM SIGPLAN History of Programming Languages Conference.) This is such a fun paper which I couldn't find on LtU. It's about the very early history of programming (1950s and '60s), back when things we take for granted today didn't exist yet. On taking apart complex data structures with functions like CAR and CDR: It was immediately apparent that arbitrary subexpressions of symbolic expressions could be obtained by composing the functions that extract immediate subexpressions, and this seemed reason enough to go to an algebraic language. On creating new data, i.e. CONS: At some point a cons(a,d,p,t) was defined, but it was regarded as a subroutine and not as a function with a value. ... Gelernter and Gerberich noticed that cons should be a function, not just a subroutine, and that its value should be the location of the word that had been taken from the free storage list. This permitted new expressions to be constructed out of subsubexpressions by composing occurrences of cons On inventing IF: This led to the invention of the true conditional expression which evaluates only one of N1 and N2 according to whether M is true or false and to a desire for a programming language that would allow its use. On how supreme laziness led to the invention of garbage collection: Once we decided on garbage collection, its actual implementation could be postponed, because only toy examples were being done. You might have heard this before: S.R. Russell noticed that eval could serve as an interpreter for LISP, promptly hand coded it, and we now had a programming language with an interpreter. And the rest is history... Full Article Fun History
science and technology On compositionality By lambda-the-ultimate.org Published On :: Fri, 07 Sep 2018 09:53:12 +0000 Jules Hedges has written a thought-provoking blog post, On compositionality where he connects the familiar idea of compositionality to the idea of emergent effects in nature, where systems can be understood as either having compositional properties or emergent properties. The key point about emergent systems is that they are hard to understand, and this is as true for engineering as it is for science. He goes on to say "As a final thought, I claim that compositionality is extremely delicate, and that it is so powerful that it is worth going to extreme lengths to achieve it", so that avoiding emergent effects is a characteristic of good programming language design. Some thoughts: His examples of emergent systems are biology and game theory from an economic perspective. I would add to this list physics: of his co-authored paper showing that the spectral gap is undecidable, David Pérez-García said "For example, our results show that adding even a single particle to a lump of matter, however large, could in principle dramatically change its properties." Spolsky's famous characterisation of interfaces built on shaky foundations as Leaky abstractions to me makes the distinction between compositional and emergent systems a little less than sharp. We could talk endlessly about the list of what he regards as compositionality-breaking features of PLs. The evils of global state are well-documented, but I find dmbarbour's argument that Local state is poison a very interesting alternative way to look at what properties do we want from code; more generally, what kind of compositionalty PLs offer is very much paradigm dependent. Gotos are considered harmful, but the Linux kernel has little trouble with longjmp because of its mandated coding style: compositionality in engineering is a not just a matter of semantics but also of use. He targets OO and Haskell's type classes - I think he is quite correct - note that within these paradigms one can regain compositionality by restricting to LSP or algebraic classes, and supporting his thesis we see that these ideas have spawned ideas for the design of new, cleaner PLs. Full Article General
science and technology The Little Typer By lambda-the-ultimate.org Published On :: Mon, 24 Sep 2018 04:29:49 +0000 A new introductory book about dependent types, involving some familiar names: The Little Typer by Daniel P. Friedman and David Thrane Christiansen. Foreword by Robert Harper. Afterword by Conor McBride. An introduction to dependent types, demonstrating the most beautiful aspects, one step at a time. A program's type describes its behavior. Dependent types are a first-class part of a language, and are much more powerful than other kinds of types; using just one language for types and programs allows program descriptions to be as powerful as the programs they describe. The Little Typer explains dependent types, beginning with a very small language that looks very much like Scheme and extending it to cover both programming with dependent types and using dependent types for mathematical reasoning. Readers should be familiar with the basics of a Lisp-like programming language, as presented in the first four chapters of The Little Schemer. The first five chapters of The Little Typer provide the needed tools to understand dependent types; the remaining chapters use these tools to build a bridge between mathematics and programming. Readers will learn that tools they know from programming—pairs, lists, functions, and recursion—can also capture patterns of reasoning. The Little Typer does not attempt to teach either practical programming skills or a fully rigorous approach to types. Instead, it demonstrates the most beautiful aspects as simply as possible, one step at a time. Full Article Type Theory
science and technology Selective Functors By lambda-the-ultimate.org Published On :: Tue, 05 Mar 2019 17:12:26 +0000 From Andrey Mokhov's twitter feed: Is there any intermediate abstraction between applicative functors and monads? And if yes, what is it? In a new paper with @geo2A, @simonmar and @dimenix we explore "selective functors", which are essentially applicative functors with branching: https://www.staff.ncl.ac.uk/andrey.mokhov/selective-functors.pdf We've implemented selective functors in Haskell: https://github.com/snowleopard/selective, OCaml: https://github.com/snowleopard/selective-ocaml, and even Coq: https://github.com/tuura/selective-theory-coq (the Coq repository contains some proofs of correctness that our selective instances are lawful). And there is also a PureScript fork! Full Article Functional Implementation Meta-Programming
science and technology "Three Things I Wish I Knew When I Started Designing Languages" By lambda-the-ultimate.org Published On :: Tue, 19 Mar 2019 00:20:53 +0000 The transcript of Three Things I Wish I Knew When I Started Designing Languages, a talk given by Peter Alvaro somewhere or other, is up at Info Q. Peter Alavaro's main research interest is in taming distributed systems. He starts his talk with the provocative thesis, "In the future, all radical new languages will be domain-specific languages." He talks of the evolution of his ideas about dealing with distributed systems: Little interest by designers of programming-language designers in filling huge difficulty of debugging in context of distributed systems; PLs often make handling of data somewhat implicit, even with functional programming, which he says is dangerous in distributed programming; To talk about the flow of data properly, we need to talk about time; Two things that influenced him as a grad student: Jeff Ullman's claim that encapsulation and declarativity are in tension, and Fagin's theorem (the existential fragment of second-order logic characterises NP); Idea that distributed systems can be considered as protocols specified a bit like SQL or Datalog queries; Triviality with query languages of characterising the idea of place in distributive systems: they are just another relation parameter; Describing evolution of a system in time can be done with two other things: counters and negation, leading to Bertram Ludäscher's language Statelog. But this way of doing things leads to the kind of low-level overexpressive modelling he was trying to avoid; "What is it about...protocols that they seem to require negation to express?” Turns out that if you drop negation, you characterise the protocols that deliver messages deterministically. He summarises by saying the only good reason to design a programming language (I assume he means a radically novel language) is to shape your understanding of the problem. No regrets of being the only user of his first language, Datalist, because the point is that it shaped all his later thought in his research. Full Article Parallel/Distributed
science and technology Seven Sketches in Compositionality: An Invitation to Applied Category Theory By lambda-the-ultimate.org Published On :: Sun, 28 Apr 2019 03:53:25 +0000 Seven Sketches in Compositionality: An Invitation to Applied Category Theory 2018 by Brendan Fong and David I. Spivak Category theory is becoming a central hub for all of pure mathematics. It is unmatched in its ability to organize and layer abstractions, to find commonalities between structures of all sorts, and to facilitate communication between different mathematical communities. But it has also been branching out into science, informatics, and industry. We believe that it has the potential to be a major cohesive force in the world, building rigorous bridges between disparate worlds, both theoretical and practical. The motto at MIT is mens et manus, Latin for mind and hand. We believe that category theory—and pure math in general—has stayed in the realm of mind for too long; it is ripe to be brought to hand. A very approachable but useful introduction to category theory. It avoids the Scylla and Charybdis of becoming incomprehensible after page 2 (as many academic texts do), and barely scratching the surface (as many popular texts do). Full Article Category Theory Teaching & Learning
science and technology Tensor Considered Harmful By lambda-the-ultimate.org Published On :: Thu, 27 Jun 2019 14:26:57 +0000 Tensor Considered Harmful, by Alexander Rush TL;DR: Despite its ubiquity in deep learning, Tensor is broken. It forces bad habits such as exposing private dimensions, broadcasting based on absolute position, and keeping type information in documentation. This post presents a proof-of-concept of an alternative approach, named tensors, with named dimensions. This change eliminates the need for indexing, dim arguments, einsum- style unpacking, and documentation-based coding. The prototype PyTorch library accompanying this blog post is available as namedtensor. Thanks to Edward Z. Yang for pointing me to this "Considered Harmful" position paper. Full Article Critiques Implementation Teaching & Learning
science and technology Applied Category Theory - The Emerging Science of Compositionality By lambda-the-ultimate.org Published On :: Mon, 05 Aug 2019 14:08:02 +0000 An enjoyable 25-minute introductory talk: YOW! Lambda Jam 2019 - Ken Scambler - Applied Category Theory (slides) What do programming, quantum physics, chemistry, neuroscience, systems biology, natural language parsing, causality, network theory, game theory, dynamical systems and database theory have in common? As functional programmers, we know how useful category theory can be for our work - or perhaps how abstruse and distant it can seem. What is less well known is that applying category theory to the real world is an exciting field of study that has really taken off in just the last few years. It turns out that we share something big with other fields and industries - we want to make big things out of little things without everything going to hell! The key is compositionality, the central idea of category theory. Previously: Seven Sketches in Compositionality: An Invitation to Applied Category Theory. (via Brian McKenna) Full Article Category Theory Paradigms Spotlight
science and technology Histogram: You have to know the past to understand the present by Tomas Petricek By lambda-the-ultimate.org Published On :: Sun, 15 Sep 2019 01:26:13 +0000 Histogram: You have to know the past to understand the present by Tomas Petricek, University of Kent Programs are created through a variety of interactions. A programmer might write some code, run it interactively to check whether it works, use copy and paste, apply a refactoring or choose an item from an auto-complete list. Programming research often forgets about these and represents programs as the resulting text. Consequently, thinking about such interactions is often out of scope. This essay shifts focus from programs to a more interesting question of programming. We represent programs as lists of interactions such as triggering an auto-complete and choosing an option, declaring a value, introducing a variable or evaluating a piece of code. We explore a number of consequences of this way of thinking about programs. First, if we create functions by writing concrete code using a sample input and applying a refactoring, we do not lose the sample input and can use it later for debugging. Second, if we treat executing code interactively as an interaction and store the results, we can later use this information to give more precise suggestions in auto-complete. Third, by moving away from a textual representation, we can display the same program as text, but also in a view inspired by spreadsheets. Fourth, we can let programmers create programs by directly interacting with live previews as those interactions can be recorded and as a part of program history. We discuss the key ideas through examples in a simple programming environment for data exploration. Our focus in this essay is more on principles than on providing fine tuned user experience. We keep our environment more explicit, especially when this reveals what is happening behind the scenes. We aim to show that seeing programs as lists of interactions is a powerful change of perspective that can help us build better programming systems with novel features that make programming easier and more accessible. The data exploration environment in this interactive essay may not yet be that, but it gives a glimpse of the future. Full Article LtU Forum
science and technology Turnstile+: Dependent Type Systems as Macros By lambda-the-ultimate.org Published On :: Fri, 14 Feb 2020 08:56:27 +0000 In 2017, a team from Northeastern University released Turnstile, a framework for implementing propositionally typed languages in Racket; cf. naasking's story Type Systems as Macros. The system was really nice because it allowed type systems to be expressed in a manner similar to the way theoretical PL researchers would in a paper, and because it hooked into Racket's clean compiler backend. Now Stephen Chang, one of that team, together with new coauthors Michael Ballantyne, Usamilo Turner and William Bowman, have released a rewrite that they call Turnstile+, together with a POPL article, Dependent Type Systems as Macros. From that article's introduction: Turnstile+ represents a major research leap over its predecessor. Specifically, we solve the major challenges necessary to implement dependent types and their accompanying DSLs and extensions (which Turnstile could not support), while retaining the original abilities of Turnstile. For example, one considerable obstacle was the separation between the macro expansion phase and a program’s runtime phase. Since dependently typed languages may evaluate expressions while type checking, checking dependent types with macros requires new macrology design patterns and abstractions for interleaving expansion, type checking, and evaluation. The following summarizes our key innovations. Turnstile+ demands a radically different API for implementing a language’s types. It must be straightforward yet expressive enough to represent a range of constructs from base types, to binding forms like Π-types, to datatype definition forms for indexed inductive type families. Turnstile+ includes an API for defining type-level computation, which we dub normalization by macro expansion. A programmer writes a reduction rule using syntax resembling familiar on-paper notation, and Turnstile+ generates a macro definition that performs the reduction during macro expansion. This allows easily implementing modular type-level evaluation. Turnstile+’s new type API adds a generic type operation interface, enabling modular implementation of features such as error messages, pattern matching, and resugaring. This is particularly important for implementing tools like tactic systems that inspect intermediate type-checking steps and construct partial terms. Turnstile+’s core type checking infrastructure requires an overhaul, specifically with first-class type environments, in order to accommodate features like dependent binding structures of the shape[x:τ]...,i.e., telescopes [de Bruijn 1991; McBride 2000]. Relatedly, Turnstile+’s inference-rule syntax is extended so that operations over telescopes, or premises with references to telescopes, operate as folds instead of as maps The code is available at https://github.com/stchang/macrotypes. Full Article Meta-Programming
science and technology Applications of Blockchain to Programming Language Theory By lambda-the-ultimate.org Published On :: Mon, 13 Apr 2020 14:38:12 +0000 Let's talk about Blockchain. Goal is to use this forum topic to highlight its usefulness to programming language theory and practice. If you're familiar with existing research efforts, please share them here. In addition, feel free to generate ideas for how Blockchain could improve languages and developer productivity. As one tasty example: Blockchain helps to formalize thinking about mutual knowledge and common knowledge, and potentially think about sharing intergalactic computing power through vast distributed computing fabrics. If we can design contracts in such a way that maximizes the usage of mutual knowledge while minimizing common knowledge to situations where you have to "prove your collateral", third-party transactions could eliminate a lot of back office burden. But, there might be benefits in other areas of computer science from such research, as well. Some language researchers, like Mark S. Miller, have always dreamed of Agoric and the Decades-Long Quest for Secure Smart Contracts. Some may also be aware that verification of smart contracts is an important research area, because of the notorious theft of purse via logic bug in an Ethereum smart contract. Full Article Fun Implementation Semantics
science and technology Whoa – what happened By kidscomkimma.wordpress.com Published On :: Sat, 09 Oct 2010 04:32:32 +0000 Hi guys, I don’t know what happened to all of my recent messages, I am guessing that the Clouds were at their nasty work again – stealing! So I am going to write more and you write me back ok? Well I just got back from one of my favorite little planets, planet Earth. I […] Full Article kidscom.com Uncategorized virtual house virtual worlds
science and technology My Dog Rescue By kidscomkimma.wordpress.com Published On :: Wed, 01 Dec 2010 05:33:06 +0000 How can people be so mean to helpless animals? While visiting my friends on Earth over Thanksgiving, I was taking a walk and Tra and I saw a dog abandoned in a box in the cold. She had finished nursing her puppies and so the people who owned her just turned her out in the […] Full Article kidscom.com Plant Babies virtual worlds help save animals hurt animals; dog abuse kidscom
science and technology Valentine’s Day is coming! By kidscomkimma.wordpress.com Published On :: Sat, 05 Feb 2011 15:56:47 +0000 I am so nervous about Valentine’s Day. I haven’t ever done this before until I visited Earth and my friend Skeeter told me about it. Should I give Spec a Valentine that is special and tells him how cute I think he is or should I give all my friends a Valentine that is the […] Full Article kidscom.com
science and technology I’m Home!!! Let’s Party!!! By kidscomkimma.wordpress.com Published On :: Tue, 06 Mar 2012 18:23:01 +0000 I can’t tell you how great it is to be home. I soo missed my family and my friends. Thank you to my friends the Idea Seekers Spec and Tra who came to my rescue on the planet Earth. And to think I almost got turned into a Warrior Drone by Jealousy Cloud over thinking my […] Full Article character dress-up dating kidscom kidscom.com Plant Babies virtual worlds
science and technology Great Party Ideas – How to Fight the Clouds By kidscomkimma.wordpress.com Published On :: Mon, 19 Mar 2012 04:20:58 +0000 You guys must give a lot of parties because you all have really good ideas! I can hardly wait to see what Spec and Skeeter choose to do for the celebration party! Tra and Skeeter and I hung out on Friday with some of you. It was so great to see everyone. I was expecting Spec would show up […] Full Article virtual worlds
science and technology The Darkness is Attacking By kidscomkimma.wordpress.com Published On :: Mon, 21 May 2012 22:18:24 +0000 I was coming home last night from a visit to Earth and as my spaceship slowed down to enter the atmosphere of Planet Sarillion I was horrified to see there was no planet!!!! There was just a big cloud and The Darkness. I couldn’t believe it, where was my Mom and Dad, my friends, the […] Full Article virtual worlds
science and technology You Did It! We Got Back Our Planet! By kidscomkimma.wordpress.com Published On :: Tue, 22 May 2012 04:38:28 +0000 My friends, you did it. You worked hard and chased the Darkness away. Special thanks to my friend Denver and Toki who wrote a really good poem/cheer. He is right, we have to stop the hacking – no more stealing passwords. I will be calling a Celebration Party. Everyone is welcome. Watch the What’s New […] Full Article virtual worlds
science and technology Fight the Darkness Around You By kidscomkimma.wordpress.com Published On :: Wed, 30 May 2012 21:53:10 +0000 Hi all my friends, I was really looking forward to Olice Hush’s party today in the Palace. I got all changed into my new fire dress and then the Darkness hit without any warning. I couldn’t get out of my room, on my computer screen it said server failed and all sorts of other things happened to […] Full Article virtual worlds
science and technology Out of school? Make Friends Challenge By kidscomkimma.wordpress.com Published On :: Wed, 20 Jun 2012 20:28:58 +0000 Hi all. Check out some of the really great party ideas some of you have added to my last post. Watch the What’s New on the homepage. Soon we’ll be doing some of them. Continue to send me your party ideas – you guys rock. I have a challenge for you – how many NEW friends can […] Full Article virtual worlds
science and technology Greedy Cloud’s Hidden Spring Furniture and Garden Décor Items Discovered! By kidscomkimma.wordpress.com Published On :: Fri, 08 Mar 2013 23:00:08 +0000 Dear Idea Seeker or Ally of the Idea Seekers, I have great news! Greedy Cloud has been chased away and Spec and Tra discovered some new spring time house and garden items that he was hiding from everyone. Check them out in my house and garden, or go see Spec, Tra and Skeeter’s houses. Here […] Full Article virtual worlds
science and technology Cape Town restaurant wins Guinness world milkshake record By feedproxy.google.com Published On :: Tue, 11 Feb 2020 13:45:24 -0500 Guinness World Records has named a South African restaurant as the official titleholder for 'Most Varieties of Milkshakes Commercially Available'. Full Article oddlyEnoughNews
science and technology Daredevil 'Mad Mike' Hughes dies in crash of his homemade rocket in California By feedproxy.google.com Published On :: Sun, 23 Feb 2020 18:14:24 -0500 "Mad Mike" Hughes, a self-styled explorer and daredevil bent on proving that the earth is flat was killed over the weekend when his homemade rocket crashed in the California desert over the weekend. Full Article oddlyEnoughNews
science and technology Biting passengers on flight is no reason for cash compensation delay: EU court adviser By feedproxy.google.com Published On :: Thu, 27 Feb 2020 06:09:14 -0500 Air travelers cannot receive cash compensation if their flight is delayed by a passenger biting others and assaulting crew members, an adviser at the Court of Justice of the European Union said on Thursday. Full Article oddlyEnoughNews
science and technology Waiter, there's a fly in my waffle: Belgian researchers try out insect butter By feedproxy.google.com Published On :: Fri, 28 Feb 2020 13:35:04 -0500 Belgian waffles may be about to become more environmentally friendly. Full Article oddlyEnoughNews
science and technology Somalis turn to Dr Hyena to fight depression, mental illness By feedproxy.google.com Published On :: Mon, 02 Mar 2020 14:02:32 -0500 The growls from the caged hyena reverberate through the room as Mohamed Sheikh Yakub slumps silently in a chair nearby, hoping the animal will frighten away the evil spirits he says have troubled him since his divorce. Full Article oddlyEnoughNews
science and technology Hedge fund manager apologizes for wiping saliva on Hong Kong metro rail By feedproxy.google.com Published On :: Thu, 19 Mar 2020 00:28:45 -0400 A hedge fund manager in Hong Kong has publicly apologised after a parody video of him licking his finger and wiping it on a hand rail in a metro car went viral, sparking anger in the city which is grappling to contain an outbreak of the new coronavirus. Full Article oddlyEnoughNews
science and technology Cats, PJs, alien eyes unwelcome as work video calling boom prompts new etiquette By feedproxy.google.com Published On :: Thu, 19 Mar 2020 16:58:02 -0400 (This March 17 story corrects stock symbol of Zoom to ZM.O, not ZOOM.PK in the last paragraph) Full Article oddlyEnoughNews
science and technology Bought enough toilet paper? Check this online calculator By feedproxy.google.com Published On :: Mon, 23 Mar 2020 08:35:13 -0400 Worried about whether you have enough toilet paper for the coronavirus lockdown? A German website can tell you how long your supply will last. Full Article oddlyEnoughNews
science and technology British vicar catches fire waiting for God's answer By feedproxy.google.com Published On :: Wed, 25 Mar 2020 01:07:42 -0400 A British vicar got more than he expected from his first attempt at an online sermon when he leaned too close to a candle on a cross and his sweater caught fire. Full Article oddlyEnoughNews
science and technology Who let the dogs out? A few Spaniards defy coronavirus lockdown By feedproxy.google.com Published On :: Wed, 25 Mar 2020 15:35:39 -0400 Under partial lockdown due to the spiraling coronavirus pandemic, Spaniards are allowed to leave home only for essential outings, walking a dog being one of them. Full Article oddlyEnoughNews
science and technology Eat it: Hanoi chef spreads joy with 'Coronaburger' By feedproxy.google.com Published On :: Thu, 26 Mar 2020 13:04:35 -0400 You've got to eat it, to beat it: That's the philosophy of one Hanoi chef who is attempting to boost morale in the Vietnamese capital by selling green, coronavirus-themed burgers. Full Article oddlyEnoughNews
science and technology Novelty toilet roll cakes keep Finnish baker in business By feedproxy.google.com Published On :: Wed, 08 Apr 2020 11:55:30 -0400 A quick-thinking Helsinki bakery has saved itself from financial ruin due to the new coronavirus pandemic by creating a cake that looks like a toilet roll. Full Article oddlyEnoughNews
science and technology Sex toy sales take off amid Colombia's coronavirus quarantine By feedproxy.google.com Published On :: Tue, 14 Apr 2020 15:02:50 -0400 Gerson Monje holds up his cellphone to proudly show off his online sex shop. A red banner reading "sold out!" is plastered across half of the products. Full Article oddlyEnoughNews
science and technology Do your bit for farmers and eat more fries, Belgians urged By feedproxy.google.com Published On :: Thu, 30 Apr 2020 05:14:32 -0400 With potato farmers and processors struggling, Belgians are being urged to eat more fries to offset a slump in demand during the coronavirus pandemic. Full Article oddlyEnoughNews
science and technology Superheroes, from near and far, join Indonesia's coronavirus battle By feedproxy.google.com Published On :: Mon, 04 May 2020 01:58:57 -0400 Volunteers clad as Superman and Spider-Man sprayed disinfectant against the coronavirus on Indonesia's island of Java, flanking a colleague wearing the winged helmet of local superhero Gatotkaca who shouted, "Wear masks, wash hands and stay alert." Full Article oddlyEnoughNews
science and technology President queries Tanzania coronavirus kits after goat test By feedproxy.google.com Published On :: Mon, 04 May 2020 07:21:37 -0400 Coronavirus test kits used in Tanzania were dismissed as faulty by President John Magufuli on Sunday, because he said they had returned positive results on samples taken from a goat and a pawpaw. Full Article oddlyEnoughNews
science and technology 'Darth Vader' enforces lockdown in Philippine village By feedproxy.google.com Published On :: Mon, 04 May 2020 09:02:48 -0400 Dressed as "Star Wars" characters, local officials in the Philippines are out and about to enforce strict quarantine measures while also handing out relief packages. Full Article oddlyEnoughNews
science and technology Thailand's pet groomer reopens as new coronavirus cases slow By feedproxy.google.com Published On :: Tue, 05 May 2020 07:36:18 -0400 Chewy and Miley, both two-year-old Schnauzer dogs, are getting their hair cut at a groomer in Bangkok for the first time since the new coronavirus outbreak began in Thailand in January. Full Article oddlyEnoughNews
science and technology Five-year-old stopped on U.S. highway wanted to buy Lamborghini, police say By feedproxy.google.com Published On :: Wed, 06 May 2020 05:51:54 -0400 A trooper stopping a car with a suspected "impaired driver" on a U.S. highway on Monday was bemused to find a 5-year-old in the driver's seat, the Utah Highway Patrol tweeted. Full Article oddlyEnoughNews
science and technology Clawing back normality: Bangkok cat cafe reopens after virus shutdown By feedproxy.google.com Published On :: Fri, 08 May 2020 05:20:12 -0400 As Thailand's capital cautiously reopens many restaurants shuttered over coronavirus fears, the feline "employees" of the Caturday Cafe are back at work. Full Article oddlyEnoughNews
science and technology You are what you eat! Using bad boy carbons to understand food webs By www.deepseanews.com Published On :: Mon, 20 May 2019 19:44:36 +0000 Remember all the details about the periodic table from high school chemistry? Yeah, me neither. Don’t worry – we will get through this together. Let’s… Full Article Abyss Benthic Ecology benthic Carbon deep sea food webs isotopes Wood Fall
science and technology Don’t be shallow. A tale of subsurface microplastics and the processes that transport them. By www.deepseanews.com Published On :: Thu, 06 Jun 2019 14:23:53 +0000 One thing you should know about me is that I am from New York and I am half Italian. That means when I like something,… Full Article Uncategorized