Skip to content

Instantly share code, notes, and snippets.

View Tardo's full-sized avatar
💾

Alexandre Díaz Tardo

💾
  • Galicia
View GitHub Profile
@Tardo
Tardo / maderas.txt
Created November 16, 2021 19:13 — forked from ha3ks/maderas.txt
Clone of the arsenal, armory & library by Maderas (@hackermaderas) -- https://pastebin.com/v8Mr2k95
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.
@Tardo
Tardo / RPI4B.md
Last active May 22, 2023 11:23
Raspberry Pi 4B #RPI
@Tardo
Tardo / bs_override_extend.md
Last active November 24, 2021 02:55
Override/Extend Bootstrap SCSS #Odoo #Theme
  • 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>
@Tardo
Tardo / pyjs.md
Last active November 10, 2020 03:01
py.js extended explanation #Odoo #JS

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
@Tardo
Tardo / translation_odoo.md
Last active June 20, 2022 14:01
Traducciones #Odoo

Configuración poedit

  • Generales -> Desactivar la generación de los .mo
  • MT -> Cambiar 'al actualizar desde el código fuente': Pretaducir a partir de la MT
  • Avanzadas -> Desactivar ajuste de linea

Procedimiento

@Tardo
Tardo / aliases_linux_odoo.sh
Last active September 18, 2020 10:44
Aliases Linux #Odoo
# <> -> 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
@Tardo
Tardo / screencast_to_gif.md
Last active February 21, 2019 23:47
How convert screencast to gif

For users like me that can't use peek :(

System Dependencies

  • ffmpeg
  • convert
  • gifsicle
  • simplescreenrecorder (you can use the recorder that you want)
@Tardo
Tardo / atom_info.md
Last active June 4, 2019 23:26
Atom Packages & Tips

Here can found usefull packages to develop for Odoo (Python Web Dev) with Atom.

** To install packages in Atom press Control + , an go to Install section.

Packages

General

  • minimap
  • minimap-autohider
  • file-icons
  • highlight-selected
#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