Skip to content

Instantly share code, notes, and snippets.

View emilioicai's full-sized avatar

Emilio Rodriguez emilioicai

View GitHub Profile
#EXTM3U
#EXTM3U $ExtFilter="US"
#EXTINF:0,The CW
https://peer2.ustv.to/CW/myStream/playlist.m3u8?wmsAuthSign=c2VydmVyX3RpbWU9MS8yOS8yMDIwIDEwOjM4OjI2IEFNJmhhc2hfdmFsdWU9b2lWTFJVbGFIM3ZGditkYWRTWDI1UT09JnZhbGlkbWludXRlcz0zNjAmc3RybV9sZW49MA==
@emilioicai
emilioicai / build-time-improvements.md
Created December 3, 2019 17:26 — forked from kelset/build-time-improvements.md
This is kind of a blogpost about my experience of diving deep to improve some timings for an iOS React Native app

Improving times for both iOS build and CI for a React Native app

Intro

Hello there.

So, if you are here you probably saw my previous tweet where I asked for tips & tricks on improving the timing on an iOS/React Native app build time.

What will follow was how I mixed those suggestions + some good old GoogleSearch-fu + me deep diving on this for ~2 days.

[link](BGMobileNGA://open/BILLING_PAYMENT_STACK)
tarting Liquibase migration
Liquibase Update Successful
no /keys directory found, will used default selfsigned certificate
=========================================================================
JBoss Bootstrap Environment
JBOSS_HOME: /opt/jboss/wildfly
JAVA: /usr/lib/jvm/java/bin/java
@emilioicai
emilioicai / flatten.js
Created February 21, 2017 08:11
flatten function for cytrusbyte
function flatten(a, flat) {
if(typeof flat === 'undefined') flat = [];
if(typeof a === 'undefined') return [];
for(var i=0;i<a.length;i++) {
if(Array.isArray(a[i])) {
flatten(a[i], flat);
} else {
flat.push(a[i]);
}
==> single: (up to date)
==> single: * link[/usr/sbin/a2disconf] action delete
==> single: (skipped due to only_if)
==> single: * template[/usr/sbin/a2disconf] action create
==> single: (up to date)
==> single: * directory[/etc/apache2/ssl] action create
==> single: (up to date)
==> single: * directory[/var/cache/apache2] action create
==> single: (up to date)
==> single: * directory[/var/lock/apache2] action create
@emilioicai
emilioicai / dijkstra.js
Last active February 26, 2016 09:28
Dijkstra
//Helper class to create a sorted (by priority) list of nodes
// the ones with lower priority will be dequeued first
function PriorityQueue () {
this._nodes = [];
this.enqueue = function (priority, key) {
this._nodes.push({key: key, priority: priority });
this.sort();
}
this.dequeue = function () {
@emilioicai
emilioicai / gist:170469fee4325c1f6f6d
Last active August 29, 2015 14:15
Adding/Retrieving a Spy in Titanium
/****** TiShadow Spies (Make sure it doesn't to go production) ******/
if(Titanium.App.deployType === 'development') addSpy("$", $);
//retrieving
var $ = getSpy("$");
@emilioicai
emilioicai / gist:6fdd7fefa39bc867bb1b
Created January 21, 2015 17:48
Suublime Titanium log
<snippet>
<content><![CDATA[
Ti.API.debug('------------------');
Ti.API.debug();
Ti.API.debug('------------------');
]]></content>
<tabTrigger>log</tabTrigger>
</snippet>