Skip to content

Instantly share code, notes, and snippets.

View barbeque's full-sized avatar

Mike barbeque

  • Calgary AB Canada
View GitHub Profile
@infval
infval / qd2fds.py
Last active December 4, 2023 01:09 — forked from einstein95/qd2fds.py
Converts between QD and FDS disk images (Family Computer Disk System / Famicom)
#!/usr/bin/env python3
"""
Converts between QD and FDS disk images
"""
import struct
def create_fds_header(side_count):
return b"FDS\x1A" + bytes([side_count & 0xFF]) + bytes(11)

#Quixel Megascans Bridge API ####Updated: Aug 19th, 2016

We have developed an API to fetch information from the Bridge. The following is an initial list of endpoints any software will be able to retrieve information from.

  • Megascans repository path
  • Zip folder paths
  • Get all assets (folder and json path)
  • Get selected assets (folder and json path)
  • Search results (folder and json path) against a string
@tsutsui
tsutsui / PC-8801MA-capacitors.txt
Created May 7, 2016 20:03
PC-8801MA の電源ユニットとメインボードで使われている電解コンデンサ一覧
--------------------------------------------------------
PC-8801MA の電源ユニットで使われている電解コンデンサ一覧
--------------------------------------------------------
C605 200V 560uF ルビコン MXP 高圧1次側平滑
C609 25V 100uF 日ケミ KMC 1次側電圧制御用?
C612 63V 22uF 日ケミ KMC 1次側電圧制御用?
C613 25V 470uF 日ケミ KMC 1次側電圧制御用?
@awatson1978
awatson1978 / gist:a0df5fef953b9da01ce1
Last active May 19, 2017 11:57
Publish an Atom Package
command-shift-P > Package > Package Generator: Generate Syntax Theme > mypackage
cd ~/.atom/packages/mypackage
apm login
apm develop mypackage
cd ~/github/mypackage
sudo chown -R username:wheel .
git commit -a -m 'checking everything in'
apm publish --tag v2.5.0 minor
@mhyee
mhyee / dependency_graph.gv
Last active March 27, 2020 17:05
Graphviz file for drawing a dependency graph. http://www.graphviz.org/
// Online Graphviz: http://webgraphviz.com/
// https://i.imgur.com/NHmoDnj.png
digraph g{
node [shape="box",style=rounded];
"a.out" -> "C.o"
"a.out" -> "B.o"
"a.out" -> "A.o"
"C.o" -> "C.cpp"
"B.o" -> "B.cpp"