Skip to content

Instantly share code, notes, and snippets.

View chinmaygarde's full-sized avatar

Chinmay Garde chinmaygarde

View GitHub Profile
@chinmaygarde
chinmaygarde / FlutterEngine.sublime-project
Last active March 23, 2025 19:16
FlutterEngine.sublime-project
{
"build_systems": [
{
"name": "Default",
// "shell_cmd": "touch /Users/chinmaygarde/VersionControlled/engine/src/flutter/impeller/stator/testing/stator_main.dart && ninja -j999 stator_unittests && ./stator_unittests",
// "shell_cmd": "et build -c android_debug_unopt_arm64",
// "shell_cmd": "et build -c host_debug_unopt_arm64 && ./out/host_debug_unopt_arm64/impeller_unittests --enable_playground --gtest_filter=\"*BabysFirstTriangle/Metal*\"",
"shell_cmd": "et build -c android_debug_unopt_arm64 //flutter/shell/platform/android:android_jar",
// "working_dir": "${project_path}/out/host_debug_unopt_arm64",
// "shell_cmd": "ninja -j999 impeller_unittests && MTL_HUD_ENABLED=1 ./impeller_unittests --enable_playground --enable_vulkan_validation --use_swiftshader --gtest_filter=\"*CanDrawImage/Vulkan\"",
@mattt
mattt / uiappearance-selector.md
Last active February 7, 2025 15:27
A list of methods and properties conforming to `UIAppearance` as of iOS 12 Beta 3

Generate the list yourself:

$ cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS*.sdk/System/Library/Frameworks/UIKit.framework/Headers
$ grep UI_APPEARANCE_SELECTOR ./*     | \
  sed 's/NS_AVAILABLE_IOS(.*)//g'     | \
  sed 's/NS_DEPRECATED_IOS(.*)//g'    | \
  sed 's/API_AVAILABLE(.*)//g'        | \
  sed 's/API_UNAVAILABLE(.*)//g'      | \
 sed 's/UI_APPEARANCE_SELECTOR//g' | \
@chinmaygarde
chinmaygarde / hack.sh
Last active February 6, 2019 20:37 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://gist.githubusercontent.com/chinmaygarde/2269196/raw/24fd4289a4fbd43f55023be4f1c810155cc9207e/hack.sh | sh
#
@chinmaygarde
chinmaygarde / .gitignore
Created December 13, 2009 07:38 — forked from program247365/.gitattributes
.gitignore for XCode Projects
# Exclude the build directory
build/*
# Exclude temp nibs and swap files
*~.nib
*.swp
# Exclude OS X folder attributes
.DS_Store