En pro de fomentar el opensource, siempre que sea posible todos los extras referentes a apps de Android serán de los repositorios de F-Droid. En muchos casos se puede encontrar la misma app en los repositorios oficiales de google.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The arsenal, armory & library by Maderas (@hackermaderas, #CyberpunkisNow) 6/8/2019 | |
Original / 1st version here: https://pastebin.com/rMw4WbhX | |
___________________________________________________________________________________ | |
# Basic knowledge requirements for Red Teaming, PenTesting, Hacking & Cybersecurity | |
# These are the basic competencies expected (and tested for during the in-person technical interview) by one of the largest, most visible InfoSec companies # on Earth. | |
- assets.xml
<template id="_assets_bootstrap" inherit_id="web._assets_bootstrap">
<xpath expr="link[2]">
<link type="text/css" rel="stylesheet" href="/web_widget_one2many_product_picker/static/src/scss/bs_overrides.scss"/>
</xpath>
</template>
We can evaluate python code to javascript using "py.js" library.
The basic usage looks like:
py.eval("python code", context);
The previous method chains the following calls:
- Tokenize
- Parse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# <> -> Required parameter | |
# [] -> Optional parameter | |
# CUSTOM ALIASES | |
export PERSONAL_GIT_DIR=/media/datos_linux/git | |
# Go to a odoo project folder | |
# Usage: dcd <git_project> [odoo_module] | |
function dcd() { | |
if [[ -z $2 ]]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _SHADERS_DEFERREDAMBIENT_INC_FX_ | |
#define _SHADERS_DEFERREDAMBIENT_INC_FX_ | |
#include "Ambient.inc.fx" | |
#if defined(XBOX360_TARGET) || defined(PS3_TARGET) | |
#define READ_3D_TEXTURES | |
#endif | |
#define PROBE_VOLUME_SIZE_Z 17 |