Thursday, June 30, 2022

The Lasting Legacy of the 1913 Bion Arnold Report

The Lasting Legacy of the 1913 Bion Arnold Report
By Jeremy Menzies

Looking back at San Francisco’s transportation history, one study from 1913 has impacted the city’s transit system for over 100 years. Commissioned by city officials, the “Report on the Improvement and Development of the Transportation Facilities of San Francisco” by engineer Bion J. Arnold, is a comprehensive study of transit in the city. The 450-page report covers everything from rush hour congestion to plans for a Market Street subway. This document is essential to understanding our city’s transportation history and some of its recommendations are still in use today.

Black and white overhead view of street with horse-drawn and electric streetcars, horse drawn wagons, pedestrians, and buildings. Business signage includes Patrick and Company and Fly Trap.

This 1910 view of Market and Sutter streets shows just some of the complex issues that the Arnold report addressed.

 

Building Muni

One section of the report is entirely dedicated to specifications for building and improving the city’s cable and street cars. Muni’s very first streetcars, frequently called “Arnold” cars, were specified based on construction cost, passenger comfort, ease of operation, and even the unique climate of San Francisco. Today, historic Streetcar 1 is one of these streetcars that still runs in special service.

front and side view of old-style streetcar. Route reads "A". Headsign reads "Ferries". Sign reads "Enter at rear". Car is branded "Municipal Railway".

This photo of one of Muni’s first streetcars was used on page 178 of the report and shows the open end sections, boarding platforms, and “automatic” ventilation features specified by Arnold.

In addition to the vehicles, Muni’s earliest lines, and service to the 1915 Panama Pacific Exposition, were all directly influenced by the report. Versions of the A, B, C, E, F and H streetcar lines all appear in the report. It also influenced later lines like the J, K, L, and M.

group of people walking away from streetcar. car is headsigned "Exposition".

Passengers alight from a Muni streetcar at the 1915 world’s fair. Arnold dedicated an entire section of the report to discussing service to the fair, which was provided by Muni and the United Railroads Co.

 

Tunnels & Streets

The report also detailed several tunnels and street changes throughout the city meant to speed travel across town. Of the more than ten tunneling projects proposed, the Stockton Street, Twin Peaks, and Sunset tunnels were all built by 1930. The Broadway tunnel followed in the early 1950s.

cable car in foreground with excavation, bulldozer, and tunnel entrance in background. car is branded "Municipal Railway" and signed "Powell and Mason streets".

A cable car on Mason Street passes by the Broadway Tunnel, still under construction in this 1951 shot.

 

Among the street changes proposed, the extension of Market Street over Twin Peaks was perhaps the largest. This extension was built alongside the Twin Peaks Tunnel in 1917-18.

Improving and Expanding Transit

Arnold also called for a consolidated transit system and a subway under Market Street, both of which were achieved by the mid-20th Century.  In 1944, voters approved the purchase of the Market Street Railway Company, the largest transit operator in SF. This merger unified public transit service under Muni. Instead of navigating two competing services, riders finally had a one-fare ride to virtually anywhere in town. Consolidation also allowed improvements to be made across the system.

Drawing of subway station showing streetcars, platforms, signage, people and tracks. Drawing is titled "Track level in typical station. Proposed San Francisco subway. Public Utilities Commission." Signs in drawing read "Fifth Street" as station name, directional signs reading "To 5th Street", "Exit to 5th", "To Powell Street". Streetcar headsign reads "Ocean Avenue".

Bion Arnold’s Market Street subway plans were just one of many ideas floated over the years. This drawing from 1937 shows a proposed subway station at Powell and Market streets.

 

Arnold’s report is one of the earliest documents to include clear plans for a Market Street subway. 50 years later when Bay Area voters approved general obligation bonds to build BART & Muni Metro, elements of Arnold’s subway showed up in the design.

Ongoing Legacy

Even today, suggestions from the report can be found in the SFMTA’s Muni Forward and Vision Zero Quick Build programs. Moving and consolidating stops, increasing boarding area size, building transit boarding islands, and all-door boarding are all mentioned in the 1913 document.

street-level transit platform with train and people waiting

A common sight today, double-length platforms and two-car trains like those pictured here were just two improvements to transit service recommended by the Arnold report.

The Arnold report is one of the most extensive studies of transportation in San Francisco. 109 years later, many of the changes recommended by the report have become normal parts of our streets and transit system.



Published June 30, 2022 at 07:29AM
https://ift.tt/vFwVluS

Show HN: Let’s Gym, the app that lets you find a nearby Gym Partner https://ift.tt/Apt0wd1

Show HN: Let’s Gym, the app that lets you find a nearby Gym Partner Hi All, I recently launched the beta version of Let’s Gym and looking for people interested in using this app in hopes to get feedback. The app idea came up after I moved to a new city and all my buddies back home were the people I worked out with daily. My drive to the gym suffered since the workout “comradely” was no longer there. After speaking to most people around the city it seem it was a common theme of people moving here and not having a workout partner. There are facebook groups in some cities that try and alleviate this issue but the problem was that you couldn’t filter on the workout goal of the person and responses back was more of a miss than a hit using FB. We are in a very early beta in select cities in the US and would love feedback. https://www.letsgym.io/ June 30, 2022 at 03:44AM

Show HN: Calculator for US Individual Income tax, from 1970-present https://ift.tt/7Xki4UN

Show HN: Calculator for US Individual Income tax, from 1970-present I wanted to share a simple web app I created recently, which lets you estimate income taxes owed in the US: https://taxsim.app All the calculations occur directly in the browser, and are powered by a Fortran program that has been converted to WASM using emscripten. This calculator was originally developed in the 1970s [1] by the non-profit National Bureau of Economic Research. NBER has been maintaining this F77 codebase for the last 50 years, and uses it primarily for academic research on tax policy. The Fortran source code itself is over 1MB of text, because it codifies both federal and all 50 states' tax laws for each of the last 62 years. I first learned about NBER TAXSIM [2] a few months ago via an interesting paper they published "Automatic Tax Filing: Simulating a Pre-Populated Form 1040" [3]. The Fortran code itself is not open-source, but is available on request for research purposes. I reached out to NBER and proposed compiling it to WASM, so it could be run directly in a browser. With relatively little effort I was able to create a js/wasm version [4], thanks in huge part to previous open-source work [5]. This WASM build now powers https://taxsim.app, which is my attempt to create an interactive UI to allow for easier exploration of the US tax code. Specific tax scenarios can also be shared easily, by simply copying the browser URL. The code for this webapp is also open-source [6]. This was my first time experimenting with WASM, and I am already a huge fan. Not only was I able to take a 60 year old codebase and get it working on every modern browser and device, this work is also now benefiting the academic community. For example, the js/wasm can be run directly in V8, which means it can also now be run locally within R using libv8 [7]. Previously most researchers were uploading their tax scenarios to NBER's servers via ftp/ssh/http. [1] https://ift.tt/ApEJnLc [2] https://ift.tt/YnhQuky [3] https://ift.tt/gvayZ8z [4] https://ift.tt/hnNAwqc [5] https://ift.tt/WDFruE1 [6] https://ift.tt/2Tg45in [7] https://ift.tt/1BfZoL5 June 30, 2022 at 02:52AM

Show HN: Sudopad – Private link sharing board for friends https://ift.tt/DKCokdQ

Show HN: Sudopad – Private link sharing board for friends https://sudopad.com June 30, 2022 at 02:36AM

Show HN: Heat Pump Cost Comparison https://ift.tt/LfC90Dp

Show HN: Heat Pump Cost Comparison https://ift.tt/lWFioGt June 30, 2022 at 12:07AM

Show HN: Ploomber Cloud (YC W22) – run notebooks at scale without infrastructure https://ift.tt/UXQnSbO

Show HN: Ploomber Cloud (YC W22) – run notebooks at scale without infrastructure Hi, we’re Ido & Eduardo, the founders of Ploomber. We’re launching Ploomber Cloud today, a service that allows data scientists to scale their work from their laptops to the cloud. Our open-source users ( https://ift.tt/QqpTvUm ) usually start their work on their laptops; however, often, their local environment falls short, and they need more resources. Typical use cases run out of memory or optimize models to squeeze out the best performance. Ploomber Cloud eases this transition by allowing users to quickly move their existing projects into the cloud without extra configurations. Furthermore, users can request custom resources for specific tasks (vCPUs, GPUs, RAM). Both of us experienced this challenge firsthand. Analysis usually starts in a local notebook or script, and whenever we wanted to run our code on a larger infrastructure we had to refactor the code (i.e. rewrite our notebooks using Kubeflow’s SDK) and add a bunch of cloud configurations. Ploomber Cloud is a lot simpler, if your notebook or script runs locally, you can run it in the cloud with no code changes and no extra configuration. Furthermore, you can go back and forth between your local/interactive environment and the cloud. We built Ploomber Cloud on top of AWS. Users only need to declare their dependencies via a requirements.txt file, and Ploomber Cloud will take care of making the Docker image and storing it on ECR. Part of this implementation is open-source and available at: https://ift.tt/OEG9Dqy Once the Docker image is ready, we spin up EC2 instances to run the user’s pipeline distributively (for example, to run hundreds of ML experiments in parallel) and store the results in S3. Users can monitor execution through the logs and download artifacts. If source code hasn’t changed for a given pipeline task, we use cached artifacts and skip redundant computations, severely cutting each run's cost, especially for pipelines that require GPUs. Users can sign up to Ploomber Cloud for free and get started quickly. We made a significant effort to simplify the experience ( https://ift.tt/oKxWvPi ). There are three plans ( https://ift.tt/lTrX9nD ): the first is the Community plan, which is free with limited computing. The Teams plan has a flat $50 monthly and usage-based billing, and the Enterprise plan includes SLAs and custom pricing. We’re thrilled to share Ploomber Cloud with you! So if you’re a data scientist who has experienced these endless cycles of getting a machine and going through an ops team, an ML engineer who helps data scientists scale their work, or you have any feedback, please share your thoughts! We love discussing these problems since exchanging ideas sparks exciting discussions and brings our attention to issues we haven’t considered before! You may also reach out to me at ido@ploomber.io. June 29, 2022 at 08:34PM

Show HN: ColorTiles Browser Game https://ift.tt/9LSalV1

Show HN: ColorTiles Browser Game Hello HN! Here is a little game I made, colorful tiles must be placed next to other tiles and match in symbol or color. This game is inspired by Passage 3 and similar games like Qwirkle, Rummy or Dominoes. There exist some browser-based versions here and there, but I wasn't completely satisfied with any of them, so I made my own. This is optimized for a broad range of screen sizes and auto-rotates the playing field for narrow (portrait) viewports. As I've discovered with my own parents, folks who enjoy playing Solitaire, Hearts and similar games might enjoy this as well, so gladly spread the word. Have fun and feedback is appreciated! :) https://colortiles.net/ June 29, 2022 at 08:08PM

Wednesday, June 29, 2022

Show HN: Create a Step-by-Step Walkthrough of a Pull Request https://ift.tt/KEBmyQt

Show HN: Create a Step-by-Step Walkthrough of a Pull Request https://www.gitline.io/ June 29, 2022 at 07:06PM

Show HN: Privately own or co-use DialMe phone numbers to receive SMS on web https://ift.tt/mXisqK0

Show HN: Privately own or co-use DialMe phone numbers to receive SMS on web Use brand-new or co-use free SIM-based phone numbers to receive texts to your URL without providing your ID. Don't wait for shipping or pay taxes and activation fees for your DialMe phone numbers. Texts are visible on your dashboard within seconds. https://www.dialme.shop June 29, 2022 at 06:11PM

Show HN: We created a data-driven sticky note powered by AI https://ift.tt/TYWsKwr

Show HN: We created a data-driven sticky note powered by AI https://www.notably.ai/ June 29, 2022 at 05:34AM

Show HN: The Fastest Slider library for high performance websites https://ift.tt/NnGiTW7

Show HN: The Fastest Slider library for high performance websites https://ift.tt/KviAO3u June 29, 2022 at 01:42AM

Show HN: Flookup – Data cleaning by fuzzy matching https://ift.tt/w6OpzhR

Show HN: Flookup – Data cleaning by fuzzy matching Hello HN! It has been about three years since I launched this current iteration of my Google Sheets add-on called Flookup. I'm a solo developer and, currently, I handle absolutely everything to do with Flookup from writing code, designing the user interface, replying support emails and even marketing. It is quite a lot of work but very satisfying when I see how helpful it has been to my userbase. Before Flookup, there was only one prominent Google Sheets add-on that could be used for data cleaning (to a certain degree) but, luckily for men, it had left a gap in its functionality that I was very glad to fill. To develop Flookup, I had to write a new algorithm from the ground up in order to make it more useful to my userbase. Originally, this userbase comprised me and a small team at an organisation I was working for but, today, that number has grown to at least 10,000 Daily Active Users all over the world (except Antarctica). What is Flookup? It is an add-on that uses fuzzy matching algorithms to power its data cleaning functions. Flookup's functions allow you to match or merge tables without worrying about how uniform your data is. You can also highlight and remove duplicates even if the text contains typos, punctuations marks or spelling differences. So, today, I'm inviting you to try it out and let me know what you think... here is the link: > https://ift.tt/xb7M0yO Your free trial is free and unlimited. Thank you; I hope you like it! June 29, 2022 at 01:37AM

Show HN: Inngest – an open-source event-driven queue https://ift.tt/LgPWlmB

Show HN: Inngest – an open-source event-driven queue Hi HN! We’re Tony and Dan, the founders of Inngest - https://www.inngest.com. We’re an event-driven queueing system. Existing queueing solutions have pretty terrible UX. We solve this by making it simple for you to write delayed or background jobs by triggering step functions from JSON-based events. At a high level, Inngest does two things: - Ingest events from your systems via HTTP (pun intended) - Triggers serverless functions in response to specific events — async, either immediately or delayed. This allows you to build out async functions (eg. background jobs, handling webhooks) much faster, without worrying about config, queues, scaffolding, boilerplate, or infra. Because of the decoupling, it also means cleaner code. We talk about the benefits here [1]. Previously, Tony ran engineering at https://ift.tt/7noytCv and Dan was the CTO of https://buffer.com/. At both places, we had to build and manage a lot of complex async logic. You could say that Buffer is one big queue, and at Uniform we had lots of logic to run for compliance… managed via queues. So we're very familiar with the problem. Technicals and how it’s different: Functions are declarative. They specify which events trigger them, with optional conditionals. This is great because you can then deploy functions independently from your core systems, and you get things like canary deploys, plus immediate rollbacks. Each function can have many steps, represented as a DAG. Each step can be any code — an AWS function, custom code in a container, an HTTP call, etc. Edges of the DAG can also have conditions for traversal, and can “pause” until another event comes in, with TTLs and timeout (eg. after signup, run step 1, wait for a user to do something else, then run the next step). Because the functions are event driven, we also statically type and version events for you. This lets you inspect and generate SDKs for events, or to fail early on invalid data. It also lets you replay functions, test with historical data, or deploy functions and re-run historical events. Architecturally, we’ve focused on simple standards that are easy to learn and adopt. Events are published via HTTP requests. Functions use args & stdout. You can get started without knowing any implementation details. You only need to send events via POST requests and write functions that react to them — nothing else required. What people use us for: - A replacement for their current queueing infrastructure (eg. celery). - Running functions after receiving webhooks - Running business logic when users perform specific actions (eg. publishing things at a specific time) - Handling coordinated logic (eg. when a user signs up, wait for a specific event to come in then run another step) Where we’re at: We’ve open sourced our core execution engine [2], which allows you to run an in-memory environment locally with a single command. We’re working on opening more and more of the platform to allow you to self host — that’s currently our main goal. Right now, you can use us “serverless”. Because we record function state, we charge per ‘step’ of a function invoked. We’ve documented our core OS architecture [3], and we’ve also released the function spec and interfaces in our repo. We’ve talked more about about goals, vision, and why in our open sourcing post [4]. There’s also a minimal demo w/ a Next.js backend [5]. We know we’re far from feature complete. There’s so much more we can do. If there’s things you’d like to see, feedback, or improvements, please let us know — we’d love to hear from you and make this better, and get your initial thoughts. [1]: https://ift.tt/tbIp921 [2]: https://ift.tt/Dp7GVhv [3]: https://ift.tt/7xZfKSq [4]: https://ift.tt/bFAVIHE [5]: https://ift.tt/gjYRoNJ June 28, 2022 at 11:19PM

Show HN: We made a fast audio editor for podcasting https://ift.tt/qToWcmQ

Show HN: We made a fast audio editor for podcasting https://teapodo.com/ June 28, 2022 at 02:14PM

Tuesday, June 28, 2022

Show HN: Bible Semantic Search https://ift.tt/wFTd7zC

Show HN: Bible Semantic Search https://ift.tt/EcuLvhd June 28, 2022 at 08:18AM

Show HN: I stripped DALL·E Mini to its bare essentials and converted it to Torch https://ift.tt/pt6f3aP

Show HN: I stripped DALL·E Mini to its bare essentials and converted it to Torch https://ift.tt/EU0pcdD June 28, 2022 at 06:57AM

Show HN: WebExtension Playground https://ift.tt/zZOb9N2

Show HN: WebExtension Playground https://ift.tt/VGJlKae June 28, 2022 at 04:35AM

Show HN: Messy Play Kits Sensory Bins https://ift.tt/uISmecC

Show HN: Messy Play Kits Sensory Bins https://ift.tt/j8YIQPE June 28, 2022 at 06:17AM

Show HN: AirScript – Like Lua, but in Rust, and Different https://ift.tt/D38yaIJ

Show HN: AirScript – Like Lua, but in Rust, and Different https://ift.tt/nVNdbtR June 28, 2022 at 03:48AM

Show HN: [NSFW] Diffusion models for porn generation https://ift.tt/DE1Zgjo

Show HN: [NSFW] Diffusion models for porn generation https://ift.tt/Zpymu9H June 28, 2022 at 01:38AM

Monday, June 27, 2022

Show HN: AI powered food ingredient analysis for healthier shopping https://ift.tt/3Cd5c7R

Show HN: AI powered food ingredient analysis for healthier shopping Itsmyfood is a Calorie Counter App that encourages healthy eating with Food Additive Library for healthy grocery shopping and a meal planner to make healthy meal plans. Users can access the AI-powered food ingredient analysis by simply scanning a barcode. available at https://ift.tt/in56LKI https://ift.tt/gRL1fam June 27, 2022 at 05:32PM

Show HN: Rapidly Develop CRUD Web Apps with Locode https://ift.tt/nGeJ5uz

Show HN: Rapidly Develop CRUD Web Apps with Locode https://www.locode.dev June 27, 2022 at 03:34PM

Show HN: Yboard is a multiplayer desktop-like workspace based on CRDT https://ift.tt/SBKk5wg

Show HN: Yboard is a multiplayer desktop-like workspace based on CRDT I've always been curious about real-time multiplayer user interfaces. When I found out about CRDTs and Yjs[1] I thought they could serve as a solid base for a project like that. So I built this pretty simple desktop-like UI (heavily inspired by lifeat.io) and used Yjs to replicate the whole UI state among multiple peers, creating the experience of a unique interface. Try online: https://yboard.lol [1]: https://ift.tt/5vLNSos https://ift.tt/oybwCsh June 27, 2022 at 01:03PM

Show HN: A framebuffer console viewer, pure Go https://ift.tt/JPRe0mE

Show HN: A framebuffer console viewer, pure Go Another Sunday afternoon project: add some pizzaz to your boring bare metal or virtual machine consoles! Written as a single Go binary; no dependencies. https://ift.tt/NgPXFYd As usual, feedback please! June 27, 2022 at 04:46AM

Show HN: A Working Nintendo Gameboy Backpack https://ift.tt/tSx0Aqr

Show HN: A Working Nintendo Gameboy Backpack https://www.youtube.com/watch?v=hdD7AtGhssI June 27, 2022 at 03:16AM

Show HN: Isthisabearmarket.com https://ift.tt/327nSVe

Show HN: Isthisabearmarket.com Hey HN! Here's a quick sideproject that I've been working on for the last week The market downturn got me thinking about stock price APIs and how I could use them, overall I had a lot of fun writing this up https://ift.tt/a0HzWdI June 27, 2022 at 01:27AM

Show HN: CRProxy is a simple and affordable ngrok alternative https://ift.tt/6TwgbvL

Show HN: CRProxy is a simple and affordable ngrok alternative CRProxy is a new reverse web proxy service. We have a generous free plan that includes the ability to use custom domains and semi-custom sub-domains. We have reasonably priced plans with good bandwidth and no additional usage charges. Please give it a try and let me know what you think. Thank you, David https://crproxy.com June 26, 2022 at 11:19PM

Sunday, June 26, 2022

Show HN: Medots – Cross-platform tool to deploy dot files https://ift.tt/Btd8Ao0

Show HN: Medots – Cross-platform tool to deploy dot files https://ift.tt/JPmfVOa June 26, 2022 at 03:31AM

Show HN: Product Analytics in SQL with dbt https://ift.tt/iEqKbdU

Show HN: Product Analytics in SQL with dbt Hey everyone! Like many data analysts and engineers, I love SQL and the dbt ecosystem. So it bothers me that we have to use separate tools for product analytics. We do our transformations, BI work, and ad-hoc queries in SQL, but when it's time to look at funnels and flows, we have to use (and procure) a separate platform like Mixpanel or Amplitude. This dbt package is a (very rough) start at fixing that. With it, you can create event streams and run funnel analyses via dbt[0]. More features like flows and retention are coming soon! But I'm mostly curious how you all are doing product analytics right now. Are you using a dedicated tool like Amplitude? What could be better? Do you want to do product analytics in SQL in the warehouse or would you rather it live somewhere else? Would love to get your thoughts, and thanks for taking a look! --- 0. (and soon, with dbt Server, in your favorite BI tool or SQL client): https://www.youtube.com/watch?v=MdSMSbQxnO0&ab_channel=dbt https://ift.tt/XSUzhDw June 26, 2022 at 12:53AM

Breaking #FoxNews Alert : Number of dead rises after devastating tornadoes, Kentucky governor announces


from Twitter https://twitter.com/RKarthickeyan1

June 25, 2022 at 11:29PM
via RKarthickeyan1

Show HN: Feather – 90 percent of Bloomberg terminal, for 5 percent of the price https://ift.tt/z90Z8Wu

Show HN: Feather – 90 percent of Bloomberg terminal, for 5 percent of the price Hey, Wanted to share what my friend and I built — Feather. It provides investors with all imaginable financial data, without breaking the bank. Effectively 90 percent of the Bloomberg Terminal, at 5 percent of the price. We just opened sign ups for early access — all you need to sign up is your email address. We’ll open access to the software in order of sign ups, and we’d love to have you onboard. Check it out! https://try-feather.com June 26, 2022 at 12:05AM

Breaking #FoxNews Alert : Biden approves Kentucky disaster declaration after devastating tornado


from Twitter https://twitter.com/RKarthickeyan1

June 25, 2022 at 11:29PM
via RKarthickeyan1

Saturday, June 25, 2022

Show HN: Obsidian – Now on Web with Neverinstall https://ift.tt/7kM0xPR

Show HN: Obsidian – Now on Web with Neverinstall https://ift.tt/vUKQEBx June 25, 2022 at 01:06PM

Show HN: Pathfinding Visualizer https://ift.tt/JzNbeGg

Show HN: Pathfinding Visualizer Decided to remake my old pathfinding project to hexagonal tiles. Pretty happy with how it turned out. Source code: https://ift.tt/tdETgNp https://ift.tt/tWOz0pZ June 25, 2022 at 08:00PM

Show HN: Ferris, social network for IRL activities with your closest friends https://ift.tt/WnzoKAG

Show HN: Ferris, social network for IRL activities with your closest friends https://ift.tt/xkwJe89 June 25, 2022 at 07:30PM

Show HN: Git-bug's reusable data model https://ift.tt/WdHhLZw

Show HN: Git-bug's reusable data model https://ift.tt/oe3muV4 June 25, 2022 at 04:21PM

Show HN: Dismember – Scan memory for secrets and interesting information https://ift.tt/LX6RPIe

Show HN: Dismember – Scan memory for secrets and interesting information https://ift.tt/T5uH2ti June 25, 2022 at 12:37PM

Show HN: Coldbrew – A Web GUI for Homebrew Cask https://ift.tt/7Fa3zyY

Show HN: Coldbrew – A Web GUI for Homebrew Cask https://ift.tt/8kY43Dm June 25, 2022 at 01:50AM

Show HN: Domfetch.com - free tool to find expired domains with history https://ift.tt/mlcn3ut

Show HN: Domfetch.com - free tool to find expired domains with history We have finally launched Domfetch! Domfetch is a free platform to find expired domains. Users can search through domains that are (almost) available for registration. We enrich these domains with extra data to help users find valuable domains. We created this tool because we found the (free) alternatives lacking certain data, such as Moz, Alexa history (we check 5 years of data) & search volume history over a period of 1 year. Let us know what you think! More features and tld's will be added in the near future. https://domfetch.com June 24, 2022 at 04:46PM

Details on Expanded Bus Service Coming July 9

Details on Expanded Bus Service Coming July 9
By Mariana Maguire

The 6 Haight-Parnassus bus climbs a hill

Photo caption: The 6 Haight-Parnassus is one of the Muni bus routes that will be brought back into service July 9, 2022 after being temporarily suspended since March 2020.

On July 9, the next phase of the 2022 Muni Service Network plan will go into effect, focused on expanding bus service including the return of the 2 Sutter, 6 Haight-Parnassus and 21 Hayes (with some route changes), as well as other route extensions and modifications.

Public feedback helped us prioritize bringing back routes and connections many communities rely on. Read more about what we heard from the public and how we incorporated feedback into the 2022 service proposal.

As resources allow, our service changes will continue prioritizing service linking neighborhoods identified by our Muni Service Equity Strategy to essential destinations like hospitals and neighborhood commercial corridors, accommodate changing travel patterns and getting the most of our system. We heard from many seniors and people with disabilities that bringing back the connection to the Jewish Community Center food hub is an important priority, so we are bringing back the 2 Sutter between Presidio Avenue and California Street and the Ferry Plaza at Embarcadero. For service west of Presidio Avenue, customers can take the 1 California, which runs more frequently one block north of Clement Street.

Restored Routes

Route

Details

Frequency

2 Sutter

Restore pre-pandemic route between the Ferry Plaza and Presidio Avenue at California Street, restoring connections to the Jewish Community Center food hub.

Every 20 minutes

6 Haight-Parnassus

Restore pre-pandemic connections in response to community feedback.

Every 20 minutes

21 Hayes

Restore modified pre-pandemic route from St. Mary’s Hospital to Grove and Hyde streets, by Civic Center Station and the Main Library.

Every 20 minutes

Modified Routes

Route

Details

Frequency

23 Monterey

Extend to pre-pandemic route along Sloat Boulevard to the San Francisco Zoo and Great Highway in response to community feedback.

Weekdays every 20 minutes

Weekends every 30 minutes

28 19th Avenue

Extend east of Van Ness Avenue at North Point Street to run between Daly City BART and Powell at Beach streets, providing connections to Fisherman’s Wharf to customers on the westside of the city and who are no longer covered by the 49 Van Ness-Mission.

Weekdays every 12 minutes

Weekends every 15 minutes

43 Masonic

Extend north of Presidio Avenue at California Street to the Presidio, the Marina and Fort Mason on its pre-pandemic route between Fort Mason and Munich Street at Geneva Avenue in response to community feedback.

Weekdays every 12 minutes

Weekends every 20 minutes

49 Van Ness-Mission

Shorten to its previous route between City College and Van Ness Avenue at North Point Street.

Weekdays every 6 minutes

Weekends every 8 minutes

57 Parkmerced

Extend from Eucalyptus Drive and Junipero Serra Boulevard to West Portal Station, restoring the connection to West Portal.

Every 20 minutes

 

58 Lake Merced

Modify to run along Lake Merced Boulevard instead of Sloat Boulevard and Brotherhood Way instead of John Daly Boulevard, from Mission Street and Daly City BART to Stonestown.

Every 30 minutes

66 Quintara

Return to pre-pandemic alignment terminating in the Inner Sunset.

Every 20 minutes

L Bus

Shorten route to run between the SF Zoo and West Portal Station and increase frequency in response to changing trip patterns.

Weekdays every 8 minutes

Weekends every 10 minutes

Looking Ahead

We plan to continue implementing the approved 2022 Muni Service Network in additional phases as we bring more operators onboard. Read more about the complete 2022 Muni Service Network plan.



Published June 25, 2022 at 12:34AM
https://ift.tt/exjBLtQ

Friday, June 24, 2022

Show HN: Brave Goggle that upranks news sources that are politically centrist https://ift.tt/JyHBc42

Show HN: Brave Goggle that upranks news sources that are politically centrist https://ift.tt/Au7boKS June 24, 2022 at 08:15AM

Show HN: Lexman Artificial Podcast https://ift.tt/a7nsHAE

Show HN: Lexman Artificial Podcast https://lexman.rocks June 24, 2022 at 02:40AM

Show HN: Nerd Crawler – we monitor original comic art sites so you don't have to https://ift.tt/DfRKEIQ

Show HN: Nerd Crawler – we monitor original comic art sites so you don't have to I've been a fan of comics since I watched the X-Men Animated Series in the 90s, and I fell in love with collecting original comic art when I got my first Jim Lee sketch in high school. But, after missing out on some original comic art pieces because I didn't know when they were added for sale on websites, I decided to take it upon myself to make an app that monitors original comic art sites and emails/texts you when new art drops. It's called Nerd Crawler and I'm building it myself so there might be some bugs but I'm hoping it helps comic art collectors. It works with over 40 original comic art websites like Albert Moy (Jim Lee's art dealer), Cadence Comic Art, Artcoholics, a bunch of Big Cartel sites like Jim Cheung / Jason Fabok / Dustin Nguyen, Greg Capullo Art, Skottie Young, and more. It's free to try @ https://ift.tt/sUoIzxt , and you can upgrade to a paid plan if you want text messages alerts or want to check sites every 10 minutes or 1 minute. From a technical standpoint, my tech stack is: - Ruby on Rails - Hosted on Heroku - Emails sent by Mailgun - Texts sent by Twilio - Images hosted on Cloudinary - Credit card charging handled by Stripe and the new, low-code Stripe Checkout The minimum viable product was built in about a week with minor bug fixes and new features added weekly. If you have any feedback, have art sites you wanted added, or questions, let me know! https://ift.tt/sUoIzxt June 24, 2022 at 03:40AM

Show HN: request_migrations – request and response migrations for Rails APIs https://ift.tt/et4Gf90

Show HN: request_migrations – request and response migrations for Rails APIs https://ift.tt/iNoDRmB June 24, 2022 at 03:13AM

Show HN: Translating DOOM from C to V via C2V, building under 1s and running it https://ift.tt/siAdlEy

Show HN: Translating DOOM from C to V via C2V, building under 1s and running it https://www.youtube.com/watch?v=6oXrz3oRoEg June 24, 2022 at 02:52AM

Show HN: In-depth photographic look at all the golf courses I play https://ift.tt/4rHqdby

Show HN: In-depth photographic look at all the golf courses I play I'm an avid golfer; it's my main hobby. I decided to start taking pictures of all the courses I play. While there's a lot of golf websites out there, none of them really try to document the courses in depth and look at each hole, along with the course facilities like the practice areas. I live in Chicago and am starting with the courses in this area (of which there are dozens of public courses to play). While I play golf, I take photos with my phone of every (relevant) aspect of the golf course I can think of. Then they're processed and organized on the website. Obviously I'm starting this journey on my own, and in that sense it's not scalable. I won't be able to visit all the courses in the US, let alone the world. I hope to find others that would like to contribute to the effort. At some point I'd like to add course news and histories to the site. Many golf courses in the US are over 100 years old and have rich histories. And of course many older courses exist in Europe. I also have started adding descriptions/commentary for each hole on courses. For example, see: https://ift.tt/qh34JHO... And maybe went a little overboard on this one: https://ift.tt/gQkU1yf... Anyway, it's a fun project and could go in a lot of directions. PS: I'm always looking to expand my golfing circle. If you're in Chicago and want to play sometime, hit me up -- contact details are on the website. https://ift.tt/eEJy1zD June 24, 2022 at 01:23AM

Thursday, June 23, 2022

Show HN: Integrate ONDC with just a few lines of code https://ift.tt/OusLAZ4

Show HN: Integrate ONDC with just a few lines of code https://ift.tt/h7ZKSlP June 23, 2022 at 01:06PM

Show HN: VSCode extension that allows you to find and add links to your Markdown https://ift.tt/yoFzQpt

Show HN: VSCode extension that allows you to find and add links to your Markdown https://ift.tt/R30ljoZ June 23, 2022 at 08:18AM

Show HN: Shopify's headless commerce stack now GA (Hydrogen and Oxygen) https://ift.tt/XOIswlb

Show HN: Shopify's headless commerce stack now GA (Hydrogen and Oxygen) https://ift.tt/cVfn4g6 June 23, 2022 at 03:58AM

Show HN: Pragmatic Formal Modeling (Tutorial series with runnable examples) https://ift.tt/dEnjcyW

Show HN: Pragmatic Formal Modeling (Tutorial series with runnable examples) Formal modeling is a mathematical approach for designing and checking correctness of software systems. It focuses on standard software engineering and distributed systems problems of the sort programmers face every day. It takes a pragmatic engineering approach: each problem starts with UML diagrams, design decisions and sometimes even a requirements document. We work through how to get from a whiteboard design to an initial mathematical model. Then we refine it based on logical errors found by the model checker, which return with a level of detail unheard of in a standard debugger. Formal modeling is a skill every engineer should have in their toolbox. All the examples are downloadable, and their is a quick setup section at the start. Additionally, there is an explorable model error debugger build right into the website. https://ift.tt/lKh0dGc June 22, 2022 at 11:13PM

Breaking #FoxNews Alert : Number of dead rises after devastating tornadoes, Kentucky governor announces


from Twitter https://twitter.com/RKarthickeyan1

June 23, 2022 at 02:29AM
via RKarthickeyan1

Show HN: Crocodile - Better code review for GitHub https://ift.tt/1tIEljs

Show HN: Crocodile - Better code review for GitHub Hi HN! I've been working on a code review app for GitHub called Crocodile for about a year. I used to work at Microsoft where we used a tool called CodeFlow for reviewing code and I missed it after I left. I know many other ex-Microsoft engineers feel the same. Here are some of the distinguishing features of Crocodile that are inspired by CodeFlow: * Comments float above the code instead of being inline. Long discussions that are displayed inline make it really hard to review the code. * Comment on any text selection in the file, even a single character. * Comments don't get lost when code changes. I hate it when comments become "outdated" because I rebase or the line is edited. I also implemented lots of features that I wish CodeFlow had which you can read more about on the blog. [1] For those curious about the tech stack: it's mostly written in Go with Alpine.js, HTMX, and Tailwind CSS for the frontend. For storage I use PostgreSQL, S3 compatible object storage, and Redis for caching. I use Pulumi for infrastructure provisioning and Kubernetes deployments. Everything is hosted on DigitalOcean. Feedback is welcome! [1] https://ift.tt/8rXBiCS https://ift.tt/d3HyTZe June 23, 2022 at 01:37AM

Wednesday, June 22, 2022

What’s next after the loss of Prop A?

What’s next after the loss of Prop A?
By Andrea Buffa

School Crossing Guard James Moore at Sherman Elementary School on Franklin Street. May 2022

On Tuesday, June 17, the San Francisco Department of Election posted the final results of the June 7 election. Proposition A, the Muni Reliability and Street Safety Bond, received 65.11%, well over 50%, but short of the 66.67% share of the vote that’s required for passage. 

If passed, the bond measure would have provided $400 million for transportation infrastructure projects, including:

  • $250 million on the repair and renovation of SFMTA bus yards, facilities, and equipment
  • $26 million on traffic improvements, such as new traffic signals, wider sidewalks at bus stops and dedicated traffic lanes
  • $10 million on improvements to the Muni train system, including the train communication and control systems
  • $42 million on traffic signal and street crossing improvements, such as more visible traffic and pedestrian signals, curb ramps and signs
  • $42 million on street redesigns that include wider sidewalks, raised crosswalks, protected bike lanes, bus lanes, boarding islands and better lighting
  • $30 million on projects to manage traffic speeds, including lowered speed limits and speed radar signs

Although an overwhelming majority of voters supported investing in our transportation system, getting to the two-thirds threshold for a bond measure is never easy—more so when San Francisco is still recovering from the COVID-19 pandemic and people are struggling with the impacts of inflation.

The loss of Proposition A will have a cascading impact on San Francisco’s transportation projects. In the coming weeks, we’ll be evaluating the impacts of this result to transit and safety projects across the city. We don’t yet know which specific projects will be impacted, but we do know that every step toward getting the city’s transportation capital projects done is going to be harder than it would have been if the bond measure had passed.

The SFMTA is going to do everything possible to find alternative sources for these funds. We know that improving Muni and making streets safer remain priorities for our community—and we’re committed to working to make that a reality. 

The loss of Proposition A is going to make our path to transitioning to a 100% zero emission fleet more difficult, because a large amount of funding was going to go toward upgrading Muni facilities so we can charge battery-electric buses in them. It’s also going to make it harder to fund the street improvements on San Francisco’s high-injury network that are crucial to preventing traffic deaths and serious injuries.

These challenges don’t just impact people who ride Muni, walk or bike to get around. They impact drivers. When more people take transit, bike and walk, it reduces congestion for people who need to travel by car.

As we plan our next steps, we’ll be looking at what we can learn from the election results and how we can apply those lessons moving forward. We need to have more conversations and engagement with community members and community-based organizations—especially those on the west side of the city, where support for the bond measure was lowest—to ensure that we fully understand their transportation needs. We also need to continue building trust with San Franciscans so we can work together to create a robust transportation network that equitably connects everyone to where they need to go, regardless of their income or neighborhood.



Published June 22, 2022 at 07:13AM
https://ift.tt/h2zLHbq

Show HN: PyCircTools – A Python library to create circuits https://ift.tt/elg2Kfp

Show HN: PyCircTools – A Python library to create circuits PyCircTools is a python library that allows any programmer to create circuits with it. It is currently a work in progress and as for today, v0.0.3 is the most recent release. It just has logic gates, custom exceptions and tests for now, but the library will be updated with more content, so check back on it back to see new additions! https://ift.tt/jkXFDSg June 22, 2022 at 03:11AM

Show HN: A simple website to show how NFTs are stored https://ift.tt/uOBfWXq

Show HN: A simple website to show how NFTs are stored https://ift.tt/LQdG8pN June 22, 2022 at 05:11AM

Show HN: Hacker Blues https://ift.tt/SE8mdpv

Show HN: Hacker Blues https://ift.tt/KcltsR6 June 22, 2022 at 03:42AM

Show HN: PTerm – Go module to beautify terminal output with interactive menus https://ift.tt/8K2eDXF

Show HN: PTerm – Go module to beautify terminal output with interactive menus https://pterm.sh June 22, 2022 at 12:40AM

Show HN: ModResponse – Mock, modify, and replay HTTP response https://ift.tt/XLkb239

Show HN: ModResponse – Mock, modify, and replay HTTP response https://ift.tt/g1cCBWO June 22, 2022 at 12:24AM

Tuesday, June 21, 2022

Show HN: Writing a simple Tcl interpreter in Golang https://ift.tt/ETY1G7H

Show HN: Writing a simple Tcl interpreter in Golang https://ift.tt/vIJ6SRb June 21, 2022 at 03:14PM

Show HN: Weld – ETL, Reverse-ETL and SQL modelling all in one tool https://ift.tt/qDrHW4v

Show HN: Weld – ETL, Reverse-ETL and SQL modelling all in one tool https://weld.app/ June 21, 2022 at 02:17PM

Show HN: Figr.app – a real time, multi-user, notepad style calculator https://ift.tt/W4M2ARI

Show HN: Figr.app – a real time, multi-user, notepad style calculator https://www.figr.app June 21, 2022 at 05:40AM

Show HN: Open-source library to trace code executed per HTTP request https://ift.tt/PVq6Q4u

Show HN: Open-source library to trace code executed per HTTP request https://ift.tt/u8cXpP2 June 21, 2022 at 04:20AM

Show HN: Into the Futureverse https://ift.tt/UtglHZB

Show HN: Into the Futureverse https://ift.tt/sQ0HiC6 June 21, 2022 at 02:41AM

Show HN: Just – Zero Config TypeScript Development Tool https://ift.tt/K73fhlr

Show HN: Just – Zero Config TypeScript Development Tool I built a cli tool that gets you started with TypeScript development with zero config. Initially created to solve my own problem but thought it might be useful for others as well. - SWC compiler - TypeScript type check support - Live reload support - .env file support - Path alias support - Typescript script runner - REPL support Please tell me I am not going down a rabbit hole. https://ift.tt/NIKdAhY June 21, 2022 at 01:22AM

Show HN: A minimal example of DNS amplification attacks https://ift.tt/K3zCshX

Show HN: A minimal example of DNS amplification attacks https://ift.tt/WDOx2C3 June 20, 2022 at 03:26PM

Monday, June 20, 2022

Show HN: Bulletyn – custom email digests of Reddit, HN, and RSS https://ift.tt/ZCIw19u

Show HN: Bulletyn – custom email digests of Reddit, HN, and RSS http://bulletyn.co June 20, 2022 at 01:51AM

Show HN: StatusVista – An all-in-one status page of the systems you depend on https://ift.tt/IkE0T8x

Show HN: StatusVista – An all-in-one status page of the systems you depend on https://statusvista.com June 20, 2022 at 01:36AM

Show HN: Effortless Authentication for Your Web Application https://ift.tt/jR7SJkd

Show HN: Effortless Authentication for Your Web Application Hey folks, Michael here. I have been working in this project on and of for about a year and a half and I finally got it into a state where I can share it. I initially started this project to learn Rust and afterwards decided to make it useful for others. Vulpo Auth is an authentication server that you can host yourself. The goal was to make it as easy as possible for you to get started and have a complete authentication solution without you having to configure anything. Project Website: https://auth.vulpo.dev The Project contains: - Auth Server (Rust) - Admin Dashboard - JS and react SDK - Prebuilt Web UI (currently react) (https://ift.tt/PQZXdk3) - rust SDK for rocket Some of the features: - Email and Password Auth - Passwordless Auth - Google Auth - Translateable Email Templates - Enable/Disable Sign In or Sign Up - Password Reset Flow - Update Email Flow There is still a lot to do, the code base is full of experimental ideas and there a bunch of things to clean up, but first I want to focus on writing documentation and guides before adding more features. Besides the missing documentation, what are you missing? June 19, 2022 at 10:38PM

Show HN: Open source GamePort adapter to connect old DB15 joysticks to USB port https://ift.tt/NspLuxY

Show HN: Open source GamePort adapter to connect old DB15 joysticks to USB port https://ift.tt/miN7eXg June 20, 2022 at 12:40AM

Show HN: Mabel – a fancy BitTorrent client for the terminal https://ift.tt/YlFnbSM

Show HN: Mabel – a fancy BitTorrent client for the terminal https://ift.tt/4eYcd7n June 19, 2022 at 11:17PM

Sunday, June 19, 2022

Show HN: Dream Makers Community – What is your dream and what is stopping you https://ift.tt/43isG1O

Show HN: Dream Makers Community – What is your dream and what is stopping you Hey HN! Did a website to share what is your dream or what you want, and what is stopping you. That way the community can help you remove the obstacles to make the dream come true or that is the naive approach hehe. Imagine I should add users, a captcha, a mailer, more things, but it is a start. It is built with Rails and plain ERB with Bootstrap and the source code is at: https://ift.tt/6bvm7XA It is 100% inspired by the TED Talk by this lady https://www.youtube.com/watch?v=H2rG4Dg6xyI Hope you like it! https://ift.tt/htgL0fY June 19, 2022 at 06:35AM

Show HN: Control your Hyundai car with Python https://ift.tt/PqMkbIn

Show HN: Control your Hyundai car with Python https://ift.tt/FIjROLD June 19, 2022 at 04:15AM

Show HN: I have created something new to make your browsing experience enjoyable https://ift.tt/HwdIKy7

Show HN: I have created something new to make your browsing experience enjoyable https://ift.tt/KqiI0bU June 19, 2022 at 03:26AM

Show HN: Tickler: Go library to enqueue and process jobs in background https://ift.tt/OX43EDS

Show HN: Tickler: Go library to enqueue and process jobs in background https://ift.tt/7VY3Dk6 June 19, 2022 at 02:06AM

Show HN: Check how trackable you are based on your extensions https://ift.tt/97BArC4

Show HN: Check how trackable you are based on your extensions https://ift.tt/IKP1Rym June 19, 2022 at 12:36AM

Show HN: Remove Silence from Videos with Ffmpeg https://ift.tt/TJtyExh

Show HN: Remove Silence from Videos with Ffmpeg There was recently a Show HN for a program that lets one remove silence from video files [0]. I was almost certain that ffmpeg could do this... But after searching for it, it turned out I was wrong: ffmpeg can't do this out of the box, and also can't read input from an EDL file [1]. So I set out to write a solution, as simple as possible: produce a list of select filters that are applied to video and audio, and retain only the non-silent parts. The 'silencedetect' audio filter detects silences, and produces timestamps for when silences start and end. So one can pipe the output of that to a Python script, that builds an ffmpeg command with the appropriate select filters. The resulting ffmpeg command can be run to re-encode the video without the silent parts. Hope this helps. - - - Notes: 1/ I did find something somewhat similar to what I ended up doing [2], but it's complicated, and does the video encoding inside of Python. Granted, moviepy uses ffmpeg under the hood, but it's still better if ffmpeg does all the encoding directly. 2/ This solution doesn't produce a myriad of intermediary files that it would recombine afterwards; there is just one encoding of the output video file. 'silencedetect' is very fast, so all in all running this should be pretty fast. [0] https://ift.tt/Z3rGyml [1] https://ift.tt/4Ek3ZIP [2] https://ift.tt/woEcbdH... https://ift.tt/nIL07A6 June 18, 2022 at 11:21PM

Saturday, June 18, 2022

Friday, June 17, 2022

Show HN: Convert Cloudformation Templates to Terraform https://ift.tt/xul0C9V

Show HN: Convert Cloudformation Templates to Terraform https://ift.tt/6WyxLkZ June 17, 2022 at 10:24PM

Show HN: I built a version of Google Trends for investors https://ift.tt/C59a1mR

Show HN: I built a version of Google Trends for investors https://ift.tt/tC3KMRP June 17, 2022 at 07:17PM

Show HN: Root Cause as a Service – Never dig through logs again https://ift.tt/R0oaMJc

Show HN: Root Cause as a Service – Never dig through logs again Hey Folks – Larry, Ajay and Rod here! We address the age old painful problem of digging through logs to find the root cause when a problem occurs. No-one likes searching through logs, and so we spent a few years analyzing 100’s of real world incidents to understand how humans troubleshoot in logs. And then we built a solution that automatically finds the same root cause indicators a human would have had to manually search for. We call it Root Cause as a Service. RCaaS works with any app and does not require manual training or rules. Our foundational thoughts and more details can be found here: https://ift.tt/1JTbwuz. Obviously, everyone is skeptical when they hear about RCaaS. We encourage you try it yourself, but we also have a really strong validation point. One of our customers performed a study using 192 actual customer incidents from 4 different products and found that Zebrium correctly identified the root cause indicators in the logs in over 95% of the incidents – see https://ift.tt/T0X8RIq. For those that are interested, this is actually our second SHOW HN post, our first was last June - https://ift.tt/jFZmx6E. The link in that post points to our current home page but our initial comment was, "We're excited to share Zebrium's autonomous incident detection software". At the time, our focus was on a tool that used unsupervised ML to automatically detect any kind of new or unknown software incident. We had done a lot of customer testing and were achieving > 90% detection accuracy in catching almost any kind of problem. But what we underestimated is just how high the bar is for incident detection. If someone is going to hook you up to a pager, then even an occasional false positive is enough for a user to start cursing your product! And users quickly forget about the times when your product saved their bacon by catching problems that they would otherwise have missed. But late last year we had a huge aha moment! Most customers already have monitoring tools in place that are really good at detecting problems, but what they don't have is an automated way to find the root cause. So, we built some really elegant integrations for Datadog, New Relic, Elastic, Grafana, Dynatrace, AppDynamics and ScienceLogic (and more to come via our open APIs) so that when there's a problem, you see details of the root cause directly on your monitoring dashboard. Here's a 2 minute demo of what it looks like: https://youtu.be/t83Egs5l8ok. You're welcome to sign-up for a free trial at https://www.zebrium.com and we'd love to hear your questions and feedback. June 17, 2022 at 09:25PM

Show HN: Fortunately – Understand the tradeoffs of financial decisions https://ift.tt/ElwLOkx

Show HN: Fortunately – Understand the tradeoffs of financial decisions https://ift.tt/ySwv5tA June 17, 2022 at 02:49AM

Show HN: Export React Code from Figma https://ift.tt/P3R1ftq

Show HN: Export React Code from Figma https://ift.tt/73dQURW June 17, 2022 at 02:32AM

Show HN: Automate Your Gifting https://ift.tt/890ylsQ

Show HN: Automate Your Gifting https://joyful.gifts/ June 16, 2022 at 10:50PM

Thursday, June 16, 2022

Show HN: NPM Library for ONDC (Open Network for Digital Commerce) https://ift.tt/Yc46VwJ

Show HN: NPM Library for ONDC (Open Network for Digital Commerce) https://ift.tt/3rawpxn June 16, 2022 at 03:15PM

Show HN: Lockable – sync locks for distributed systems https://ift.tt/8uUHbXr

Show HN: Lockable – sync locks for distributed systems https://lockable.dev June 16, 2022 at 02:57PM

Show HN: Chrome Extension for HN Avatars https://ift.tt/O0DmaCP

Show HN: Chrome Extension for HN Avatars https://ift.tt/aJmR7hi June 16, 2022 at 03:42PM

Show HN: Marklog, a minimalist tool to collect links and Twitter Bookmarks https://ift.tt/HmR1wcp

Show HN: Marklog, a minimalist tool to collect links and Twitter Bookmarks https://marklog.app/ June 16, 2022 at 02:34PM

Show HN: I made a GPT-3 thing to help me make better hackathon projects https://ift.tt/7EhrgDb

Show HN: I made a GPT-3 thing to help me make better hackathon projects https://ift.tt/Yajbo5H June 16, 2022 at 01:42AM

Show HN: IoT device to warn you of a supernova hours before Earth is destroyed https://ift.tt/iR7Kaok

Show HN: IoT device to warn you of a supernova hours before Earth is destroyed https://ift.tt/PC9snZJ June 16, 2022 at 04:25AM

Show HN: Soliciting post placement on Hacker News https://ift.tt/jsnubQd

Show HN: Soliciting post placement on Hacker News Hey, HN -- I just received the following email and I'm not sure what to do about it. Obviously I want to discourage requested-posting like this; is there some structured way that we can do that? One of the things I love about HN is how high the signal-to-noise ratio is relative to...pretty much the rest of the internet. I wouldn't ordinarily call someone out like this, but I want to innoculate HN against this sort of thing. ---- Hey doches, Not sure if it's conventional, but thought I'd ask anyway. Would you be open to posting about my product on Hacker News? I understand that similar to Product Hunt, HN gives higher priority to users with higher karma. I usually keep up with recent discussions via RSS feed on Feedly, but almost neve post. So I thought I'd reach out to someone that has authority. My product is called Popupular and it helps embed just about anything into a popup via a Google Chrome extension. [rest of email truncated] June 15, 2022 at 11:17PM

Wednesday, June 15, 2022

Show HN: Cut your AWS costs by stopping non-production resources when not needed https://ift.tt/WH9QJ0t

Show HN: Cut your AWS costs by stopping non-production resources when not needed Hello HN community! Sri and Brian here from CloudPal (https://ift.tt/JAxs3UW). We are building a tool to help companies reduce their cloud costs by stopping non-production resources when they’re not needed. The problem: Almost every company on the cloud struggles with cost management. While optimizing production costs can be complex, reducing non-production costs should be a straightforward case of shutting down resources when they’re not in use. However, most companies lack an elegant solution for this. The solution: CloudPal - A downtime scheduler for non-production resources (currently supports AWS EC2 & RDS) - start / stop button, allowing users to override the schedule (eg. if working on weekends). Next up on the feature roadmap is: - Intelligent start / stop functionality for non-production resources - resources will automatically stop when not in use and quickly spin back up when needed, resulting in lots more delicious cost savings! - Support for more cloud providers and resource types (eg. ECS, K8s, etc.) We're really happy we get to show this to you all, thank you for reading about it! Please let us know your thoughts and questions in the comments. Many thanks, Sri & Brian June 15, 2022 at 10:28PM

Show HN: I made a site that shows jobs where you can work pseudonymously https://ift.tt/SH7EnOD

Show HN: I made a site that shows jobs where you can work pseudonymously https://ift.tt/16UfDxz June 15, 2022 at 09:30PM

Show HN: I made a visual NFT collection https://ift.tt/nQT3aBN

Show HN: I made a visual NFT collection https://ift.tt/kMBCltT June 15, 2022 at 09:12PM

Show HN: Thoughts on Digital Sticky Notes https://ift.tt/YZqMPpz

Show HN: Thoughts on Digital Sticky Notes All the apps that allow you to put stickys on a board to manage progress are missing the point. Tasks to do tasks dont necessarily lead you to accomplishing your goals. I built a tool with my team that makes users align all work to their goals. No way around it. We call them missions. Let me know your thoughts! Roast it, love it, be confused by it...let us know! https://twigflo.com June 15, 2022 at 06:13AM

Tuesday, June 14, 2022

Show HN: Plain Text Cryptocurrency Prices https://ift.tt/lDdakBc

Show HN: Plain Text Cryptocurrency Prices https://plaintextco.in June 14, 2022 at 06:39PM

Show HN: Offline voice messages transcription in Signal Desktop https://ift.tt/iGQnj3f

Show HN: Offline voice messages transcription in Signal Desktop https://ift.tt/4BZ7C8I June 14, 2022 at 12:50PM

Show HN: The Coinbase FOMO Calculator https://ift.tt/ZGFa7mk

Show HN: The Coinbase FOMO Calculator Made this using Power BI and the Crypto Watch API. Started making this in November 2021, but never got around to publishing it, so that is the reason for the 'FOMO' in the title - probably a good thing if you 'missed out' on the crypto hype late last year. Now it serves as a way to see how much you 'saved' by not putting in money. Hope someone finds it fun! https://ift.tt/a7XjAOg June 14, 2022 at 09:32AM

Show HN: My first website ever, just out of college (1999) https://ift.tt/kF6nrZQ

Show HN: My first website ever, just out of college (1999) https://ift.tt/L9DHVUz June 14, 2022 at 01:36AM

Show HN: How Box-Sizing Works https://ift.tt/plNHt3f

Show HN: How Box-Sizing Works https://ift.tt/Jz2vWwl June 14, 2022 at 01:25AM

Show HN: PostgresML integrates Hugging Face to bring SOTA models into the db https://ift.tt/rNtpbMV

Show HN: PostgresML integrates Hugging Face to bring SOTA models into the db Hello folks, It's been a few weeks, so we thought it might be time for another update and this one is very exciting indeed. We've added automatic integration with Hugging Face transformers! By running just a single SQL command, anyone is now able to deploy any of the state-of-the-art models into their Postgres DB for real time inference & tuning. The list of models is long, but here it is anyway: translation, sentiment analysis, summarization, question answering and text generation. Let us know what you think! Montana & Lev https://ift.tt/dFRgraw June 13, 2022 at 11:42PM

Monday, June 13, 2022

Show HN: Stylepad – Free moodboards for creative professionals https://ift.tt/Cqx76Z4

Show HN: Stylepad – Free moodboards for creative professionals https://stylepad.io June 13, 2022 at 12:06PM

Show HN: Reddit search engine for startup founders https://ift.tt/a6J1Ovp

Show HN: Reddit search engine for startup founders https://ift.tt/CuSiEL9 June 13, 2022 at 07:44AM

Show HN: HJKL Trainer - Get used to HJKL Vim keybinds https://ift.tt/o1cwU5V

Show HN: HJKL Trainer - Get used to HJKL Vim keybinds https://ift.tt/iFAJXdH June 13, 2022 at 03:24AM

Show HN: Watercolor AI https://ift.tt/dv4tPLu

Show HN: Watercolor AI https://ift.tt/o2RfhVX June 13, 2022 at 03:17AM

Show HN: Cleanup Photos by Dragging Boxes https://ift.tt/PFhWck5

Show HN: Cleanup Photos by Dragging Boxes https://ift.tt/gQMnUAi June 13, 2022 at 02:53AM

Show HN: Howl – Share longer and richer content on Twitter https://ift.tt/pmueg7q

Show HN: Howl – Share longer and richer content on Twitter https://ift.tt/tnWihN7 June 13, 2022 at 01:28AM

Sunday, June 12, 2022

Show HN: The Lambdaway Project https://ift.tt/VO6tPYj

Show HN: The Lambdaway Project https://ift.tt/QYray4n June 12, 2022 at 12:18PM

Show HN: Building services on lambda should be easy and fun https://ift.tt/MkoF09h

Show HN: Building services on lambda should be easy and fun i had previously posted this when it was aws-rce. it’s changed enough that i want to post it again. https://ift.tt/ubzMwHS June 12, 2022 at 09:53AM

Show HN: Browser extension that spoofs your location data to match your VPN https://ift.tt/qdrvNt2

Show HN: Browser extension that spoofs your location data to match your VPN https://ift.tt/ZJNK36l June 12, 2022 at 07:40AM

Show HN: Album Rotation – Organize and visualize your favorite albums (desktop) https://ift.tt/Cv2c5XD

Show HN: Album Rotation – Organize and visualize your favorite albums (desktop) https://ift.tt/6BXVF8l June 12, 2022 at 07:20AM

Show HN: Generate images using DALL-E Mega and Mini https://ift.tt/oTZVeGU

Show HN: Generate images using DALL-E Mega and Mini https://ift.tt/gRcHqDT June 11, 2022 at 11:34PM

Show HN: The Amalgam Engine – Easily create isometric virtual worlds https://ift.tt/jWVprSP

Show HN: The Amalgam Engine – Easily create isometric virtual worlds https://ift.tt/t6La0ni June 12, 2022 at 02:11AM

Saturday, June 11, 2022

Show HN: A web-based sequencer where you can make, listen to, and share patterns https://ift.tt/vPdLO4f

Show HN: A web-based sequencer where you can make, listen to, and share patterns https://drawbeats.com/ June 11, 2022 at 03:00AM

Show HN: I built a tool to describe ~4.3B colors https://ift.tt/ZOhz0LJ

Show HN: I built a tool to describe ~4.3B colors A simple tool I made over the week to explore and learn about different colors. You can select any color with any opacity #000000-FFFFFFFF (~4.3 billion colors/variants), and you can view a dedicated page detailing the color's closest name, conversions to Hex, RGB, CMYK, etc., shades, tints, tones, harmonies, opacities, and WCAG contrast compliance. https://colorwaze.com June 11, 2022 at 01:27AM

Show HN: My small program from 2007 that gave Internet Explorer tabs https://ift.tt/Ik0euKY

Show HN: My small program from 2007 that gave Internet Explorer tabs http://tabbed.org/ June 11, 2022 at 12:28AM

Show HN: PeerLite – WebRTC library with perfect negotiation using TypeScript https://ift.tt/Y3B6KNP

Show HN: PeerLite – WebRTC library with perfect negotiation using TypeScript https://ift.tt/sPVgzwU June 11, 2022 at 12:07AM

In-Person Pride Parade & Celebrations Return This Month!

In-Person Pride Parade & Celebrations Return This Month!
By Pamela Johnson

MTA participants holding a banner displaying "Moving SF with Pride" in the Pride Parade on city streets

The SFMTA is happy to join San Francisco Pride celebrations when they return to in-person events this month as the city continues its recovery from the pandemic. This year’s theme is “Love will Keep Us Together.” The Trans March is happening on Friday, June 24 and the Pride Parade is on Sunday, June 26. SFMTA staff are, of course, an important part of the LGBTQIA+ community that keeps SF moving with Pride. Pride is an opportunity for us to demonstrate our continued support of the LGBTQIA+ community, promoting our core values of respect, inclusivity and integrity. 

History/Background of SF Pride  

San Francisco had its first Pride celebration in 1970. For more than three decades the LGBTQIA+ community and their allies have been moving San Francisco forward to become a better, safer, and more equitable world for the LGBTQIA+ community and the city a better place for people to live, work and enjoy.   

Historically, San Francisco's Pride parade is the largest in the country with more than a million people in attendance, usually including travelers from cities across the country and around the globe celebrating and paying homage to the members of the LGBTQ+ community.  

Diversity, Equity & Inclusion for All 

Pride is a celebration and counterpoint to the discrimination and challenges the LGBTQIA+ community has historically faced. And we can all be proud that San Francisco has been a pioneer on such issues as same-sex marriage, health care and anti-hate legislation. 

Recognizing the strides and achievements made by the LGBTQIA+ community over more than five decades, the SFMTA’s theme for 2022 is "Moving San Francisco with Pride.” As home to one of the world's largest and most prominent LGBTQIA+ communities, we look forward to celebrating Pride all month long. 

What You Should Know About SF Pride 2022 

Trans March – Friday, June 24  

  • This year’s Trans March takes place Friday, June 24 at 5:30 p.m. 
  • We’ll be partnering with the Trans March to provide our rolling cable car for the march. 

Pride Parade and Celebration – Saturday, June 25 and Sunday, June 26 

  • This year’s Pride Parade and Celebration takes place the last weekend in June. from 11 a.m. to 6 p.m., Saturday and Sunday. 
  • The parade begins at 10:30 a.m., Sunday and is estimated to end between 2:30 and 3:30 p.m. 

Links

  • Visit the SF Pride website to learn more about the city’s Pride festivities.
  • Visit the San Francisco Trans March website to learn more about San Francisco’s Trans March. 
  • To catch Muni to any of these events, use the SFMTA Trip Planner.  
  • Participating in one of the world’s largest Pride events is a thrilling and unique experience. We hope you can join in this fun, inclusive event. Whether you identify as LGBTQIA+ or as an ally, everyone is welcome.


Published June 10, 2022 at 11:49PM
https://ift.tt/ACFnEvH

Show HN: Computer Vision Models for Developers https://ift.tt/o8kNzeV

Show HN: Computer Vision Models for Developers https://ramanlabs.in June 10, 2022 at 10:21PM

Friday, June 10, 2022

Improving Safety on 16th Street

Improving Safety on 16th Street
By John Gravener

Pedestrians crossing the intersection at 16th and Mission streets.

Construction on Phase 2 of the 16th Street Improvement Project began May 9, 2022. 16th Street is part of the city’s High Injury Network, where 75% of the city’s severe and fatal traffic incidents occur on just 12% of the city’s streets. This project, in addition to improving reliability of the 22 Fillmore line, has several pedestrian safety features that will make 16th Street a safer place for all modes of transportation.

For people who walk on 16th Street:

One of these safety elements is the installation of 2 new pedestrian bulbs at Guerrero Street and South Van Ness Avenue. These bulbs shorten the crossing distance between the corners of an intersection and make people who are about to cross the street more visible to drivers. The bulbs also require vehicles to slow down when making right-hand turns. High-visibility crosswalks will be installed. These make it easier for people driving to see people crossing the street, and also aids people with low-vision in crossing the street safely

New traffic signals with pedestrian countdown signals will let people walking know how much time they have to cross the street before the traffic light changes. In response to community concerns about pedestrian safety, a new accessible pedestrian signal with pedestrian countdown and audible tones will be installed at Shotwell Street, a designated Safe Street.

For people who ride transit on 16th Street:

In some areas along the corridor, sidewalks at bus bulb-out locations will also be widened as part of the project. Wider sidewalks act as a buffer between traffic and people on sidewalks and make it safer for people riding transit to board and alight from buses. Buses remain in their dedicated transit lane, while people can step directly between the bus and the curb safely. This also improves transit efficiency as buses do not need to pull back out into their lane to continue their route.

For people biking near 16th Street:

During Phase I of the project, the SFMTA extended the bicycle route on 17th Street. This allows for a safe and attractive east-west connection for people on bicycles. As a part of the bicycle network, the bicycle route improves conditions for people on bicycles and enhances connections to the existing bicycle network. This network allows people to travel from the Castro to Mission Bay safely by bicycle.

Public safety is important, and all SFMTA construction projects include that in the planning and design process. The 16th Street Improvement Project wants to make sure that pedestrians, transit riders and bicyclists arrive safely at their destinations.



Published June 10, 2022 at 06:52AM
https://ift.tt/6eYgnxC

Show HN: Mario Bros. Clock https://ift.tt/03CN1BV

Show HN: Mario Bros. Clock https://ift.tt/26an4WF June 10, 2022 at 02:58AM

Show HN: LinkWarden – A self-hosted bookmark + archive manager https://ift.tt/GioeOJM

Show HN: LinkWarden – A self-hosted bookmark + archive manager https://ift.tt/P0Z8oYU June 10, 2022 at 01:56AM

Show HN: TLDR (short) news website with my own algorithm https://ift.tt/yPOCI09

Show HN: TLDR (short) news website with my own algorithm I'm actively working on a news shortening website. Trying to save you from clickbaits, save your time and save you from reading Bible-sized articles What I hate the most when reading news is reading Bible-size articles just to find the main point of the article. Usually journalists write a bunch of unnecessary information just to create 400+ long articles and position better on Google. Worst of all are those clickbait titles or titles that tell you a portion of information just to make you intrigue and make you click on the article. For me personally, it is very annoying and frustrating. I like to spend like 30 seconds tops on an article, I want to get the information as fast as possible and move on. So with my [ExcerptDaily]( https://ift.tt/vc8oENU ) I'm trying to: * Save people's time * Inform you as fast as possible * Give you the main point of an article in 5 sentences * Save you from clickbait or half clickbait titles I wrote my own algorithm and tried a few of them, now I'm focusing on my own algorithm and making it better. I focused on the US market and CNN only so far, it is my ground zero. https://ift.tt/vc8oENU June 10, 2022 at 01:37AM

Show HN: Sake – tool to run tasks on remote servers https://ift.tt/wYrfKqu

Thursday, June 9, 2022

Show HN: Debase – drag and drop Git rebase in your terminal https://ift.tt/EXWL4dm

Show HN: Debase – drag and drop Git rebase in your terminal https://heytoaster.com June 9, 2022 at 06:36PM

Show HN: Python Live GUI – A Hybrid of Dear ImGUI and Phoenix LiveView https://ift.tt/IwYox6r

Show HN: Python Live GUI – A Hybrid of Dear ImGUI and Phoenix LiveView https://ift.tt/0BQWFAp June 9, 2022 at 05:07PM

Show HN: Open-Source Identity Server Written in Go (Ory Kratos) https://ift.tt/e3W2anp

Show HN: Open-Source Identity Server Written in Go (Ory Kratos) https://ift.tt/Yl1rgQo June 9, 2022 at 04:47PM

Show HN: Personal AI Writing Assistant for Mac https://ift.tt/5uDZSi9

Show HN: Personal AI Writing Assistant for Mac https://elephas.app June 9, 2022 at 12:10PM

Show HN: One Soft Landing – hire people that were recently laid off https://ift.tt/LUEcaM4

Show HN: One Soft Landing – hire people that were recently laid off https://ift.tt/ZdeCQLc June 9, 2022 at 04:40AM

Show HN: Proof of concept – colorise/animate any website font https://ift.tt/u2BacsR

Show HN: Proof of concept – colorise/animate any website font https://ift.tt/nCe7KWk June 9, 2022 at 12:18AM

Show HN: castable-video https://ift.tt/SNefJxC

Show HN: castable-video https://ift.tt/bda6zvN June 8, 2022 at 10:26PM

Show HN: Color palettes generator for data visualization https://ift.tt/3Od6bXB

Show HN: Color palettes generator for data visualization A generator app for charts/visualizations color palettes based on the article "How to pick the least wrong colors" [1] by Matthew Ström featured recently on HN [2]. The code is available on github [3]. [1] https://ift.tt/NJ9dCnu... [2] https://ift.tt/0kVeNrZ [3] https://ift.tt/v4gBFk8 https://ift.tt/yLOGhqQ June 9, 2022 at 12:59AM

Wednesday, June 8, 2022

Show HN: Tasqueue – A simple, customisable distributed job/worker in Go https://ift.tt/cLldq6u

Show HN: Tasqueue – A simple, customisable distributed job/worker in Go https://ift.tt/Uxm5Opc June 8, 2022 at 05:15PM

Show HN: Evangelion Title Card Generator https://ift.tt/5j7zVFZ

Show HN: Evangelion Title Card Generator https://ift.tt/zRp1Gnr June 8, 2022 at 11:41AM

Show HN: Groundview – backchannel references for anyone without the work https://ift.tt/hpfSQqj

Show HN: Groundview – backchannel references for anyone without the work https://groundview.io June 7, 2022 at 11:54PM

Breaking #FoxNews Alert : Biden approves Kentucky disaster declaration after devastating tornado


from Twitter https://twitter.com/RKarthickeyan1

June 08, 2022 at 05:29AM
via RKarthickeyan1

Show HN: SetOps – Run containers, databases and more in your own AWS account https://ift.tt/Djsv7Wp

Show HN: SetOps – Run containers, databases and more in your own AWS account https://www.setops.co/ June 7, 2022 at 07:49PM

Show HN: An open-source, privacy-friendly Google Analytics and GTM alternative https://ift.tt/jUX9PQl

Show HN: An open-source, privacy-friendly Google Analytics and GTM alternative https://ift.tt/YUbRdsv June 8, 2022 at 12:27AM

Show HN: Salary statistical data shown as infographics for more than 35000 jobs https://ift.tt/YSgJcp1

Show HN: Salary statistical data shown as infographics for more than 35000 jobs https://ift.tt/GCJw4SF June 7, 2022 at 11:12PM

Tuesday, June 7, 2022

Show HN: Notik – A new way of managing projects https://ift.tt/TriNgkv

Show HN: Notik – A new way of managing projects https://notik.app/ June 7, 2022 at 11:42AM

Show HN: Making network frames physical objects in UE5 with a DIY CNI in 67s https://ift.tt/iY5ZFk3

Show HN: Making network frames physical objects in UE5 with a DIY CNI in 67s https://www.youtube.com/watch?v=soxJmFpoNTU June 7, 2022 at 09:07AM

Monday, June 6, 2022

Show HN: Magic Functions in Python https://ift.tt/zd02MGB

Show HN: Magic Functions in Python https://ift.tt/wFz8Ee9 June 6, 2022 at 08:03PM

Show HN: WunderGraph – open-source API Developer Toolkit https://ift.tt/BkdRKwP

Show HN: WunderGraph – open-source API Developer Toolkit Dear HN Community. We're Bjorn, Dustin, Stefan & Jens, the founders of WunderGraph. More than two years ago, Jens started WunderGraph as a Side Project. The initial idea was to solve the problem of integrating multiple disparate DataSources into a single, unified API Layer. While solving this problem, Jens realized that his mental model of APIs was wrong. Most API tools treat APIs as abstract things or just endpoints, in a very imperative way. At some point, he realized that there's a better model to think about APIs: APIs are dependencies and we should treat them in a declarative way! And that's how the idea of the "Package Manager for APIs"[1] came to be: WunderGraph is an API Developer toolkit which allows you to import and export APIs, just like npm packages. This is possible because every WunderGraph project generates a static, conflict-free and versionable artifact. It shouldn't take days to add a new 3rd party API to your API layer, with WunderGraph, this is possible in seconds. WunderGraph lets you define your API dependencies in a declarative way. The whole "Graph" of API dependencies is represented as an unified GraphQL Schema. Meta-data like API credentials, can be configured with our TypeScript SDK. API Operations are defined as regular GraphQL Operations. Custom middleware / business logic can be written using TypeScript. Finally, WunderGraph generates a Gateway + Client(s). Gateway and clients communicate via JSON-RPC. We call this approach "Compile-time" GraphQL queries. The client is 100% TypeSafe. The Gateway handles Authentication, Authorization, Caching, Middleware, etc... WunderGraph gives you the Developer Experience of working with a single, monolithic API layer, although you're using many different internal and external Services and Databases behind the scenes. WunderGraph Supports any OpenID Connect compliant IDP for Authentication, S3 for file storage, REST (OpenAPI), GraphQL & Apollo Federation for APIs and PostgreSQL, MySQL, SQLite, SQLServer, Planetscale and MongoDB for the data-layer. Today, we're happy to announce that WunderGraph is finally Open Source! Check out the Monorepo[2] on GitHub. If you like our ambitions, give us a star! You can run WunderGraph locally and air-gapped, no strings attached. There's also a more extensive release post on our blog[3]. Have a look at the examples[4], we're keen to hear your opinion! [1]: https://ift.tt/SivR2qf [2]: https://ift.tt/2Q4xKvo [3]: https://ift.tt/YUM5yWs [4]: https://ift.tt/MGWbrao June 6, 2022 at 06:29PM

Show HN: Seal – Verifiable timestamp for your private ideas https://ift.tt/EsMRyzI

Show HN: Seal – Verifiable timestamp for your private ideas https://ift.tt/ZKVgbaj June 6, 2022 at 09:30AM

Show HN: Hit – CLI to manage and execute HTTP requests https://ift.tt/wBFNfWv

Show HN: Hit – CLI to manage and execute HTTP requests https://ift.tt/QBTowWR June 6, 2022 at 04:42AM

Show HN: Pidove, an Alternative to the Java Streams API https://ift.tt/HNvhLGw

Show HN: Pidove, an Alternative to the Java Streams API https://ift.tt/LiKTQzg June 6, 2022 at 07:51AM

Show HN: End-to-End 3D Hand Pose Estimation from Stereo Cameras https://ift.tt/1vtiamC

Show HN: End-to-End 3D Hand Pose Estimation from Stereo Cameras https://ift.tt/L3Ex4Hi June 6, 2022 at 06:37AM

Sunday, June 5, 2022

Show HN: A new way to fight manipulation in news https://ift.tt/TVZiFtb

Show HN: A new way to fight manipulation in news https://dailyedit.com/ June 5, 2022 at 06:31PM

Show HN: Domain driven design with Node.js template https://ift.tt/PrmxA83

Show HN: Domain driven design with Node.js template https://ift.tt/nGAMWOt June 5, 2022 at 04:15PM

Show HN: The First Softmod for All Japanese PS1 Console Revisions https://ift.tt/fji1ags

Show HN: The First Softmod for All Japanese PS1 Console Revisions https://ift.tt/eOuMB7Z June 5, 2022 at 09:00AM

Show HN: SSH Now – a terminal into any machine https://ift.tt/1wL0Oxl

Show HN: SSH Now – a terminal into any machine https://ift.tt/g8GzoEV June 5, 2022 at 07:07AM

Show HN: Send commands to KVM/HDMI matrix devices when touching screen edge https://ift.tt/vCdQwc8

Show HN: Send commands to KVM/HDMI matrix devices when touching screen edge https://ift.tt/9aOoIqP June 5, 2022 at 12:33PM

Show HN: Grid.js – Advanced table library that works everywhere (2020) https://ift.tt/oU0fVeF

Show HN: Grid.js – Advanced table library that works everywhere (2020) https://gridjs.io/?hn June 5, 2022 at 05:05AM

Saturday, June 4, 2022

Show HN: ModelRunner – open source, speech-enabled data management platform https://ift.tt/wNCiTDt

Show HN: ModelRunner – open source, speech-enabled data management platform Warning: this whole post is a blatant plug for my Open Source project https://ift.tt/gESNpvI There is lot of discussion around no code platforms and why developers don’t like them. My view is that they can be very useful to quickly get through the boring parts of a project, like creating master data management screens for example. So I’ve built my own version which interprets models at run time and, it turns out, understands natural language queries too! Hi, my name is Etienne, I love coding and I’ve been doing it for a few decades now so I’d rather focus on code that keeps me interested. Unfortunately, I find that there is always a lot to code before I get to the interesting stuff. So, like every other half-decent programmer, I’ve always tried to automate as much as possible and build reusable libraries by adding levels of indirection and parameters. I’ve been doing this for so long now that my code has become ‘hyper’ parameterised, so much so that I had to store all the parameters in configuration files. These evolved into complete models which are basically a mix between ER models and UML diagrams: they include Entities and Attributes but also support all UML relationships (plus Back References) as well as formulas in object notation like “Product.Name” and “Sum(OrderLines.Amount)”. I’ve even extended the idea to include workflow models to specify what happens when an object is created, updated or deleted or when a pre-requisite condition becomes true. To simplify managing the models, I’ve written a graphical editor, starting with Eclipse GEF but since I like to reinvent the wheel, I moved to plain HTML5/JS. To make it even easier, I’ve added Google Speech Recognition so I can now design models by just talking to Chrome and when I’m done, I can deploy them with one click or by saying something like ‘please deploy the application’. This will create a schema for the data and the ‘meta’ application will be ready to offer standard, web based, data management screens. At this stage you’re probably thinking “Great, you can design and deploy data driven apps with your voice, so what?” Ok, let’s move on to something more interesting then, which is what the ‘meta’ app can do because it has access to all the information in the model at run time, like for example, the ability to manipulate the data using natural language queries. This works because having access to the semantics in the model removes the current gap between Machine Learning based Natural Language Understanding systems, which are very flexible but mostly ignorant of the domain model and, on the other hand, old fashioned back end systems with very rigid APIs. You can find a more detailed discussion here: https://ift.tt/WUPL7zQ... . So I’ve also added Google Speech Recognition to the ‘meta’ application and I can now just speak to it and tell it to “create a city called Melbourne and set postcode to 3000 and set notes to the most liveable city in the world” or “get me a list of customers living in Sydney aged 40” which I think is pretty cool and almost justifies all the hours and late nights I’ve spent coding it! I think this has pretty obvious applications like for example, being able to manage your data on the go by just talking to your phone instead of trying to use a GUI on a small screen. So, I highly recommend the parameterised indirection approach but if you don’t have a lot of time to write your own code, you might want to have a look at mine, it’s all Open Source with an MIT license: https://ift.tt/gESNpvI . Or, if you just want to try it or watch a demo, just head to https://modelrunner.org . Now, it’s still very much a work in progress and I’ve spent more time on the core engine than on the UI so if you try to break it, you probably will! But, if you give it a try, please let me know how you went! Thank you! https://ift.tt/r4N7blx June 4, 2022 at 03:56AM

Show HN: Move away from streaming platforms and take your music offline https://ift.tt/5SzVQG9

Show HN: Move away from streaming platforms and take your music offline https://ift.tt/thpK3Fy June 4, 2022 at 02:01AM

Show HN: K1pwit – 1Password on iTerm2 https://ift.tt/h1waN8v

Show HN: K1pwit – 1Password on iTerm2 https://ift.tt/I9PczmV June 4, 2022 at 06:09AM

Show HN: I love FitnessSF, but I hate their mobile app https://ift.tt/eDdi39l

Show HN: I love FitnessSF, but I hate their mobile app In order to enter my gym, FitnessSF, I must load up their mobile app to open a QR code and scan in. Their app takes roughly 10,000 years to load so I stand like an idiot at the front desk, turning the app off and on again to just get the QR code. I wrote a little bit of javascript that hits the FitnessSF API and generates a Mobile Wallet Pass. I also hard coded all the fitness SF lat/long locations, so the mobile wallet will pop up when you're nearby. I hope this restores a little bit of sanity in someone else's life. https://ift.tt/MeFI7mr June 4, 2022 at 05:03AM

Show HN: Cryptid Zero Trust Authentication and Authorization, Open Source Oberon https://ift.tt/c73OFPh

Show HN: Cryptid Zero Trust Authentication and Authorization, Open Source Oberon Oberon makes it possible for a service provider to issue capability tokens to clients in such a way that the service provider never sees the value of the capability token. This prevents the service provider from being able to impersonate the client. Oberon relies upon zero-knowledge proof presentation of the capability token so that the token is never transmitted norrevealed. Instead of the client sending the token to the service—as is done with API tokens today—the client sends a zero-knowledge proof proving that they have a valid capability token issued by the service provider; this is called proof-of-knowledge. GitHub: https://ift.tt/P9HVTx4 Get cryptid: https://ift.tt/UXc14Wj] June 3, 2022 at 11:17PM

Show HN: I spent a year building a desktop environment that runs in the browser https://ift.tt/W6qRa9O

Show HN: I spent a year building a desktop environment that runs in the browser https://puter.com/ June 3, 2022 at 10:44PM

Friday, June 3, 2022

Show HN: I restored Palm's webOS App Catalog, SDK and online help system https://ift.tt/hkTrv4V

Show HN: I restored Palm's webOS App Catalog, SDK and online help system My pandemic project was to find, restore and organize scattered and archived remnants of Palm/HP's mobile webOS platform to help keep these delightful little devices alive. https://ift.tt/CQHnfju June 3, 2022 at 05:58PM

Show HN: I wrote a short story about the Minus World in Super Mario Bros https://ift.tt/vZbKLBj

Show HN: I wrote a short story about the Minus World in Super Mario Bros https://ift.tt/oBaCrHO June 3, 2022 at 10:02AM

Muni Forward Gets San Francisco Moving

Muni Forward Gets San Francisco Moving
By Shalon Rogers

A photo of the 30 Stockton using the new, red transit lane on Stockton Street The SFMTA’s Muni Forward program is delivering transit reliability improvements that are transforming the Muni system and enhancing the customer experience. With 80 miles of upgrades since 2014 that often bring travel time savings of 20% or more, Muni Forward is making a big difference in how San Francisco moves. These upgrades, which can be seen in this Muni Forward Photo Map, draw from a “toolkit” of over 20 reliability and customer experience improvements, such as transit lanes that provided dedicated space for Muni vehicles to cut through traffic, transit bulbs that reduce delays at transit stops and traffic signals with transit priority that give the green light to transit vehicles as they approach the intersection, when possible.

The recently completed Van Ness Improvement Project thrust Muni Forward back into the spotlight with San Francisco’s first Bus Rapid Transit (BRT) corridor. While the Van Ness Improvement Project was a massive overhaul that required significantly more time and money to implement than the average Muni Forward project, we are seeing familiar benefits resulting from the transportation improvements. In just under two months, Muni riders on Van Ness are seeing a travel time savings of up to 35% northbound (up to nine minutes per trip) and 22% southbound on weekdays. After the first week of this drastically improved service, ridership on the 49 Van Ness-Mission increased by 13%.  

We’ve seen similar outcomes on past Muni Forward projects that share many features implemented on the BRT corridor. In addition to improved travel times and reliability, ridership has increased by 10% or more on many of the lines where Muni Forward improvements have been implemented, such as the 5R Fulton Rapid, 9R San Bruno Rapid and 38R Geary Rapid. And though ridership has decreased during the pandemic, it has returned fastest on many of the lines where we’ve made these improvements, such as the 22 Fillmore, which now has more riders than in 2019. 

Photo of people boarding a Muni light rail vehicle using the new transit bulb on Irving Street.

New transit bulb on Irving Street

Thanks to Muni Forward, San Francisco now has over 60 miles of dedicated transit lanes. Among these are the lanes that were installed as part of the Temporary Emergency Transit Lanes program. Made permanent in late 2021 and early 2022, these lanes have provided travel time savings of up to 31% for routes that carry 40% of current Muni customers, including the T Third, 1 California, 14 Mission, 14R Mission Rapid, 19 Polk, 27 Bryant, 28 19th Avenue, 38 Geary, 38R Geary Rapid, 43 Masonic and 44 O’Shaughnessy. 

Photo of the new carpool lanes on Park Presidio Boulevard and the sign letting people know that the right lane is an HOV lane for two or more passengers.

New carpool lanes on Park Presidio Boulevard

Another notable recent Muni Forward project is the Park Presidio Lombard Temporary High-occupancy vehicle (HOV) lanes, which are the first urban arterial carpool lanes in the state. In partnership with Caltrans, this pilot project is already seeing travel time savings of up to 10%. 

Looking ahead, Muni Forward is not slowing down. Planning is underway for improvements on the 29 Sunset, and we’ve started construction on improvements to the 22 Fillmore, 28 19th Avenue and L Taraval. We’re also preparing for construction on improvements to the 14 Mission, 5 Fulton, 27 Bryant and 30 Stockton. Plans for transit delay hot spot improvements are also in the works, which will help improve Muni reliability at specific intersections where we have seen the most transit delay for Muni.  

Additionally, making improvements to Muni’s Metro service will be a major focus over the next few years. Upcoming Muni Forward projects will focus on surface-level improvements for the J Church, K Ingleside, M Ocean View, T Third and N Judah, which will complement the Muni Metro Modernization efforts that are already underway. 

Map showing the Muni Forward transit priority projects across the city, including approved or built corridors, future transit priority corridors and temporary emergency transit lanes that are not yet made permanent.

Map of Muni Forward transit priority improvements

For a look at Muni Forward plans across the city, check out the map of Muni Forward transit priority improvements and see how Muni Forward is improving the system for customers, one project at a time.

Sign up to stay informed about future Muni Forward improvements.



Published June 03, 2022 at 04:08AM
https://ift.tt/noUG5ly

Show HN: I’ve Built a Digital Organ and This Is What I Learned https://ift.tt/uvSFBo8

Show HN: I’ve Built a Digital Organ and This Is What I Learned https://ift.tt/F1VRhHl June 3, 2022 at 01:31AM

Show HN: Svelvet – A component library for building interactive flow diagrams https://ift.tt/7Xh8KYI

Show HN: Svelvet – A component library for building interactive flow diagrams https://svelvet.io/ June 2, 2022 at 08:39PM

Show HN: I spent my vacation writing a modern JVM assembler https://ift.tt/sPHCMtn

Show HN: I spent my vacation writing a modern JVM assembler https://ift.tt/oFKvune June 3, 2022 at 01:10AM

Show HN: Try out my side project Taaalk https://ift.tt/R9bKwBL

Show HN: Try out my side project Taaalk https://ift.tt/wd3mtEQ June 2, 2022 at 10:22PM

Thursday, June 2, 2022

Show HN: Beautiful open-source themes for CodeMirror https://ift.tt/tUhECQP

Show HN: Beautiful open-source themes for CodeMirror https://thememirror.net June 2, 2022 at 02:24AM

Show HN: Display famous paintings on your Terminal https://ift.tt/8QMiWjH

Show HN: Display famous paintings on your Terminal https://ift.tt/1SZmT2f June 2, 2022 at 01:55AM

Show HN: Easy donation based mumble hosting https://ift.tt/8bKUYu4

Show HN: Easy donation based mumble hosting We want to give everyone the possibility to get their own Mumble server in an uncomplicated way, regardless of their financial and technical possibilities. Source: https://ift.tt/MdpVtT1 https://ift.tt/orxdNAu June 1, 2022 at 11:54PM

Show HN: MarkovJunior, PPL based on pattern matching and constraint propagation https://ift.tt/BXpILDb

Show HN: MarkovJunior, PPL based on pattern matching and constraint propagation https://ift.tt/q6G4PBO June 1, 2022 at 06:28PM

Show HN: A color palette design tool for websites https://ift.tt/zFKrEJA

Show HN: A color palette design tool for websites Hi HN, while building something entirely, I realized that there is a lack of tools to pick colors for websites and web apps. While there certainly is an abundance of tools for color palettes, but they mostly give you three to five bright or pastel colors. Not what you need for websites. For that, you need one or two primary colors, and then stuff like text color, background, and so on. So, together with another web dev I built a small web tool that allows picking exactly the colors you need for web projects and live preview your palette on a selection of demo websites. The first version of the tool is online at https://ift.tt/lVIBdhE. Free and no sign up. We are already using this to for early stage projects, so I hope this provides value for you as well. Of course we are also happy about any and all feedback. Cheerz :) June 1, 2022 at 11:38PM

Emergency Response Transit Lanes Program Shows Long-term Success

Emergency Response Transit Lanes Program Shows Long-term Success
By Erin McMillan

After the Temporary Emergency Transit Lane program used a quick-build approach to install over 15 miles of emergency-response transit lanes in about 18 months, we have the numbers that show its success. Here is the program evaluation summary. 

During the early months of the pandemic, with traffic at an all-time low, Muni routes saw a 15% reduction in travel time on average and as much as 50% on certain corridors. Building off this analysis, the SFMTA identified key routes that could benefit from transit lanes that would preserve those speed and reliability improvements. These transit lanes improved reliability along the entire line, improving rider experience in Muni Service Equity Strategy neighborhoods and throughout the city. This allowed us to provide more frequent and less crowded service at a time when resources were very limited.

We launched the Temporary Emergency Transit Lane (TETL) program to preserve this time savings even as traffic returned, so people making essential trips on Muni wouldn’t get stuck on slow and crowded buses. The program also helped us provide as much frequency as possible despite pandemic-related limitations on operational resources, and build up Muni’s resiliency to ensure an equitable and sustainable economic recovery.

Overall, the TETL program saw the following measurable benefits:

  • Travel times savings of up to 31%.
  • Improved reliability on lines serving 40% of all Muni riders.
  • Up to 89% of surveyed operators stated that the improvements made their jobs easier.

The TETL program helped make the last two years the fastest expansion of transit lanes in the city’s history, benefitting riders on the 1 California, 14 Mission/14R Mission Rapid, 19 Polk, 27 Bryant, 28 19th Avenue, 38 Geary/38R Geary Rapid, 43 Masonic/44 O’Shaughnessy and T Third. Moreover, all these projects benefit lines that serve neighborhoods identified by the Muni Service Equity Strategy.

With these great results early in the program’s implementation, six of the seven TETL corridors were made permanent in late 2021 and early 2022 after extensive evaluation and outreach. One corridor, the Park Presidio Lombard Temporary HOV Lanes, will continue as a longer pilot to allow for further evaluation in partnership with Caltrans.

The TETL program was a critical piece of the SFMTA’s response to the COVID-19 pandemic. Moving forward, the initial shelter-in-place travel time savings analysis used to identify corridors for TETL improvements will be used to identify additional corridors for future improvements as part of Muni Forward, the SFMTA’s ongoing transit priority program.



Published June 02, 2022 at 12:05AM
https://ift.tt/d7aUVwE

Show HN: Pocket2Linkding – Migrate from Mozilla Pocket to Linkding https://ift.tt/IwYJfju

Show HN: Pocket2Linkding – Migrate from Mozilla Pocket to Linkding With the Mozilla Pocket shutdown coming up in about two weeks, I thought ...