Twitter's Recommendation Algorithm — AI-enhanced development makes me more ambitious with my projects — and Grand jury votes to indict Donald Trump

 
Logo 570 p1@2x min

Issue #1088 — April 01, 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

Twitter’s Recommendation Algorithm

2

AI-enhanced development makes me more ambitious with my projects

3

Grand jury votes to indict Donald Trump

4

My kids and I just played D&D with ChatGPT4 as the DM

5

Postgres as a graph database
 

Your side-project here? Contact us for more info

 

6

Italian privacy regulator bans ChatGPT

7

75% of the Most Played Games on Steam Are Playable on the Steam Deck

8

NYPD is refusing to comply with NYC’s new surveillance tech laws

9

Vicuna: An open-source chatbot impressing GPT-4 with 90% ChatGPT quality

10

Could you train a ChatGPT-beating model for $85k and run it in a browser?
 

11

Cosine Implementation in C

12

Show HN: Multi-display screen sharing with CoScreen

13

When SVG almost got network support for raw sockets

14

Janet for Mortals

15

Faiss: A library for efficient similarity search
 

16

Police relied on Clearview AI and put the wrong person in jail

17

BigQuery prices increasing by more than 100% for many users

18

Pairing With GPT-4

19

San Francisco schools banned kids from taking algebra in 8th grade

20

Gmail is killing independent email
 

This digest was generated for you on 1 April, 6:03am for delivery at 7:00am and contains the top 20 stories between 31 March, 2:00am and 1 April, 2:00am

Your next delivery is on Sunday, 2 April at 7:00am. Adjust these settings.

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

Key phrases

Older messages

TikTok Ban Bill Is Patriot Act 2.0 Trojan Horse [video] — and Is Y Combinator worth the money? Brutally honest review of W22 batch experience

Thursday, March 30, 2023

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

The age of average — Gpt4all: A chatbot trained on ~800k GPT-3.5-Turbo Generations based on LLaMa — and Pause Giant AI Experiments: An Open Letter

Wednesday, March 29, 2023

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

Bicycle — PayPal has restricted our account after we invoiced a key containing “ALEP” — and Apple Music Classical

Tuesday, March 28, 2023

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

Windows needs to stop showing tabloid news — The chat control proposal does not belong in democratic societies — and Apple passwords deserve an app

Monday, March 27, 2023

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

I lost everything that made me love my job through Midjourney — Utah is first US state to limit teen social media access — and Jacob Ziv has died

Sunday, March 26, 2023

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

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