Skip to content

Instantly share code, notes, and snippets.

View orleika's full-sized avatar
🏠
Working from home

Koki Yasuda orleika

🏠
Working from home
  • HackathonMonster
  • Tokyo, Japan
View GitHub Profile
@orleika
orleika / ychat
Created April 25, 2018 05:55
some description
#!/bin/bash
#
# ychat
# simple multicast chat tools on the shell (only supported bash)
# copyrights: koki yasuda aka orleika <[email protected]>
# Licensed under MIT
#
# Usage:
# ychat
#
@orleika
orleika / Makefile
Created April 25, 2018 06:31
some description
all: clean receiver sender
receiver:
clang -Os -o receiver receiver.c
strip --strip-all receiver
gzip -c receiver | base64 > receiver.dump
sender:
clang -Os -o sender sender.c
strip --strip-all sender
gzip -c sender | base64 > sender.dump
.PHONY: clean
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@orleika
orleika / LICENSE
Created June 25, 2018 12:14
This license applies to all public gists https://gist.github.com/orleika
All public gists https://gist.github.com/orleika
COPYRIGHT (c) 2018 orleika
MIT License
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