ELF Hello World Tutorial / SHT_NULL Updated +Created
Instrumental goal Updated +Created
Pull request Updated +Created
The heart/main innovation of GitHub!
Pro of superconducting qubits Updated +Created
E. Coli K-12 MG1655 gene Updated +Created
Git tips / Move your branch on top of newest master Updated +Created
Before:
5 master
|
4 7 my-feature HEAD
| |
3 6
|/
2
|
1
Action:
git rebase
After:
7 my-feature HEAD
|
6
|
5 master
|
4
|
3
|
2
|
1
Ready to push with linear history!
History of the electromagnetic theory of light Updated +Created
Inside Job (2010) Updated +Created
MSc course of the University of Oxford Updated +Created
Tachyonic antitelephone Updated +Created
The Big Short (2015) Updated +Created
Video 1.
I'm Jacked to the Tits remix by The Big Short (2021)
Source.
Category 5 cable Updated +Created
CUDA Updated +Created
ELF Hello World Tutorial / STT_SECTION Updated +Created
There are two such entries, one pointing to .data and the other to .text (section indexes 1 and 2).
Num:    Value          Size Type    Bind   Vis      Ndx Name
  2: 0000000000000000     0 SECTION LOCAL  DEFAULT    1
  3: 0000000000000000     0 SECTION LOCAL  DEFAULT    2
TODO what is their purpose?
Git tips / Merge two or more commits into one Updated +Created
Before
7 my-feature HEAD
|
6
|
5 master
|
4
|
3
|
2
|
1
Oh, commit 6 was just a temporary step, should be put together with commit 7:
git rebase -i HEAD~2
Mark 6 to be squashed.
After:
67 my-feature HEAD
|
5 master
|
4
|
3
|
2
|
1
Better now, ready to push.

There are unlisted articles, also show them or only show them.