Skip to content

Instantly share code, notes, and snippets.

View masdeseiscaracteres's full-sized avatar

ÓscarGF masdeseiscaracteres

View GitHub Profile
@masdeseiscaracteres
masdeseiscaracteres / merge_conflicts.md
Last active September 18, 2023 14:46
Solving git conflicts
  • Keep target/current branch changes: git checkout --ours my/file.ext
  • Keep contributing branch changes: git checkout --theirs my/file.ext
@masdeseiscaracteres
masdeseiscaracteres / reveng.md
Last active February 5, 2023 00:25
Reverse engineering RadonEye messages

Opción Device Setting

  • Example sent package: AC-00-01-00-94-00-24

  • Byte 0: command

    • 0xAC: config command
  • Byte 1: payload length in bytes

    • 0x05
  • Byte 2: Unidad de medida

  • 0x00: pCi/l

@masdeseiscaracteres
masdeseiscaracteres / gdrive_links.md
Created November 18, 2021 08:00
GDrive useful URL link variations
@masdeseiscaracteres
masdeseiscaracteres / run_stubborn_process.py
Last active October 24, 2020 11:42
Python script to ensure successful execution of a randomly-failing process
from subprocess import run
import logging
import sys
if __name__ == "__main__":
cmd_line = sys.argv[1:]
return_code = -1
while return_code!=0:
logging.warn('Executing command line "{}"'.format(' '.join(cmd_line)))
@masdeseiscaracteres
masdeseiscaracteres / gcolab_spark_install.md
Created September 30, 2020 12:52
Instalar Spark en Google Colab
!apt-get install openjdk-8-jdk-headless -qq > /dev/null
!wget -q https://www-us.apache.org/dist/spark/spark-2.4.7/spark-2.4.7-bin-hadoop2.7.tgz
!tar xf spark-2.4.7-bin-hadoop2.7.tgz
!pip install -q findspark

import os
os.environ["JAVA_HOME"] = "/usr/lib/jvm/java-8-openjdk-amd64"
os.environ["SPARK_HOME"] = "/content/spark-2.4.7-bin-hadoop2.7"
import findspark
To install these bookmarklets, drag and drop the links to your bookmarks bar:
<ul>
<li><a href="javascript:!function(){var n,e,r,i;n=window,e=document.body,r=JSON.parse,i=JSON.stringify,n.isf||(e.innerHTML="<pre>"+i(r(e.innerText),null,4).replace(/\"(.*)[^\:]\:/g,'<span style="color:#9C3636">$1&colon;</span>')+"</pre>",n.isf=!0)}();">JSON!!</a></li>
<li><a href="javascript:void%20function(){(function(){function%20a(a,b){return{apply:function(d,e,f){if(!e[a].__grid_ran){const%20d=new%20Proxy(e[a],c(e,b));d.__grid_ran=!0,e[a]=d}return%20d.apply(e,f)}}}function%20b(a,b){return{apply:function(d,e,f){if(!f[0][a].__grid_ran){const%20d=new%20Proxy(f[0][a],c(f[0],b));d.__grid_ran=!0,f[0][a]=d}return%20d.apply(e,f)}}}function%20c(a,b){return{get:function(c,d){let%20g=Reflect.get(c,d);return%22function%22==typeof%20g%26%26(g=g.bind(c)),l%26%26%22get%22==d%3Fc=%3E({[b]:(d,h)=%3E{try{return%20f.call(a,d,h)}catch(a){return%20console.error(a),g(c)[b](d,h)}}}):g}}}function%20d(a){return{apply:function(b,c,d){if(!c.isDispose
import numpy as np
def groupby(keys, values, func=np.sum, axis=0, stable=True):
if axis != 0:
raise NotImplementedError
stable = True
sorter = np.argsort(keys, kind='mergesort' if stable else 'quicksort')
@masdeseiscaracteres
masdeseiscaracteres / cloud_shell.sh
Last active April 6, 2023 19:40
Bash script to SSH into the Google Cloud shell instance in your Google account
#!/usr/bin/env bash
# CLI for Google Cloud shell.
#
# Requirements:
# - gcloud
# - grep with Perl regexp support
# - curl
get_json_key () {
echo $2 | grep -Po '"'$1'": *"?\K.*?(?=[ ",}])'
<meta charset="utf-8">
**LaTeX-style Starter Document**
Welcome to Markdeep. It's the simple way to write plain text with
_style_. From [Causal Effects](https://casual-effects.com/markdeep).
Section
===============================================================================
#!/usr/bin/env bash
# DNS lookup in Bash without "host", "dig" or "nslookup"
[[ $# -ne 1 ]] && echo "Please provide host name" && return 1
HOST="$1"
getent hosts $HOST