This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(use-modules (ice-9 popen)) | |
(weechat:register "piano" "MCConsALot" "0.1" "GPL3" "Control piano bar client" "" "") | |
(weechat:hook_command | |
"piano" "Control pianobar" | |
"[command]" "command to send to pianobar. Use /piano start, to begin" | |
"start next quit station send" | |
"main-command-handler" "") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module(ping_module). | |
-export([start/1, ping/2, pong/1, ending_timer/0]). | |
ping(0, Pong_PID) -> | |
Pong_PID ! finished, | |
io:format("ping finished~n", []); | |
ping(N, Pong_PID) -> | |
io:format("Sending ping~n", []), | |
Pong_PID ! {ping, self()}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"metadata": { | |
"name": "Untitled1" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ | |
"cells": [ | |
{ |
NewerOlder