Skip to content

Instantly share code, notes, and snippets.

View hacknug's full-sized avatar
👽

Nestor Vera hacknug

👽
View GitHub Profile
@hacknug
hacknug / resets.css
Created February 19, 2019 19:30
Post-TailwindCSS Preflight CSS Reset
* {
outline: none !important;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color: inherit;
text-decoration: none;
}
@hacknug
hacknug / tailwind.config.js
Created February 8, 2019 16:54
TailwindCSS default config
/*
Tailwind - The Utility-First CSS Framework
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink),
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger).
Welcome to the Tailwind config file. This is where you can customize
Tailwind specifically for your project. Don't be intimidated by the
length of this file. It's really just a big JavaScript object and
@hacknug
hacknug / gulpfile.js
Last active January 9, 2019 19:34
Gulp for WordPress
'use strict'
const gulp = require('gulp')
const styles = require('./assets/build/tasks/styles.js')
const icons = require('./assets/build/tasks/icons.js')
const pot = require('./assets/build/tasks/pot.js')
/**
* Tasks
*/
@hacknug
hacknug / index.css
Created March 29, 2018 16:44
Design Does (feat. Albert Rivera from Ciutadans)
#home-layout .grid .block.manifesto-block .brick-wrapper {
padding: 0;
}
#home-layout .grid .block.manifesto-block .jsgif,
#home-layout .grid .block.manifesto-block .jsgif canvas {
width: 100%;
height: 100%;
}
@hacknug
hacknug / 0.57.3 GAME_MASTER
Last active March 3, 2017 13:29
0.57.3 GAME_MASTER
This file has been truncated, but you can view the full file.
item_templates {
template_id: "AVATAR_f_backpack_cute_0"
avatar_customization {
enabled: true
avatar_type: PLAYER_AVATAR_FEMALE
slot: BACKPACK
bundle_name: "f_backpack_cute_bundle"
asset_name: "f_backpack_cute_0"
group_name: "group_backpack"
sort_order: 77
@hacknug
hacknug / parser.py
Last active February 25, 2017 00:09
Pokémon GO GAME_MASTER Parser
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import json
import os
from collections import OrderedDict
masterNew = json.load(open('pokemongo.json'), object_pairs_hook=OrderedDict)
masterOld = json.load(open('pokemongo_old.json'), object_pairs_hook=OrderedDict)