Skip to content

Instantly share code, notes, and snippets.

@msymt
msymt / vmware_fusion_retrial.sh
Created June 12, 2024 01:38 — forked from leiless/vmware_fusion_retrial.sh
Retrial VMWare Fusion another 30 days
#!/bin/sh
#
# Retrial VMWare Fusion another 30 days
#
set -eu
sudo rm -rf /Library/Preferences/VMware\ Fusion/license-fusion-*
echo "Done! please restart VMware Fusion.app."
@msymt
msymt / RAMN_setup.md
Last active May 30, 2023 12:17
RAMN初期設定
apt install -y python3-pip can-utils socat openocd
pip3 install python-can pyserial
@msymt
msymt / color_bb.py
Created December 20, 2022 06:43 — forked from zcutlip/color_bb.py
Ghidra Script to Colorize all Basic Blocks for a Provided list of Addresses
from java.awt import Color
from ghidra.util.task import ConsoleTaskMonitor
from ghidra.program.model.block import BasicBlockModel
from docking.options.editor import GhidraColorChooser
"""
Ghidra script to colorize all basic blocks identified by the input file.
Prompts for a file to use as input. This script will attempt to sanity check
that a basic block actually does start at each provided address.
@msymt
msymt / xxd_and_print_file.py
Created October 24, 2022 03:39
xxd対象のファイル名とその結果を順に表示するプログラム
import glob
import subprocess
dir = "/path/to/dir"
files = glob.glob(dir + "*")
files.sort()
for file in files:
r = subprocess.run(["xxd", file], stdout=subprocess.PIPE)
with open("output.txt", "a") as f:
@msymt
msymt / main.cs
Created October 17, 2022 08:47
read 1byte and increment from MappedMemoryFile in C#
using System;
using System.IO;
using System.IO.MemoryMappedFiles;
using System.Runtime.InteropServices;
public class HelloWorld
{
static public void Main ()
{
string MappedMemoryFileName = "/tmp/mmf";
@msymt
msymt / howto-tech-docs.md
Created September 13, 2022 04:45 — forked from ymmt2005/howto-tech-docs.md
技術文書の書き方

技術文書の書き方

このメモは、私(@ymmt2005)が長年にわたってソフトウェアプロダクト開発に関わってきて 2022年現在こうしたほうが良いと考えているベストプラクティスです。

科学的な分析等に基づくわけではない経験則であるため、今後も随時見直すことがありますし、 ここに書いてあることが常に正しいわけでもあらゆるソフトウェア開発に適するわけでもありません。

しかしながら、実務経験が豊富で、モダンな技術スタックに明るいエンジニアの経験則は一定の 役に立つのではないかと考えて記します。

@msymt
msymt / .gdbinit
Created September 5, 2022 06:46
my gdbinit
python
# GDB dashboard - Modular visual interface for GDB in Python.
#
# https://github.com/cyrus-and/gdb-dashboard
# License ----------------------------------------------------------------------
# Copyright (c) 2015-2022 Andrea Cardaci <[email protected]>
#
@msymt
msymt / get_can_id_from_candump_log.py
Last active June 4, 2023 05:50
candumpのdumpファイルからcan idだけuniqueに抽出するpythonスクリプト
DUMP_FILE = "CANDUMP.log"
can_id_array = []
with open(DUMP_FILE, 'r') as f:
while True:
data = f.readline()
if not data:
break
@msymt
msymt / convert_two_complement_hex_to_dec.py
Last active August 16, 2022 06:40
12ビットの符号付き整数の16進数を10進数に変換するプログラム
"""
12ビットの符号付き整数の16進数(1桁+2桁が別の変数) -> 10
data1: 4bit
data2: 12bit
total: 16bit
"""
# data1: 0xF, data2: 0xFF
def convert_two_complement_hex_to_dec(data1, data2):
@msymt
msymt / read_mmf.c
Created July 28, 2022 05:11
Reading Memory Mapped File written by C# in C
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>