Skip to content

Instantly share code, notes, and snippets.

View deckameron's full-sized avatar

Douglas Alves deckameron

View GitHub Profile
This file has been truncated, but you can view the full file.
/**
* @fileoverview Generated externs. DO NOT EDIT!
* @externs
*/
/**
* An extension of the [NSURLConnectionDelegate](https://developer.apple.com/library/mac/documentation/Foundation/Reference/NSURLConnectionDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSURLConnectionDelegate) protocol to allow users to participate in authentication and resource management for this HTTPClient.
* @typedef {{
* }}
*/
@bnutz
bnutz / nexus5X_bootloop_fix_sequence.md
Last active April 28, 2024 19:05
Procedure used for working around Nexus 5X bootloop issue

Just documenting my own experiences in restoring my Nexus 5X back from bootlooping state.

Hopefully this can be helpful to some, but "common sense" caveats apply:

  • Follow at your own risk
  • I'm not responsible for any loss of data, loss of hair, bricked devices, exploding(!) devices, mental / physical injuries, etc. etc. etc.

Remember:

  • This is only an account of what I did to get my 5X working operational again.
  • YMMV if you decide to try the steps below on your bootlooping device.
@FokkeZB
FokkeZB / README.md
Last active April 6, 2020 14:57
URL schemes for iOS and Android (1/2)
@FokkeZB
FokkeZB / CROP.md
Created May 2, 2013 09:43
Image (cropping) CommonJS lib for Titanium

Often I need to display a user-provided picture in an ImageView in such a way that the whole ImageView is filled with as much of the picture possible.

This is how I do it:

var image = require('image');

Ti.Media.showCamera({
        mediaTypes: [Ti.Media.MEDIA_TYPE_PHOTO],
 success: function (e) {