Skip to content

Instantly share code, notes, and snippets.

@cp6
cp6 / type.txt
Created September 24, 2018 01:05
DayZ type.xml dump Item names
ACOGOptic
AgaricusMushroom
AKM
AK_Suppressor
AK_WoodBttstck
AK_WoodHndgrd
AliceBag_Black
AliceBag_Camo
AliceBag_Green
AmanitaMushroom
@plugnburn
plugnburn / README.md
Last active August 24, 2025 10:40
NokiaTool - simple interface Bash script for MediaTek-based Nokia simple phones

NokiaTool: control MediaTek-based Nokia phones from your PC

Overview

NokiaTool is a simple Bash script (nokiatool.sh) that allows you to use an undocumented serial connection in USB-enabled MediaTek-based Nokia feature phones manufactured by Microsoft (even the most basic ones, like the new 105) in order to control them from your PC.

This project is an ongoing work and uses only some bits and pieces of information about the phone internals available to the public, so under any circumstances don't consider it stable or a replacement for official tools if any are present.

@pfmoore
pfmoore / factorio-recipe-parser.lua
Last active July 16, 2024 16:50
Parse the Factorio recipe files to create a CSV of recipes
data = {}
data["extend"] = function (data, t)
for n, recipe in ipairs(t) do
for i, component in ipairs(recipe["ingredients"]) do
cname = component[1] or component["name"]
camt = component[2] or component["amount"]
print('"' .. recipe["name"] .. '","' .. cname .. '",' .. camt)
end
end
end