Caroline Ellison by Ciro Santilli 35 Updated +Created
Some analysts seem to suggest that the things she said were bad.
But they're not.
They're a rare example of someone with some power saying cool honest stuff that comes across their mind.
Unlike the endless mandatory corporate bullshit we usually get otherwise.
Functional programming is a subset of imperative programming by Ciro Santilli 35 Updated +Created
Ciro Santilli thinks imperative programming is just a superset of functional programming where you can have state.
C and C++: OK, you're old before the Internet and compiled, forgiven.
Python: OMG, please, just make it work!!! Your are interpreted!!! You are a hot web technology!!! Node.js and Ruby are doing just fine, and Ruby is not newer than you!!! See also: pip.
Game AI research by Ciro Santilli 35 Updated +Created
Game AI by game genre by Ciro Santilli 35 Updated +Created
Permanent brain by Ciro Santilli 35 Updated +Created
GAN MNIST hello world by Ciro Santilli 35 Updated +Created
The GAN paper itself does a bit of this, cool hello world:
AI brittleness and robustness by Ciro Santilli 35 Updated +Created
Text-to-text model by Ciro Santilli 35 Updated +Created
Text-to-video by Ciro Santilli 35 Updated +Created
This was the Holy Grail as of 2023, when text-to-image started to really take off, but text-to-video was miles behind.
Satoshi tribute by Ciro Santilli 35 Updated +Created
git clone by Ciro Santilli 35 Updated +Created
Git remote communcation by Ciro Santilli 35 Updated +Created
Git object by Ciro Santilli 35 Updated +Created
Understand the commit tree by Ciro Santilli 35 Updated +Created
This is the most important thing to understand Git!
You must:
  • be able to visualize the commit tree
  • understand how each git command modifies the commit DAG
It's not a tree, it's actually a DAG by Ciro Santilli 35 Updated +Created
But not every directed acyclic graph is a tree.
Example of a tree (and therefore also a DAG):
5
|
4 7
| |
3 6
|/
2
|
1
Convention in this presentation: arrows implicitly point up, just like in a git log, i.e.:
  • 1 is parent of 2
  • 2 is parent of 3 and 6
  • 3 is parent of 4
and so on.
Example of a DAG that is not a tree:
7
|\
4 6
| |
3 5
|/
2
|
1
This is not a tree because there are two ways to reach 7:
  • 2, 3, 4, 7
  • 2, 5, 6, 7
But we often say "tree" intead of "DAG" in the context of Git because DAG sounds ugly.
Example of a graph that is not a DAG:
6
^
|
3->4
^  |
|  v
2<-5
^
|
1
This one is not acyclic because there is a cycle 2, 3, 4, 5, 2.
Why is Git a DAG? by Ciro Santilli 35 Updated +Created
Because a Git commit can have more than 1 parent due to merge commits when you do:
git merge
It can even have more than 2, there's no limit. Although that is not so common (with good reason, 2 is already one too many): softwareengineering.stackexchange.com/questions/314215/can-a-git-commit-have-more-than-2-parents/377903#377903

Unlisted articles are being shown, click here to show only listed articles.