This file contains hidden or 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
<?php | |
class Passworder | |
{ | |
const CHARS = [ | |
'0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', | |
'!#$%&()*+,-./:;<=>?[\]^_`{|}~', | |
'àáãâäèéêëìíîïòóõôöúùûüñýÿÀÁÃÂÄÈÉÊËÌÍÎÏÒÓÕÔÖÚÙÛÜÑÝŸ', | |
'§“”‘’‹›«»…¦•¶♠♣♥♦©®™£¢€¥¤æš', | |
]; |
This file contains hidden or 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
//============================================================================= | |
// AnimatedSVEnemies.js | |
// Version: 1.15.5.1 - The Re-Remake | |
//============================================================================= | |
var Imported = Imported || {}; | |
Imported.AnimatedSVEnemies = true; | |
var Rexal = Rexal || {}; | |
Rexal.ASVE = Rexal.ASVE || {}; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Redirecionador de Rastreio dos Correios</title> | |
</head> | |
<?php if(isset($_GET['codigo'])): ?> | |
<body onload="document.getElementById('form').submit()"> |
This file contains hidden or 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
/** | |
* angular-input-masks | |
* Personalized input masks for AngularJS | |
* @version v2.4.0 | |
* @link http://github.com/assisrafael/angular-input-masks | |
* @license MIT | |
*/ | |
require=(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
/** | |
* br-validations |
This file contains hidden or 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
<?php | |
class XMLElement | |
{ | |
private $tag = null; | |
private $value = null; | |
private $childs = []; | |
private $attributes = []; | |
private $isRoot = true; | |
private $isCDATA = false; |
This file contains hidden or 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
#!/usr/bin/env ruby | |
class PHPator | |
attr_reader :content, :properties, :namespace | |
attr_accessor :clazz | |
def initialize | |
@content = "" | |
@properties = [] | |
end | |
def namespace(name) |
This file contains hidden or 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
<div ng-if="post && post.id"> | |
<h2 class="title"> | |
<a href="#/detail/{{ post.id }}">{{ post.title }}</a> | |
</h2> | |
<p class="text-muted">Publicado em {{ post.date }}</p> | |
<p>{{ post.content }}</p> | |
</div> | |
<div ng-if="!post || !post.id"> | |
<h2 class="title">Página Não Encontrada</h2> | |
<p>Publicação não encontrada. Ir para <a href="#/">página inicial</a>.</p> |
This file contains hidden or 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
<div ng-repeat="post in posts"> | |
<h2 class="title"> | |
<a href="#/detail/{{ post.id }}">{{ post.title }}</a> | |
</h2> | |
<p class="text-muted">Publicado em {{ post.date }}</p> | |
<p>{{ post.content }}</p> | |
</div> | |
<div ng-if="posts.length == 0"> | |
<p>Nenhum post publicado.</p> | |
</div> |
This file contains hidden or 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
<form ng-submit="save()"> | |
<div class="form-group"> | |
<label for="title">Título</label> | |
<input type="text" ng-model="post.title" class="form-control" id="title"> | |
</div> | |
<div class="form-group"> | |
<label for="content">Conteúdo</label> | |
<textarea ng-model="post.content" class="form-control" id="content" rows="5"></textarea> | |
</div> | |
<button type="submit" class="btn btn-primary">Salvar</button> |
This file contains hidden or 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
<a href="#/add" class="btn btn-primary">Criar</a> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th>Título</th> | |
<th>Data</th> | |
<th style="width: 60px;"></th> | |
<th style="width: 60px;"></th> | |
</tr> | |
</thead> |
NewerOlder