Skip to content

Instantly share code, notes, and snippets.

View meshenka's full-sized avatar
🎯
Learning #golang

Sylvain G meshenka

🎯
Learning #golang
  • Lydia App
  • Paris
View GitHub Profile
@meshenka
meshenka / google_authenticator.go
Created October 16, 2020 10:31 — forked from tilaklodha/google_authenticator.go
Simple Google Authenticator script in go
// Checkout the readme for this here: https://github.com/tilaklodha/google-authenticator
package main
import (
"bytes"
"crypto/hmac"
"crypto/sha1"
"encoding/base32"
"encoding/binary"
@meshenka
meshenka / LICENSE
Created July 19, 2016 14:07 — forked from jdennes/LICENSE
Subscribing to a Campaign Monitor list using AJAX
The MIT License (MIT)
Copyright (c) James Dennes
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@meshenka
meshenka / index.html
Created March 3, 2016 21:03 — forked from anonymous/index.html
JS Bin test transformation // source https://jsbin.com/bikeci
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="test transformation">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
@meshenka
meshenka / Actions.js
Created February 28, 2016 21:22 — forked from amcdnl/Actions.js
import { action } from 'common/utils/redux/redux';
@action
export class Actions {
static types = {
set3d: Symbol('set3d')
};
static set3d(val) {