Skip to content

Instantly share code, notes, and snippets.

From 234e37c1b338899f1269981aabc651f3b103c7ec Mon Sep 17 00:00:00 2001
From: Tonis Tiigi <tonistiigi@gmail.com>
Date: Mon, 13 Jul 2020 22:49:20 -0700
Subject: [PATCH] [go1.13] temp fix for darwin/arm64
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
---
src/cmd/link/internal/ld/lib.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
@0xjac
0xjac / private_fork.md
Last active June 21, 2024 18:18
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare git@github.com:usi-systems/easytrace.git

@CMCDragonkai
CMCDragonkai / memory_layout.md
Last active June 17, 2024 12:05
Linux: Understanding the Memory Layout of Linux Executables

Understanding the Memory Layout of Linux Executables

Required tools for playing around with memory:

  • hexdump
  • objdump
  • readelf
  • xxd
  • gcore
@tatsushid
tatsushid / mkimage-yum.sh
Created September 30, 2014 11:27
Script for building CentOS 3 i386 docker image
#!/usr/bin/env bash
#
# Create a base CentOS 3 Docker image.
#
# This script is useful on systems with yum installed (e.g., building
# a CentOS 3 image on CentOS 3). It is taken from
# https://github.com/docker/docker/blob/master/contrib/mkimage-yum.sh
# and modified for CentOS 3
usage() {