| 日時: | 2026-04-18 |
|---|---|
| 作: | 時雨堂 |
| バージョン: | 2026.1 |
| url: | https://sora.shiguredo.jp/ |
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(hoge). | |
| -export([gen_external_fun/0, gen_local_fun/0, gen_anonymouns_fun/0]). | |
| -export([hello/0]). | |
| gen_external_fun() -> % 公開関数への参照を返す | |
| fun hoge:hello/0. % これだけが完全修飾形式での参照 (= 複数回のコードローディングを跨いでも安全) | |
| gen_local_fun() -> % ローカル関数への参照を返す | |
| fun hello/0. |
| 作: | @voluntas |
|---|---|
| バージョン: | 1.0.5 |
| url: | http://voluntas.github.io/ |
2014 年 9 月 26 日に行われた gumistudy#20 の発表資料です
rendr-examplesを眺めてみたメモ。
基本的な構成。npm install & grunt serverでhttp://localhost:3030で起動する(以下のexampleも同様)。
00ではindex.jsに直接書かれていたdataAdapterConfigを/configディレクトリ内のファイルに分離。
NODE_ENVの値で本番/開発環境の設定ファイル切り替えを行う
title: piggo#1 author: name: Toshiyuki Nakamura twitter: yukidarake url: https://github.com/yukidarake theme: sudodoki/reveal-cleaver-theme output: piggo1.html
--
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
| // | |
| // main.swift | |
| // SwiftLine | |
| // | |
| // Created by ISHII 2bit on 2014/06/03. | |
| // Copyright (c) 2014 buffer Renaiss. All rights reserved. | |
| // | |
| import Foundation |
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
| # npm自体をアップデート | |
| npm update -g npm | |
| # npm installのエイリアス | |
| npm i | |
| # tar.gzもインストールできる | |
| npm i https://github.com/yukidarake/node-qc/archive/0.0.2.tar.gz | |
| # githubからインストールできる |