It has taken humans a surprisingly long time to get better at knowing things. It's really important. And today it's even more important because social media's engagement algorithms show us whatever will keep us engaged, and so we end up living deeper and deeper in divided worldviews, unable to agree about reality.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """A minimalist line-breaker that expands the fewest brackets to fit the line. | |
| Unlike black/blue/ruff -- which explode the outermost bracket first and | |
| stack every closing bracket on its own line -- this tool opens the | |
| minimum number of brackets and coalesces adjacent ones. e.g. :: | |
| response = authed_client().get(reverse('forwarding:detail', args=[c.id])) | |
| becomes :: |
This section assumes that openSUSE Tumbleweed is being installed on an existing encrypted drive.
Choose "Expert Partitioner"
A quick look at using GitHub Copilot from an IDE versus using it from github.com.
And a deeper dive into an example, where Copilot (using GPT 4o) goes head-to-head with DeepSeek-V3, and Copilot using o1, to refactor the same chunk of code.
URLs used in the refactoring example:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import sys | |
| from collections import Counter | |
| num_to_word = { | |
| 3: 'three', | |
| 4: 'four', | |
| 5: 'five', | |
| 6: 'six', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AIDS Acquired Immuno-Deficiency Syndrome | |
| ADR Adverse Drug Reactions | |
| ANM Auxiliary Nurse Midwife | |
| ART antiretroviral therapy | |
| ARTI Annual Risk of Tuberculous Infection | |
| ASHA Accredited Social Health Activist | |
| AWW Anganwadi Worker | |
| ATP Advanced Tour Program | |
| BPHC Block Primary Health Centre | |
| CBNAAT Cartridge-based nucleic acid amplification test |
NewerOlder