Skip to content

Instantly share code, notes, and snippets.

@sharow
sharow / 81-C# Script-NewBehaviourScript.cs
Created November 27, 2013 14:23
for Unity\Editor\Data\Resources\ScriptTemplates\
using UnityEngine;
//using UnityEditor;
using System.Collections;
using System.Collections.Generic;
//[ExecuteInEditMode]
//[AddComponentMenu("Transform/Foo")]
//[RequireComponent(typeof(Foo))]
//[System.Serializable]
using UnityEngine;
//using UnityEditor;
using System.Collections;
using System.Collections.Generic;
//[ExecuteInEditMode]
//[AddComponentMenu("Foo/Bar")]
//[RequireComponent(typeof(Foo))]
//[System.Serializable]
@sharow
sharow / prettyrepr.py
Last active December 15, 2015 17:09
another repr() implementation. readable JSON(or some object) formatter. multibyte string, cut long string.
#!/usr/bin/env python
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; coding: utf-8; -*-
""" prettyrepr.py - another repr() implementation
"""
import sys
version_major = sys.version_info[0]
if version_major == 3:
# python3.x
@sharow
sharow / csdinfo
Last active February 6, 2024 15:40
SD card CSD register formatter (for Raspberry Pi)
#!/usr/bin/env python2
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; coding: utf-8; -*-
# usage:
# $ cat /sys/devices/platform/mmc_host/mmcXXXX/mmcYYYY/csd | csdinfo
#
# reference:
# 'Physical Layer Simplified Specification Version 3.01'
# https://www.sdcard.org/downloads/pls/simplified_specs/Part_1_Physical_Layer_Simplified_Specification_Ver_3.01_Final_100518.pdf