Skip to content

Instantly share code, notes, and snippets.

View mtmr0x's full-sized avatar
👾
Edit status

Matheus Marsiglio mtmr0x

👾
Edit status
View GitHub Profile
  1. Create an app following the official Shadow-CLJS Quick Start instructions.
  2. Modify shadow-cljs.edn
;; shadow-cljs configuration
{:source-paths
 ["src/dev"
  "src/main"
  "src/test"]

 ;; ADD - CIDER middleware for nREPL (required by fireplace.vim)

Keybase proof

I hereby claim:

  • I am mtmr0x on github.
  • I am mtmr0x (https://keybase.io/mtmr0x) on keybase.
  • I have a public key ASCY2Vsucr9fy_7zsLkpLX1Eve81V1QsI7ovFynnDIU7Hgo

To claim this, I am signing this object:

@mtmr0x
mtmr0x / index.html
Created September 27, 2018 11:43
Botão animado - CSS Meetup
<!DOCTYPE html>
<html>
<head>
<style>
.btn {
will-change: transform;
border-radius: 3px;
transition: all .1s ease-in-out;
height: 29px;
padding: 8px 32px;
const ifFunction = f => {
if (typeof f === 'function')
return f();
return f;
};
const switchcaseF = cases => defaultCase => key => {
if (key in cases)
return cases[key];
@mtmr0x
mtmr0x / Aircrack Commands
Created November 20, 2017 05:41 — forked from victorreyesh/Aircrack Commands
Cracking WPA2 / WEP Wifi / Aircrack 10 seconds guide. For Mac OSX
//Install Macports.
//Install aircrack-ng:
sudo port install aircrack-ng
//Install the latest Xcode, with the Command Line Tools.
//Create the following symlink:
sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport
//Figure out which channel you need to sniff:
sudo airport -s
sudo airport en1 sniff [CHANNEL]
// Require all .js and .jsx files inside tree
let reactFiles = require.context("./components", true, /^(.*\.(jsx?$))[^.]*$/igm);
reactFiles.keys().forEach(function(key){
reactFiles(key);
});