「二つのキーを同時にタイプしなけれプログラミング出来ない事にストレスを感じませんか? タイピングをマスターしていない私はシフトキーを押すときにロスが生まれることがいやです。だったら、記号を出来限り使わなくても良いパワフルなプログラミング言語が欲しいと思っています。そんな私の願いをかなえるためのプログラミング言語です。え? 本当にそんなのが実用的なのかって? もちろん、ネタ言語に決まってるじゃないですか。でも、性能には妥協しませんよ」
2014-12-31T02:20:03 酒田 シンジ
This file contains 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
class ShrimpPlugin | |
def initialize() | |
end | |
def OnInitialize(plugin) | |
plugin.PluginName = 'Now playing' | |
plugin.PluginDeveloper = 'NKMR_YA' | |
plugin.PluginVersion = 100 | |
plugin.PluginDescription = 'foobar2000で再生中の音楽または入力した曲名を変形します' | |
end |
This file contains 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
#MIT License | |
class ShrimpPlugin | |
def initialize | |
end | |
def OnInitialize(plugin) | |
plugin.PluginName = 'test' | |
plugin.PluginDeveloper = 'NKMR_YA' | |
plugin.PluginVersion = 100 |
This file contains 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
/* License | |
The MIT License (MIT) | |
Copyright (c) 2014 SAKATA Sinji | |
*/ | |
/* Attention | |
This program should be compiled by C++11. | |
Example:$ g++ -std=c++11 lifegame.cpp | |
*/ |
rb-compilerに方針やら必要そうな情報まとめ
Ruby 2.1
Racc ( http://i.loveruby.net/ja/projects/racc/doc/usage.html )
こういうの https://github.com/seanchas116/ruby-qml で書いたプログラムをコンパイルしてクロスプラットフォームGUI開発がしたい。
This file contains 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
Cleaning: Lury (Debug) | |
Build started 2015/08/22 14:32:22. | |
__________________________________________________ | |
Project "/Users/sakasin/src/lury/src/Lury/Lury.csproj" (Clean target(s)): | |
Target CoreClean: | |
Deleting file '/Users/sakasin/src/lury/src/Lury/obj/Debug/Lury.csproj.FilesWrittenAbsolute.txt' | |
Done building project "/Users/sakasin/src/lury/src/Lury/Lury.csproj". |
OSXで以下の手順を用いてLuryのビルド及び、expression01.lr
の動作を確認することができた。
expression01.lr
を改変することでprintln()
や四則演算の動作も確認することができた。
https://github.com/lury-lang/lury/tree/6b873b53aa71519751b13316be91edd5347bc9a1
This file contains 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
link = {} | |
HEADER = '<!DOCTYPE NETSCAPE-Bookmark-file-1> | |
<!-- This is an automatically generated file. | |
It will be read and overwritten. | |
DO NOT EDIT! --> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p>' | |
File.open('bookmarks_2014_12_03.html') do |f| |
This file contains 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
int main(void){ | |
DDRB=0b11111111; | |
PORTB=0b00000000; | |
while(1){ | |
PORTB=0b11111111; | |
PORTB=0b00000000; | |
} | |
} |
This file contains 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
#include <avr/io.h> | |
#include <unit/delay.h> | |
int main(void){ | |
DDRB=0b11111111; | |
PORTB=0b00000000; | |
while(1){ | |
PORTB=0b11111111; | |
_delay_us(1); | |
PORTB=0b00000000; | |
} |
OlderNewer