Skip to content

Instantly share code, notes, and snippets.

View fernando-jascovich's full-sized avatar
⌨️
Doxing

Fernando Jascovich fernando-jascovich

⌨️
Doxing
  • Free-lance
  • Villa Giardino, Córdoba, Argentina.
View GitHub Profile
@ryanhanks-wf
ryanhanks-wf / gist:70e665e991786cc610c6
Created August 11, 2014 12:21
Android studio log filter - ^((?!eglCodecCommon).)*$
^((?!eglCodecCommon).)*$
@joninvski
joninvski / Android_dev_in_vim.md
Last active June 2, 2016 14:22
Android development in vim

First put a the following init.d gradle script in ${HOME}/.gradle/init.d/ (currently in build.gradle but not working in init):

 allprojects {
      tasks.withType(Compile) { // Use JavaCompile for gradle > 2.0
          options.compilerArgs << "-Xlint:deprecation"
      }
      task printDependencies << {task -> println "Subproject -> $task.project.name" }
 }

subprojects {

@XVilka
XVilka / TrueColour.md
Last active March 6, 2026 10:14
True Colour (16 million colours) support in various terminal applications and terminals

THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.

PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!

@fernando-jascovich
fernando-jascovich / merge_arrays.php
Last active December 15, 2015 07:29
Beautiful php array_merge function
<?php
function merge_arrays($array1, $array2)
{
$return_array = array();
$key_array = array();
foreach($array1 as $key => $value)
{