Skip to content

Instantly share code, notes, and snippets.

View felegy's full-sized avatar
🎯
Focusing

Gabor FELEGYHAZI felegy

🎯
Focusing
View GitHub Profile
@hh
hh / WebPi Software.mkd
Created April 2, 2013 18:44
Available WebPI software

Did you know there was a gui too?

PS C:\Program Files\Microsoft\Web Platform Installer> .\WebpiCmd.exe /List

The software that you obtain using the Web Plaform Installer Command Line Tool is licensed to you by its owner.  Microso
ft grants you no rights for third party software.
/List /ListOption:<list-option>
Valid values for 'ListOption' option are:
@richardkundl
richardkundl / identicon.html
Last active November 12, 2021 11:28
Github style identicon generator
<html>
<head>
<title>Github style identicon generator </title>
<style>
body { background: #333 }
canvas { margin: 1em }
</style>
<script src="http://www.myersdaily.org/joseph/javascript/md5.js"></script>
</head>
<body>
@frelon
frelon / Dockerfile
Last active March 19, 2024 14:22
Elemental toolkit RISCV64
ARG GO_VERSION=1.20
FROM --platform=linux/riscv64 riscv64/debian:sid AS elemental-bin
RUN apt update -y && apt-get install golang
ENV CGO_ENABLED=0
WORKDIR /src/
# Add specific dirs to the image so cache is not invalidated when modifying non go files
ADD go.mod .
ADD go.sum .
ADD vendor vendor