Search results for all lists

10000 messages found
Sort by
List: ctbirds@lists.ctbirding.org
From: anthony
 
thoughts on chasing the Steller's Eagle
Sat, Jan 1, 2022 1:43 PM
| | Piense en verde - Antes de imprimir este email hágase la siguiente pregunta, ¿es necesario? | ** BUY TWO duck stamps at the Post Office and conserve habitat ** -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus
List: tacomaart@list.cityoftacoma.org
From: Ellen Ito
 
Free drop-in seed paper workshop September 24th!
Wed, Sep 14, 2022 10:17 PM
https://www.nvichayapai.com/ https://www.instagram.com/nvichayapai/?hl=en
List: tacomaart@list.cityoftacoma.org
From: Kat Bosold
 
New Jobs Available at Children's Museum of Tacoma
Fri, Jul 26, 2019 10:43 PM
Toddler Teacher To view and apply for any of these positions, please navigate to: https://www.indeedjobs.com/childrens-museum-of-tacoma/_hl/en?cpref=JXWAtnzf3XWjLOi4YeVNLs_1WAXHb5RLgp8kTnKi5cU <https://www.playtacoma.org/employment> We look forward to hearing from you! -- *HONOR CHILDREN.
List: tacomaart@list.cityoftacoma.org
From: Kat Bosold
 
Children's Museum of Tacoma is Hiring!
Mon, Jul 29, 2019 4:12 PM
Toddler Teacher To view and apply for any of these positions, please navigate to: https://www.indeedjobs.com/childrens-museum-of-tacoma /_hl/en?cpref=JXWAtnzf3XWjLOi4YeVNLs_1WAXHb5RLgp8kTnKi5cU <https://www.playtacoma.org/employment> We look forward to hearing from you! -- *HONOR CHILDREN.
List: time-nuts@lists.febo.com
From: Javier Herrero
 
NTP, Oncore and Allan deviation
Wed, Oct 8, 2008 10:28 AM
The board is our H8606, http://www.hvsistemas.com/en/prod/H8606.html , with the standard crystal oscillator replaced with a FOX924B TCXO, http://www.foxonline.com/pdfs/fox924.pdf .
List: usrp-users@lists.ettus.com
From: Samuel Prager
 
Re: [USRP-users] Question about the IMU (MPU-9150) on the E310
Tue, Nov 12, 2019 10:50 PM
> http://lists.ettus.com/mailman/listinfo/usrp-users_lists.ettus.com > > > -- > Michael Dickens > Ettus Research Technical Support > Email: support@ettus.com > Web: https://ettus.com/ > _______________________________________________ > USRP-users mailing list > USRP-users@lists.ettus.com > https://urldefense.proofpoint.com/v2/url?
List: time-nuts@lists.febo.com
From: Bob Camp
 
Re: [time-nuts] keeping Arduino timekeeping and clock synced up
Mon, Jan 20, 2014 12:45 AM
. >> >> Use a high-res Arduino web cam facing the wall of clocks and write OHR (Optical clock-Hand Recognition) code. That way its a single robust solution for setting it the first time, restarting it on power failure, resyncing after replacing a failed clock, or self-correcting after any mechanical glitch.
List: pjsip@lists.pjsip.org
From: Imad Khazali
 
Possible bug in NAT64 Implementation - STUN IPv4 resolution fails causing 70 sec delay in starting a call
Fri, Jul 6, 2018 3:33 AM
I put a small hack just to disable the IPv4 resolution and only use IPv6 if the network is NAT64. Could please verify if this a bug? why do PJSIP always try IPv4 on a NAT64 network ... it always failing and either gets into a deadlock or a timeout? Thanks, Imad
List: discuss@lists.openscad.org
From: Torsten Paul
 
Re: [OpenSCAD] recursion limit on concat()
Tue, Oct 15, 2019 12:30 AM
> I compared run time performance and the run time of the > iterative solution is not faster than the tail recursive > one (using the "assert" hack). That's sort of disappointing. How could it be faster? The resulting evaluation is exactly the same. ciao, Torsten.
List: discuss@lists.openscad.org
From: Ronaldo Persiano
 
Re: [OpenSCAD] Functions literals / higher order functions
Tue, Nov 26, 2019 11:58 AM
Yet another hack that works: function move(a, g) = function(x) let( v = g(x+a) ) v; g1 = function(x) x; g2 = move(2, g1); g3 = move(3, g2); echo(g3_x=g3); echo(g3_2=g3(2)); Compiling design (CSG Tree generation)... ECHO: g3_x = function(x) let(v = g((x + a))) v ECHO: g3_2 = 7 Compiling design (CSG Products generation)...