Skip to content

Instantly share code, notes, and snippets.

View tamnd's full-sized avatar

Tam Nguyen Duc tamnd

  • Ho Chi Minh City, Vietnam
View GitHub Profile
@tamnd
tamnd / programmer.md
Created May 7, 2026 19:18
The Programmer After AI

The Programmer After AI

Programming used to leave fingerprints.

A person who wrote a piece of code had usually spent enough time inside it to know something about it. Not everything, and often less than they claimed, but enough to carry some memory of the choices. They had named the variables, moved the data around, found the missing branch, stared at the error, and returned to the same file often enough that the program had passed through them.

That link has weakened. A programmer can now produce a large diff without having lived with the decisions inside it. The code can arrive with good names, reasonable structure, plausible tests, and a calm explanation of the tradeoffs. It can look considered before anyone has really considered it.

This changes the job.

// matmul.cpp
#include <vector>
#include <eigen/Dense>
#include "matmul.h"
#include "tensorflow/core/public/session.h"
#include "tensorflow/cc/ops/standard_ops.h"
using namespace tensorflow;
func plusOne(digits []int) []int {
n := len(digits)
i := n - 1
for i >= 0 {
if digits[i] == 9 {
digits[i] = 0
i--
} else {
digits[i]++
return digits

2017-04-07

TODO

  • Learn Webpack
  • Front-end
    • Setup front-end project with Vue.js and webpack
    • List all pages and components
    • List all APIs
  • Design
    • Language page
  • Navbar
@tamnd
tamnd / 1.1. ipynb
Last active August 29, 2015 14:21
1.1 Polynomial Curve Fitting.ipynb
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{