Skip to content

Instantly share code, notes, and snippets.

@ateliee
ateliee / upload_apk_or_aab.py
Last active May 23, 2019 00:53
Android App Bundleを自動アップロードさせる
#!/usr/bin/python
# coding: UTF-8
#
# Copyright 2019 ateliee.com. All Rights Reserved.
#
# 参考
# https://github.com/googlesamples/android-play-publisher-api/tree/master/v3/python
# 公式のものはapkのみのサポートだったので、aab対応してみた。
# ついでにサービスアカウント(json,p12)対応
@ateliee
ateliee / SafeArea.cs
Last active October 14, 2018 01:37
UnityでSafeAreaをエディタ上に表示するMonoBehaviour
using UnityEngine;
using System.Collections;
/// <summary>
/// SafeAreaの反映
/// </summary>
[ExecuteInEditMode]
public class SafeArea : MonoBehaviour
{
private RectTransform rectTransform;
@dmnsgn
dmnsgn / WebGL-WebGPU-frameworks-libraries.md
Last active July 25, 2024 07:43
A collection of WebGL and WebGPU frameworks and libraries

A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.

Engines and libraries ⚙️

Name Stars Last Commit Description
three.js ![GitHub
@craigmccoy
craigmccoy / twitter-entities.js
Created September 3, 2012 19:15 — forked from wadey/twitter-entities.js
JavaScript parser for Tweet Entities
/*
* twitter-entities.js
* This function converts a tweet with "entity" metadata
* from plain text to linkified HTML.
*
* See the documentation here: http://dev.twitter.com/pages/tweet_entities
* Basically, add ?include_entities=true to your timeline call
*
* Copyright 2010, Wade Simmons
* Licensed under the MIT license