Skip to content

Instantly share code, notes, and snippets.

View Integ's full-sized avatar
⚜️
Valar Morghulis

姜上 Integ

⚜️
Valar Morghulis
View GitHub Profile
@Integ
Integ / frp.md
Created April 5, 2016 13:27 — forked from ohanhi/frp.md
Learning FP the hard way: Experiences on the Elm language

Learning FP the hard way: Experiences on the Elm language

by Ossi Hanhinen, @ohanhi

with the support of Futurice 💚.

Licensed under CC BY 4.0.

Foreword

@Integ
Integ / iterm.scpt
Created June 14, 2016 07:00 — forked from gnachman/iterm.scpt
Fix docker quickstart terminal for iTerm2 version 2.9 and later
on write_to_file(this_data, target_file, append_data)
try
set the target_file to the target_file as string
set the open_target_file to open for access file target_file with write permission
if append_data is false then set eof of the open_target_file to 0
write this_data to the open_target_file starting at eof
close access the open_target_file
return true
on error
try
@Integ
Integ / RokidOS_install_npm.sh
Last active July 3, 2018 04:19
install npm to RokidOS
#!/bin/sh
# A word about this shell script:
#
# It must work everywhere, including on systems that lack
# a /bin/bash, map 'sh' to ksh, ksh97, bash, ash, or zsh,
# and potentially have either a posix shell or bourne
# shell living at /bin/sh.
#
# See this helpful document on writing portable shell scripts:
@Integ
Integ / keybase.md
Created July 7, 2018 06:46
keybase

Keybase proof

I hereby claim:

  • I am integ on github.
  • I am integj (https://keybase.io/integj) on keybase.
  • I have a public key ASBj7a9i6GfoWNIvzisXrSxT0quInNcWAxH1vCVerBECkAo

To claim this, I am signing this object:

@Integ
Integ / unwxapkg.py
Last active March 26, 2024 02:51 — forked from feix/unwxapkg.py
A useful tool for unpack wxapkg file with python3 surport.
# coding: utf-8
# py2 origin author lrdcq
# usage python3 unwxapkg.py filename
__author__ = 'Integ: https://github.com./integ'
import sys, os
import struct
class WxapkgFile(object):