Page 23 of 127 (2525 total posts)

March 2023

19-03-2023
Zed - Code at the speed of thought

Zed - Code at the speed of thought

Source: zed.dev

Just to prove that theres never the last word on anything, especially programmers editors. I thought history ended with vscode. But take a look st this, pretty tantilizing! Author says: “Code at the speed of thought. Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.”

Notes:

A very interesting new text editor. Looks a lot like vscode. Playing with it. It is written in RUST which is always now the key to being a cool app. It is very very fast. But it does not have all the plugins I rely on.

Tags: vscode editor cool-tools programmers-editor
19-03-2023
A nice list of so-called “dark patterns”, user interface techniques to manipulate or deceive the user into choosing a course of action which is disadvantageous to the user themselves.

A nice list of so-called “dark patterns”, user interface techniques to manipulate or deceive the user into choosing a course of action which is disadvantageous to the user themselves.

Source: dailyinfographic.com

A nice list of so-called “dark patterns”, user interface techniques to manipulate or deceive the user into choosing a course of action which is disadvantageous to the user themselves. URL: https://dailyinfographic.com/wp-content/uploads/2023/02/01_Which-Retail-Websites-Have-the-Most-Dark-Patterns_Mini-IG.png?utm_source=substack&utm_medium=email Type: image Domain: dailyinfographic.com

Tags: dark-patterns ux design user-interface explainer cool-tools
03-03-2023
The Missing Semester of Your CS Education

The Missing Semester of Your CS Education

Source: missing.csail.mit.edu

Classes teach you all about advanced topics within CS, from operating systems to machine learning, but there’s one critical subject that’s rarely covered, and is instead left to students to figure out on their own: proficiency with their tools. We’ll teach you how to master the command-line, use a powerful text editor, use fancy features of version control systems, and much more!

Tags: education software-engineering explainer course computerscience

February 2023

24-02-2023
CheatGPT

CheatGPT

Source: blog.humphd.org

If you teach programming, this is a very insightful article. It doesnt solve anything though. From the author: “This week I stepped out of one world and landed in another.  It started while I was marking assignments in a few of my programming courses.The quality of the code I was reading was amazing!  My students were doing the sorts of things that my open source peers do.”

Tags: teaching cheating programming asessment grades chatgpt
20-02-2023
Transformer models: an introduction and catalog — 2023 Edition

Transformer models: an introduction and catalog — 2023 Edition

Source: amatriain.net

Author" "I have a terrible memory for names. In the past few years we have seen the meteoric appearance of dozens of models of the Transformer family, all of which have funny, but not self-explanatory, names. The goal of this post is to offer a short and simple catalog and classification of the most popular Transformer models. In other words, I needed a Transformers cheat-sheet and couldn’t find a good enough one online, so I thought I’d write my own. I hope it can be useful to you too"

Tags: ai transformers index list neural-net
17-02-2023
Rails initializers you don't know about - Inflections

Rails initializers you don't know about - Inflections

Source: blog.saeloun.com

Fun Rails Esoterica. One of the features that new Rails people are amused and surprised by: "Rails come with a lot of initializers that we are not quite familiar with. One of them is the inflections initializer. In this post, we will look at what inflections.rb is and how we can use them."

Tags: rails ruby initializers inflections fun explainer
17-02-2023
What Is ChatGPT Doing … and Why Does It Work?

What Is ChatGPT Doing … and Why Does It Work?

Source: writings.stephenwolfram.com

This is a pretty amazing article. Even though it's "non technical" and I read all of it, I think I only understood about 75%: "Stephen Wolfram explores the broader picture of what's going on inside ChatGPT and why it produces meaningful text. Discusses models, training neural nets, embeddings, tokens, transformers, language syntax."

Tags: stephen-wolfram machine-learning neural-net chatgpt
12-02-2023
GPT in 60 Lines of NumPy | Jay Mody

GPT in 60 Lines of NumPy | Jay Mody

Source: jaykmody.com

Implementing a GPT model from scratch in NumPy. This is a detailed article including python source code. Ive skimmed it and it does explain a lot. But even without my being a neural net, ai, machine learning, gpt, chatgpt expert, i think i would learn a lot. Also the article is very well written presented.

Tags: python machine-learning explainer source-code neural-net chatgpt