Skip to content

Instantly share code, notes, and snippets.

@delr3ves
delr3ves / testing-mindmap-text2mindmap
Last active April 24, 2016 08:05
Testing Mindmap to be generated with different tools
#https://www.text2mindmap.com/
Testing
Techniques
Static
Code Review
Walktrhough
Dynamic
White box
Path coverage

Keybase proof

I hereby claim:

  • I am delr3ves on github.
  • I am serch (https://keybase.io/serch) on keybase.
  • I have a public key whose fingerprint is AD23 7529 E39F E48F 08B0 64BA A42A C291 6176 38A6

To claim this, I am signing this object:

@delr3ves
delr3ves / gist:6552933
Last active December 23, 2015 00:19
Show the current git branch you're working and whether it's dirty in your prompt
# Regular Colors
Black="\[\033[0;30m\]" # Black
Red="\[\033[0;31m\]" # Red
Green="\[\033[0;32m\]" # Green
Yellow="\[\033[0;33m\]" # Yellow
Blue="\[\033[0;34m\]" # Blue
Purple="\[\033[0;35m\]" # Purple
Cyan="\[\033[0;36m\]" # Cyan
White="\[\033[0;37m\]" # White
@delr3ves
delr3ves / pom.xml
Created November 18, 2012 13:08
Configuración de Sonar para proyectos Symfony 2.1
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Your project Group</groupId>
<name>Your project Name</name>
<artifactId>The project Id</artifactId>
<version>The version</version>
@delr3ves
delr3ves / pre-commit
Created November 14, 2012 13:44
Hook to execute PHPUnit test before commit.
#!/bin/sh
#add this code to your .git/hook/pre-comit file
phpunit -c app/
exit $?