Skip to content

Instantly share code, notes, and snippets.

View stevenferrer's full-sized avatar
💭
I may be slow to respond.

Steven Ferrer stevenferrer

💭
I may be slow to respond.
View GitHub Profile
package main
import (
"fmt"
"io"
"os"
)
var path = "/Users/novalagung/Documents/temp/test.txt"
@stevenferrer
stevenferrer / go_decode.go
Created August 2, 2019 04:34 — forked from miguelmota/go_decode.go
Golang gob encoding and decoding example
package main
import (
"bytes"
"encoding/gob"
"fmt"
"log"
)
func main() {
@stevenferrer
stevenferrer / konsole_breeze_dark_tab.css
Last active July 10, 2019 08:23
Konsole breeze dark tab style
QTabBar::tab {
color: #808080;
background-color: #444c53;
font-size: 12px;
font-family: "Roboto";
height: 25px;
padding: 0px;
border: 1px;
}
@stevenferrer
stevenferrer / 01_basic.go
Created January 23, 2019 08:14 — forked from reagent/00_README.md
Custom HTTP Routing in Go
package main
import (
"io"
"log"
"net/http"
)
func main() {
@stevenferrer
stevenferrer / sqrt_approx.go
Created January 21, 2019 06:56
square root value approximation using newton's method
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
// starting value
var z float64 = x / 2
@stevenferrer
stevenferrer / keycloak.html
Created July 21, 2018 22:28 — forked from thomasdarimont/keycloak.html
Keycloak JS Only public client example
<html>
<head>
<script src="http://localhost:8081/auth/js/keycloak.js" type="text/javascript">
</script>
</head>
<body>
<h1>js-demo-app</h1>
@stevenferrer
stevenferrer / docker-compose.yaml
Created July 17, 2018 22:33 — forked from alpham/docker-compose.yaml
docker compose file to run odoo 11
version: "3"
services:
db:
image: postgres:9.4
deploy:
replicas: 1
volumes:
- pgsql_data:/var/lib/postgresql/data:rw,Z
environment:
@stevenferrer
stevenferrer / kmeans.py
Created February 13, 2018 05:37 — forked from mblondel/kmeans.py
Fuzzy K-means and K-medians
# Copyright Mathieu Blondel December 2011
# License: BSD 3 clause
import numpy as np
import pylab as pl
from sklearn.base import BaseEstimator
from sklearn.utils import check_random_state
from sklearn.cluster import MiniBatchKMeans
from sklearn.cluster import KMeans as KMeansGood
@stevenferrer
stevenferrer / numpy-opttheta.mat
Created February 12, 2018 06:03 — forked from hernamesbarbara/numpy-opttheta.mat
How to import structured matlab data into python with scipy | prototype | http://bit.ly/1cdqxQc
@stevenferrer
stevenferrer / kmeansExample.py
Created January 23, 2018 06:04 — forked from iandanforth/kmeansExample.py
A pure python implementation of K-Means clustering. Optional cluster visualization using plot.ly.
#############################################################################
# Full Imports
import math
import random
"""
This is a pure Python implementation of the K-Means Clustering algorithmn. The
original can be found here:
http://pandoricweb.tumblr.com/post/8646701677/python-implementation-of-the-k-means-clustering