Skip to content

Instantly share code, notes, and snippets.

View marcelotk15's full-sized avatar
🤡

Marcelo Oliveira marcelotk15

🤡
View GitHub Profile
@marcelotk15
marcelotk15 / tourney.html
Last active August 29, 2015 19:52 — forked from sterlingwes/tourney.html
Tournament Bracket Generator (Javascript + CSS, no tables)
<!DOCTYPE html>
<html>
<head>
<title>Tournament Bracket Generator</title>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script>
$(document).on('ready', function() {
var knownBrackets = [2,4,8,16,32], // brackets with "perfect" proportions (full fields, no byes)
@marcelotk15
marcelotk15 / .gitignore
Last active August 29, 2015 14:09 — forked from Kryptonit3-zz/.gitignore
Lightweight image cropping with jQuery
# Ignore everything in this directory
*
# Except this file
!.gitignore
@marcelotk15
marcelotk15 / style.css
Last active August 13, 2024 09:53
Style to https://github.com/cmgmyr/laravel-messenger with differentiate senders and receiver.
.mensagens-chat
{
list-style: none;
margin: 0;
padding: 0;
}
.mensagens-chat li
{
margin-bottom: 10px;
server {
listen 80;
server_name CHANGEME.app;
root /var/www/vhosts/CHANGEME.app/public;
index index.html index.htm index.php;
charset utf-8;
location / {