Skip to content

Instantly share code, notes, and snippets.

View ThevenRexOff's full-sized avatar
:shipit:
spaghetti code writer

ThevenRex ThevenRexOff

:shipit:
spaghetti code writer
View GitHub Profile
@ThevenRexOff
ThevenRexOff / fingerprinting-minified-javascript-libraries-ast-fingerprinting-source-code-similarity-etc.md Some notes and tools on fingerprinting minified JavaScript libraries, AST fingerprinting, source code similarity, etc

Fingerprinting Minified JavaScript Libraries / AST Fingerprinting / Source Code Similarity / Etc

Some notes and tools on fingerprinting minified JavaScript libraries, AST fingerprinting, source code similarity, etc.

Table of Contents

@ThevenRexOff
ThevenRexOff / PHP_Interview.md
Created September 1, 2024 23:45 — forked from Brammm/PHP_Interview.md
Some useful questions for a PHP interview

PHP interview

  • Are you familiar with the tools we're given in PHP 5.4 to write Object Oriented code?
    We can manipulate scope, have interfaces, abstract classes, traits, namespaces…

  • What's the difference between Public, Protected and Private?
    Public ensures a class method/variable is available everywhere, from any instance of the class. Protected makes the method/variable only available to the class itself and extending classes. Private makes the method/var only accessible to the class itself.

  • Do you know any of these acronyms?

    • DRY "Don't Repeat Yourself"
@ThevenRexOff
ThevenRexOff / readme.md
Created August 23, 2024 17:48 — forked from rafafdz/readme.md
Recomendaciones Ingeniería de Software 2020-1

Recomendaciones Proyecto Ingeniería de Software 2020-1

Material de Apoyo

  • 📙 Biblia de Rails: Explicación clara y completa de cómo hacer una aplicación mediana en Rails. Explica practicamente todos los conceptos que van a necesitar para este proyecto. 10/10 Mejor material.
  • 📹 Ayudantías del curso: Pensadas para este proyecto. Aprovechenlas
  • 👌 Stack Overflow: La vieja confiable de los computines
  • 🔀 Git y Github: Para que no sufran tanto al hacer merges

@ThevenRexOff
ThevenRexOff / diseño-pruebas-mantenimiento.md
Created August 23, 2024 17:44 — forked from brunocascio/diseño-pruebas-mantenimiento.md
Resumen Ingeniería de Software 2 (Diseño, Pruebas y Mantenimiento)

Diseño


Es el proceso cretivo de transformación del problema en una solución. Una vez que se analizan y especifican los requisitos, el diseño es la siguiente actividad técnica a realizar. Es independiente del modelo de procesos que se use. El diseño se centra en 4 áreas importantes:

  • Datos
  • Arquitectuas
  • Interfaces
@ThevenRexOff
ThevenRexOff / gist:2e06ffef0677df7b62ebeb3d56bf4df1
Created August 14, 2024 16:23 — forked from maeharin/gist:4727153
gitでコミットログを逆順(古い方から)表示する : git log first commit tail initial reverse
git log --reverse
# show branch tag etc
git log --reverse --decorate
@ThevenRexOff
ThevenRexOff / charles key
Created July 27, 2024 20:41
[charles proxy key] an activation key #key #activation
// Charles Proxy License
// Registration code for any version of Charles, who would want to use a cracked version?
// Charles 4.5.5 is currently the latest version and is available.
Registered Name: https://zhile.io
License Key: 48891cf209c6d32bf4
Author: Neo Peng
@ThevenRexOff
ThevenRexOff / reverse-engineering-webpack-apps.md
Created July 27, 2024 16:53 — forked from 0xdevalias/reverse-engineering-webpack-apps.md
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@ThevenRexOff
ThevenRexOff / _deobfuscating-unminifying-obfuscated-web-app-code.md
Created March 12, 2024 18:23 — forked from 0xdevalias/_deobfuscating-unminifying-obfuscated-web-app-code.md
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@ThevenRexOff
ThevenRexOff / pyclean.sh
Created February 20, 2024 01:56 — forked from technocake/pyclean.sh
Clear all python cache in directory
# pyclean command to clear all python cache in a directory
# source: https://stackoverflow.com/questions/28991015/python3-project-remove-pycache-folders-and-pyc-files
# in .bash_profile / .bash_rc etc put:
pyclean () {
find . -type f -name '*.py[co]' -delete -o -type d -name __pycache__ -delete
}