lime

DISTRIBUTED ON-PACKAGE MILLIMETER-WAVE RADIO

Embodiments described herein generally relate to phased array antenna systems or packages and techniques of making and using the systems and packages. A phased array antenna package may include a distributed phased array antenna comprising (1) a plurality of antenna sub-arrays, which may each include a plurality of antennas, (2) a plurality of Radio Frequency Dies (RFDs), each of the RFDs located proximate and electrically coupled by a trace of a plurality of traces to a corresponding antenna sub-array of the plurality of antenna sub-arrays, and (3) wherein each trace of the plurality of traces configured to electrically couple an antenna of the plurality of antennas to the RFD located proximate the antenna, wherein each trace of the plurality of traces is configured to transmit millimeter wave (mm-wave) radio signals, and wherein the plurality of traces are each of a substantially uniform length.




lime

Healthy eating expert Amelia Freer in Lime Wood date

TO celebrate the launch of her new book, healthy eating expert Amelia Freer will be at Lime Wood for supper and a chat on Wednesday January 29.




lime

Treat your NHS hero to lunch at luxury Lime Wood

FIFTY NHS heroes will be treated to a lunch for two at luxury New Forest hotel Lime Wood.




lime

Limericks

Copyright 2020 NPR. To see more, visit https://www.npr.org.




lime

Limericks

Copyright 2020 NPR. To see more, visit https://www.npr.org.




lime

Red Jump bikes will temporarily disappear from Seattle streets as Lime takes over


Lime has expressed interest in bringing rentable electric scooters to Seattle, but the rollout of a scooter program is awaiting a decision from the city hearing examiner.




lime

Red Jump bikes will temporarily disappear from Seattle streets as Lime takes over


Lime has expressed interest in bringing rentable electric scooters to Seattle, but the rollout of a scooter program is awaiting a decision from the city hearing examiner.




lime

BURKE, E.: Philosophical Enquiry into the Sublime and Beautiful (A) (Unabridged) (NA0413)

In A Philosophical Enquiry… Edmund Burke sets out to define the nature of beauty and sublimity, and establish an objective criterion for discussing aesthetics. His definition of beauty as rooted in pleasure and sexuality, and the sublime in pain and survival, aligned him with the empiricists John Locke and David Hume, as he replaced the metaphysics of Plato’s aesthetics with a psychological and physiological perspective. According to Burke, the sublime and the beautiful are experiences that can be explained by biological and sensual factors; thus he proceeds to explain how smooth lines, sweet tastes and middle frequencies of sound can be considered beautiful, and the terror created by high mountains and dark forests can be sublime. These revolutionary ideas ushered in the age of Romanticism, and the Gothic genre of novels, with their delight in horror and fright, and continue to influence aesthetic theories today.




lime

Knickers the giant steer makes a packet for Blue Tree Project in brief return to limelight

One year on, 2018's most unlikely internet sensation, Knickers the giant steer, has put his big hoof forward for a good cause, raising more than $14,000 in the process.





lime

Drugs found in Australia Post parcels leads to investigation by Limestone Coast police

A routine car search by Limestone Coast police has led to an investigation into whether south-east drug users are using Australia Post as a courier service to send and receive illegal drugs.




lime

Hervey Bay scallops with nam phrik phao, crispy rice, turmeric and finger lime kosho




lime

One state is primed to bounce back from coronavirus faster — but is it a 'backhanded compliment'?

As leaders prepare to ease coronavirus restrictions in their states, South Australia could be in the box seat to win the race to recovery by turning what might be regarded as weaknesses into strengths.




lime

Compliments Of The Day Email Scam

"Compliments of the day" email scam removal guide

What is "Compliments of the day" email scam?

In most cases scams that are sent via email are used to trick recipients into providing some sensitive information, transferring money or even opening files designed to install some malware. In this case scammer seeks to trick recipients into believing that he can get a huge sum of money out of his country but he cannot do that on his own and requests for assistance, in return for an investment opportunity. Typically, scams of this type are used to extract money from unsuspecting people. This or any other similar scam should be ignored.




lime

Lime in the Coconut Tarts: Raw Food Dessert Recipe


Lime in the Coconut Tarts
8 tarts ~ $1.11 per serving




These are just insanely good and great for summer. I really don't think there's a conventional dessert that could be any better tasting than these. I used paper cupcake cups and a cupcake pan ... the paper lined pans seemed to make just about perfect sized tarts. They certainly didn't last long in these parts, although theoretically they can be covered and frozen for up to a week.

A note about the dehydrated bananas ... these need to be just dehydrated enough to take some of the moisture out but not hard. I dehydrated my gently for about 6 hours and that seemed to work out well.


ingredients
  • 6 dates ($3.00)
  • 1/2 cup walnuts ($.50)
  • 1/2 cup finely shredded coconut ($1.00)
  • 2 tablespoons coconut oil
  • 2 tablespoons agave
  • pinch salt
  • 2 avocados ($1.49)
  • 3 bananas, dehydrated ($.45)
  • 4 limes, juice and zest ($2.00)
  • 4 tablespoons agave ($.40)

directions
  1. Make the crusts first. In a food processor with the "S" blade, process the dates until mush. 
  2. Add the coconut, coconut oil, agave, and salt and process until it begins to clump. 
  3. Last, add the walnuts and process until the walnuts are fully incorporated and the mixture sticks together.
  4. Divide the crust mixture evenly into and press into the bottom and sides of eight paper lined cupcake cups. 
  5. Put in the freezer for about a half hour, until firm.
  6. For the filling, in the food processor with the "S" blade, process the avocados, bananas, lime juice and zest, and agave. It takes a minute or two, but this will become velvety smooth and the consistency of thick pudding.
  7. Spoon the filling into the tart crusts and chill well before serving.














    lime

    Timofei Shatrov: Previewing images in and out of SLIME REPL

    As any Common Lisp coder knows, a REPL is an incredibly useful tool. It can be used not just for development, but for running all sorts of tasks. Personally, I don't bother making my Lisp tools into executable scripts and just run them directly from SLIME. As such, any operation that requires leaving the REPL is quite inconvenient. For me, one such operation was viewing image files, for example in conjunction with my match-client:match tool. So lately I've been researching various methods to incorporate this functionality into the normal REPL workflow. Below, I present 3 methods that can be used to achieve this.

    Open in external program

    This one's easy. When you want to view a file, launch an external process with your favorite image viewer. On Windows a shell command consisting of the image filename would launch the associated application, on Linux it's necessary to provide the name of the image viewer.

    (defvar *image-app* nil) ;; set it to '("eog") or something
    
    (defun view-file-native (file)
      (let ((ns (uiop:native-namestring file)))
        (uiop:launch-program (if *image-app*
                                 (append *image-app* (list ns))
                                 (uiop:escape-shell-token ns)))))
    

    Note that uiop:launch-program is used instead of uiop:run-program. The difference is that launch- is non-blocking - you can continue to work in your REPL while the image is displayed, whereas run- will not return until you close the image viewer.

    Also note that when the first argument to run/launch-program is a string, it is not escaped, so I have to do it manually. And if the first argument is a list, it must be a program and a list of its arguments, so merely using (list ns) wouldn’t work on Windows.

    Inline image in REPL

    The disadvantage of the previous method is that the external program might steal focus, appear on top of your REPL and disrupt your workflow. And it's well known that Emacs can do everything, including viewing images, so why not use that?

    In fact, SLIME has a plugin specifically for displaying images in REPL, slime-media. However it’s difficult to find any information on how to use it. Eventually I figured out that SWANK (SLIME’s CL backend) needs to send an event :write-image with appropriate arguments and slime-media's handler will display it right in the REPL. The easiest way is to just send the file path. The second argument is the resulting image's string value. If you copy-paste (sorry, "kill-yank") it in the repl, it would act just like if you typed this string.

    (swank::send-to-emacs '(:write-image "/path/to/test.png" "test"))
    

    You can even send raw image data using this method. I don't have anything on hand to generate raw image data so here's some code that reads from a file, converts it to a base64 string and sends it over SWANK.

    (with-open-file (in "/path/to/test.png" :direction :input  :element-type '(unsigned-byte 8))
                    (let* ((arr (make-array (file-length in) :element-type '(unsigned-byte 8)))
                           (b64 (progn (read-sequence arr in) (cl-base64:usb8-array-to-base64-string arr))))
                      (swank::send-to-emacs `(:write-image ((:data ,b64 :type swank-io-package::png)) "12345"))))
    

    Note that the first argument to :write-image must be a list with a single element, which is itself a plist containing :data and :type keys. :data must be a base64-encoded raw image data. :type must be a symbol in swank-io-package. It’s not exactly convenient, so if you’re going to use this functionality a helper function/macro might be necessary.

    Image in a SLIME popup buffer

    Inline images are not always convenient. They can’t be resized, and will take up as much space as is necessary to display them. Meanwhile EMACS itself has a built-in image viewer (image-mode) which can fit images to width or height of a buffer. And SLIME has a concept of a “popup buffer” which is for example used by macroexpander (C-c C-m) to display the result of a macro expansion in a separate window.

    Interestingly, slime-media.el defines an event :popup-buffer but it seems impossible to trigger it from SWANK. It is however a useful code reference for how to create the popup buffer in ELisp. This time we won’t bother with “events” and just straight up execute some ELisp code using swank::eval-in-emacs. However by default, this feature is disabled on Emacs-side, so you’ll have to set Emacs variable slime-enable-evaluate-in-emacs to t in order for this method to work.

    Also Emacs must be compiled with ImageMagick for the resizing functionality to work.

    Anyway, the code to view file in the popup buffer looks like this:

    (defun view-file-slime (file &key (bufname "*image-viewer*"))
      (let ((ns (namestring file)))
        (swank::eval-in-emacs
         `(progn
            (slime-with-popup-buffer (,bufname :connection t :package t)
              (insert-image (create-image ,ns))
              (image-mode)
              (setf buffer-file-name ,ns)
              (not-modified)
              (image-toggle-display-image))
            ;; try to resize the image after the buffer is displayed
            (with-current-buffer ,bufname (image-toggle-display-image))))))
        ))
    
    

    Arriving to this solution has required reading image-mode’s source code to understand what exactly makes image-mode behave just like if the image file was opened in Emacs via C-x C-f. First off, image-mode can be a major and a minor mode - and the minor mode is not nearly as useful. slime-with-popup-buffer has a :mode keyword argument but it would cause image-mode to be set before the image is inserted, and it will be a minor mode in this case! Therefore (image-mode) must be called after insert-image.

    Next, the buffer must satisfy several conditions in order to get image data from the filename and not from the buffer itself. Technically it shouldn’t be necessary, but I couldn’t get auto resizing to work when data-p is true. So I set buffer-file-name to image’s filename and set not-modified flag on.

    Next, image-toggle-display-image is called to possibly resize the image according to image-mode settings. It's called outside of slime-with-popup-buffer for the following reason: the buffer might not yet be visible and have any specific dimensions assigned to it, and therefore resizing will do nothing.

    Here’s an example of how calling this function looks in Emacs.

    The position of the popup buffer depends on whether the original Emacs window is wide enough or not. I think it looks better when it’s divided vertically. Use M-x image-transform-fit-to-height or M-x image-transform-fit-to-width to set up the auto-resizing method (it gets remembered for future images). Unfortunately there’s no way to fit both height and width, at least with vanilla Emacs. I prefer fit-to-width because in case the image is too tall, it is possible to scroll the image vertically with M-PgDn and M-PgUp from the other buffer. Unlike other image-mode buffers, this buffer supports a shortcut q to close itself, as well as various SLIME shortcuts, for example C-c C-z to return to the REPL.

    That's it for now, hope you enjoyed this overview and if you happen to know a better way to display images in Emacs, I would be interested to hear about it.




    lime

    Nice compliment




    lime

    Nickelodeon debuts first footage of iconic green slime in space

    Nickelodeon used its Kids' Choice Awards show broadcast to premiere the first footage of its trademark green slime floating on board the International Space Station.




    lime

    'Lean on Me' - Limerick online voucher initiative

    Their doors may be closed, but Limerick businesses are receiving support from their customers who are generating cashflow by buying vouchers online.




    lime

    Coronavirus travel plans: Real dead ringers foreign climes you love



    THE VINEYARDS of Italy and the waterways of Holland may appear to be temporarily out of reach but don't despair, we've got their equivalent, and more, in our backyard waiting for us when the coronavirus lockdown is lifted...




    lime

    Limerick To Get New Multi-Million Euro Production Studio

    Plans for a new multi-million euro film production hub in County Limerick have been set in motion. An agreement has been arranged between Limerick City and County Council and Ardmore Studios, which in the past has provided facilities for several popular film and television productions such as ‘Braveheart’, ‘Excalibur’, ‘The Tudors’ and ‘Camelot’, and more recently for ‘Frank’ and ‘Penny Dreadful’.




    lime

    Evidence for vitamin D supplimentation

    Despite high quality systematic reviews reporting ineffectiveness, many guideline groups continue to recommend vitamin D supplementation (with or without calcium) for fall or fracture prevention. Recently Public Health England recommended that everyone needs vitamin D equivalent to an average daily intake of 10 μg (400 IU) to protect bone and...






    lime

    Sesame, honey, ginger and soy grilled salmon with lime

    Atlantic Salmon is Australia's most popular farmed fish and is a healthy weekly staple for many people. This recipe offers a marinade more commonly thought of for chicken however is simply delicious with salmon. Enjoy with a fresh local limes, which are in season from early April to mid September.




    lime

    Eucalyptus smoked Marburg emu fillet, beets, macadamia plus Lilly Pilly and finger lime spritzer

    Delicious Australian dish with fresh Lilly Pilly and finger lime spritzer.




    lime

    Du diabète phosphatique : recherches sur l'élimination des phosphates par les urines, conditions physiologiques modifiant l'élimination des phosphates, influence du régime alimentaire, variations pathologiques / par L.-J. Teiss

    Paris : J.-B. Baillière, 1877.




    lime

    Élémens d'histoire naturelle médicale : contenant des notions générales sur l'histoire naturelle, la description, l'histoire et les propriétés de tous les alimens, médicamens, ou poisons, tirés des

    Paris : Béchet jeune, 1838.




    lime

    Rassegna trimestrale BRI settembre 2017: Le prospettive positive in un contesto di bassa inflazione alimentano l'assunzione di rischio

    Italian translation of the BIS press release about the BIS Quarterly Review, September 2017




    lime

    Codex Alimentarius: protecting health, facilitating trade

    Eradicating world hunger can only be achieved if food is safe, nutritious and of good quality. Eating unsafe food increases the chances of contracting diseases and can be, in some cases, deadly. Unsafe food can also lead to rejections causing food to be wasted, which then impacts on food security. One thing is certain: there can be no food security [...]




    lime

    Reducir la deforestación e incrementar captura de CO2 en el suelo, una estrategia climática y de seguridad alimentaria

    Source: El Periódico - Las políticas climáticas que se centran en la agricultura y los bosques podrían llevar al aumento de los precios de los alimentos, pero reducir la deforestación e incrementar la captura de carbono en la agricultura podría reducir significativamente las emisiones de gases de efecto invernadero, evitando riesgos para la seguridad alimentaria, según un nuevo estudio publicado en 'Environmental Research Letters'.




    lime

    Intel XDK Update - HTML5 Games, Sublime Text* & Easier to Get Started

      We are gearing up for two of the biggest shows of the year: Game Developers Conference (GDC) in San Francisco and Mobile World Conference (MWC) in Barcelona, Spain - both the week of March 2. Come loo...




    lime

    How to use Intel XDK plugins for Sublime Text

      Rejoice Sublime Text* users, you can now automate Intel® XDK tasks directly from Sublime Text. With the new plugin for the Intel XDK, you can edit your code in Sublime Text and launch the editor,...




    lime

    A Specman/e Syntax for Sublime Text 3

    We're happy to have guest blogger Thorsten Dworzak, Principal Consultant at Verilab GmbH, describe how he added Specman/e syntax to Sublime Text 3:

    According to the 2018 StackOverflow Developer Survey, the popularity of development environments (IDEs, Text Editors) among software developers shows the following ranking:

    1. Visual Studio Code 34.9%
    2. Visual Studio 34.3%
    3. Notepad++ 34.2%
    4. Sublime Text 28.9%
    5. Vim 25.8%
    6. IntelliJ 24.9%
    7. Android Studio 19.3%
    8. (DVT) Eclipse 18.9%
    1. Emacs 4.1%

    Of these, only Vim, (DVT) Eclipse, and Emacs support editing in e-language (at least, last time I checked). Kate, which comes with KDE and also has a Specman mode, is not on this list.

    I started using Sublime Text 3 some time ago. It offers packages that support a number of programming languages.

    Though there is an e-language syntax available from Tsvi Mostovicz, it is unfinished work, and there are many syntactic constructs are missing. So, I created a fork of his project and finished it (it will eventually be merged back here).

    It is a never-ending task because my code base for testing is limited and e is still undergoing development. The project is available through ST3's Package Control and you can contribute to it via Github.

    I am eagerly waiting for your pull requests and/or comments and contributions!





    lime

    LimeSurvey 4.1.11 Path Traversal

    LimeSurvey version 4.1.11 suffers from a File Manager path traversal vulnerability.




    lime

    Ho Chi Minh Limeade

    A refreshing alternative to Vietnamese coffee, this drink, (sura da chanh), is served at Cheo Leo Cafe, the oldest coffee shop in Ho Chi Minh City. When stirred until the ice melts a bit the drink is refreshing and not too sweet. From Milk Street. -- posted by Chef PotPie




    lime

    HARMAN Innovations in the Limelight at New York Auto Show

    NEW YORK – Building on a busy year of new automotive technology introductions, HARMAN, the premium global audio, visual, infotainment and enterprise automation group (NYSE:HAR), will have a strong presence at the 2015 New York International Auto Show. From the company’s Clari-Fi™ digital music restoration technology to its next-generation QuantumLogic™ Surround Sound – HARMAN technology and solutions will be showcased in a host of new vehicles debuting at the show, highlighting HARMAN’s longstanding automotive partnerships and unmatched industry–leading innovations.




    lime

    Cloudy Climes May Up Risk of Pancreatic Cancer: Study

    Title: Cloudy Climes May Up Risk of Pancreatic Cancer: Study
    Category: Health News
    Created: 4/30/2015 12:00:00 AM
    Last Editorial Review: 4/30/2015 12:00:00 AM




    lime

    Exceptionally well-preserved Permocalculus cf. tenellus (Pia) (Gymnocodiaceae) from Upper Permian Khuff Formation limestones, Saudi Arabia

    An exceptionally well-preserved specimen of the articulated rhodophyte Permocalculus, compared with P. tenellus sensu Elliott, 1955, is described from fine-grained Upper Permian limestones of the Khuff Formation of Saudi Arabia. Longitudinal medullary and sheaf-like cortical filaments extend through the uniserial series of elongate-globular, concave- and convex-terminating, interlocking segments for which they are interpreted to have functioned in articulation. The filaments tend to splay and branch laterally into the cortex where they terminate at the pores. At the terminal aperture, the filaments extend as bifurcating and possibly trifurcating branches and may serve as the origin of a new segment. Numerous elongate-globular chambers, up to five in each row and intimately involved with the filaments, are developed in the outer medulla and are considered to represent reproductive sporangia. The specimen is considered to have occupied predominantly low-energy, normal to slightly elevated salinity, shallow conditions within the subtidal regime of a lagoon.




    lime

    Laughter in the Commons as Matt Hancock compliments backbench MP Julian Lewis on 'extraordinary' hair

    The House of Commons echoed with peals of laughter today as Matt Hancock complimented a fellow Tory MP on his lockdown hairdo.




    lime

    Samuel L Jackson yells compliments at neighbours on Some Good News: 'Hey! Your shirt matches your dog!'

    Actor took part in the latest episode of Krasinski's YouTube show




    lime

    Manchester United star Bruno Fernandes explains how he fooled City defence with sublime derby free-kick

    Bruno Fernandes has revealed that his instinctive free-kick to tee up a goal for Anthony Martial against rivals Manchester City was entirely unplanned.




    lime

    Lime lands $170M investment and third CEO in three years

    Lime landed a $170 million investment round led by Uber and also promoted one of its top executives as CEO, Lime said Thursday. Under the deal, Lime will take over ownership of Uber’s scooter and bike business JUMP and the two companies will feature each other’s app on their respective service, Lime said.  San Francisco-based Lime also promoted its global head of operations and strategy Wayne Ting as CEO. Ting joined Lime in 2018 and previously spent five years at Uber as its Northern California…




    lime

    Achat local et tendances alimentaires

    Cette semaine, on découvre les produits du Québec qui s’inscrivent dans les tendances alimentaires de l’année.




    lime

    Steven T Gill returns to Alimera as VP, Thought Leader Engagement

    Ophthalmology specialist Alimera Sciences has announced that Steven T Gill is to return to the company in the newly created role of Vice President, Thought Leader Engagement.

    Gill had previously served at Alimera as its Senior Director, Thought Leader Liaison, before leaving the company for Novartis, where he most recently held the position of Associate Director, Thought Leader Liaison at Novartis US.

    read more





    lime

    Toyota's Thermo-Tect Lime Green paint saves energy and lives. Why isn't every car this color?

    It's ugly, but it sure can keep that car from cooking, and it is going to be seen from a long distance.




    lime

    Fighting Slime Crimes in Florida

    Florida's waterways are rapidly become gross slimy things.




    lime

    Slime mold proves that intelligence isn't that difficult

    The world's weirdest living thing should encourage us to rethink what we think about intelligence.