Skip to content

Instantly share code, notes, and snippets.

View deden's full-sized avatar
๐Ÿšง
builder

Deden Ramadhan deden

๐Ÿšง
builder
View GitHub Profile
@dispix
dispix / CHANGELOG.md
Last active July 22, 2024 10:27
OAUTH2 Authentication and token management with redux-saga

Revision 5

  • Fix error parsing

Revision 4

  • Add missing yield in the login function

Revision 3

@PillowUnicorn
PillowUnicorn / android_bitrise.yml
Created April 28, 2017 22:21
Pillow's Android bitrise.yml
---
format_version: 1.1.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- push_branch: qa
workflow: qa
workflows:
_init_install:
steps:
- activate-ssh-key:
@PillowUnicorn
PillowUnicorn / ios-bitrise.yml
Created April 28, 2017 22:29
Pillow's iOS bitrise.yml
---
format_version: 1.1.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- BITRISE_PROJECT_PATH: ios/pro_mobile.xcodeproj
opts:
is_expand: false
- BITRISE_SCHEME: pro_mobile
opts:
@0xced
0xced / Emoji.json
Last active March 22, 2025 15:30
Extract emoji by category using the EmojiFoundation framework
{
"People" : [
"๐Ÿ˜€",
"๐Ÿ˜ƒ",
"๐Ÿ˜„",
"๐Ÿ˜",
"๐Ÿ˜†",
"๐Ÿ˜…",
"๐Ÿ˜‚",
"๐Ÿคฃ",
#!/usr/bin/env ruby
# Sets in a pod the given build setting
#
# @param [Xcodeproj::Project] project
# The xcode project instance.
#
# @param [Hash] build_settings
# An hash with the build configurations
#
@realvjy
realvjy / ChoasLinesShader.metal
Last active June 23, 2025 08:12
Choas Lines - Metal Shader
// Lines
float hash( float n ) {
return fract(sin(n)*753.5453123);
}
// Slight modification of iq's noise function.
float noise(vector_float2 x )
{
vector_float2 p = floor(x);
vector_float2 f = fract(x);