GitHub Copilot X – Sign up for technical preview — Hyundai promises to keep buttons in cars — and Bob Metcalfe wins Turing Award

 
Logo 570 p1@2x min

Issue #1079 — March 23, 2023

Logo 570 p2@2x min
 

You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer.

 

1

GitHub Copilot X – Sign up for technical preview

2

Hyundai promises to keep buttons in cars

3

Bob Metcalfe wins Turing Award

4

Bard uses a Hacker News comment as source to say that Bard has shut down

5

A eulogy for Dark Sky, a data visualization masterpiece
 

Your side-project here? Contact us for more info

 

6

Show HN: Finetune LLaMA-7B on commodity GPUs using your own text

7

Mozilla.ai: Investing in Trustworthy AI

8

Counter-Strike 2 – Limited Test for select CS:GO players

9

Extracting the GameBoy ROM from photographs of the die

10

Show HN: ChatLLaMA – A ChatGPT style chatbot for Facebook’s LLaMA
 

11

DPReview is being archived by the Archive Team

12

America’s banks are missing hundreds of billions of dollars

13

Shields Up

14

Every possible Wordle solution visualized

15

FauxPilot – an open-source GitHub Copilot server
 

16

Understanding the .NET ecosystem: The evolution of .NET into .NET 7

17

Grace Hopper on Late Night with David Letterman (1986) [video]

18

Yandex open-sources its exabyte-scale big data platform

19

Show HN: Generate styled web pages with just Python

20

Unpopular Opinion: Don’t Use a Raspberry Pi for That
 

This digest was generated for you on 23 March, 6:05am for delivery at 7:00am and contains the top 20 stories between 22 March, 2:00am and 23 March, 2:00am

Your next delivery is on Friday, 24 March at 7:00am. Adjust these settings.

Privacy Policy | Instant Unsubscribe | Settings | hello@hndigest.com

Key phrases

Older messages

Run 100B+ language models at home, BitTorrent‑style — Adobe Firefly: AI Art Generator — and DPReview.com to close

Tuesday, March 21, 2023

Issue #1078 — Top 20 stories of March 22, 2023 Issue #1078 — March 22, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1 Run

Cyclists now outnumber motorists in City of London — and Amazon to lay off 9,000 more workers after earlier cuts

Monday, March 20, 2023

Issue #1077 — Top 20 stories of March 21, 2023 Issue #1077 — March 21, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1

Build full “product skills” and you'll probably be fine — and Ken Thompson's keynote talk about a jukebox he built [video]

Sunday, March 19, 2023

Issue #1076 — Top 20 stories of March 20, 2023 Issue #1076 — March 20, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1

SETI@home is in hibernation — Tracking the Fake GitHub Star Black Market — and More students are turning away from college and toward apprenticeships

Saturday, March 18, 2023

Issue #1075 — Top 20 stories of March 19, 2023 Issue #1075 — March 19, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1 SETI

Give babies peanut butter to cut peanut allergies, study says — and Prostate cancer could be treated by destroying tumors with electric currents

Friday, March 17, 2023

Issue #1074 — Top 20 stories of March 18, 2023 Issue #1074 — March 18, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1 Give

Federal judge: Border searches of cell phones require a warrant — Rarbg Is No More — and Had a call with Reddit to discuss pricing

Wednesday, May 31, 2023

Issue #1149 — Top 20 stories of June 01, 2023 Issue #1149 — June 01, 2023 You receive this email because you are subscribed to Hacker News Digest. You can open it in the browser if you prefer. 1

[New post] Microsoft .NET Code Analysis: Use the Index Operator

Wednesday, May 31, 2023

dotNetDave posted: " C# 8 introduced the index-from-end operator when accessing items in a collection. Here is an example of this prior to C# 8: return results[results.Count - 1]; In this case,

[New post] Microsoft .NET Code Analysis: Use Compound Assignments

Wednesday, May 31, 2023

dotNetDave posted: " Compound assignments have been available since .NET was released and is the preferred way to modify numbers and strings. Here is an example of the issue: var peopleCount = 0;

[New post] Microsoft .NET Code Analysis: The Importance of the readonly Modifier

Wednesday, May 31, 2023

dotNetDave posted: " The readonly modifier is used to designate fields or variables that can only be assigned once, typically during object creation or in the constructor. It is commonly employed

Hackers steal 9M dental patients' info in year's biggest reported health data breach

Wednesday, May 31, 2023

TechCrunch Newsletter TechCrunch logo The Daily Crunch logo By Christine Hall Wednesday, May 31, 2023 Today, some cybercrimes were uncovered, we found out how many of you are curious about the new

[New post] Microsoft .NET Code Analysis: Always Use Accessibility Modifiers

Wednesday, May 31, 2023

dotNetDave posted: " Accessibility modifiers are used to control the visibility of accessibility of types and members and are critical for proper Object-Oriented Programming. Here is why you need

[New post] Microsoft .NET Code Analysis: Remove Unread Private Members

Wednesday, May 31, 2023

dotNetDave posted: " As code is removed or changed in a class, often that might create unused private members such as variables, methods, properties, etc. It's important to remove them to

[New post] Microsoft .NET Code Analysis: Inline Variable Declaration

Wednesday, May 31, 2023

dotNetDave posted: " Starting with .NET 7, when calling a method with an out parameter, it's advisable to inline the variable declaration. Here is an example of the issue: double number1;if(

[New post] Microsoft .NET Code Analysis: aDD bRACES IN c#

Wednesday, May 31, 2023

dotNetDave posted: " Not adding braces {} to if statements can cause issues and readability issues. This code causes a violation: if (somelist[i] != other.somelist[i]) return false; This is how

[New post] Microsoft .NET Code Analysis: Remove Unnecessary Using Directives

Wednesday, May 31, 2023

dotNetDave posted: " I always remove unnecessary using directives for a few reasons that I discuss in detail in my coding standards book and conference session. First, let me show the issue: using