Middleman の開発者(Thomas Reynolds)が日本に遊びにくるということで, せっかくなので Meetup して交流しましょうの会。
- 開場: 18:30
- 開催時間: 19:00 - 21:00
| $ current_resource.path // => "index.html" | |
| $ current_resource.destination_path // => "index.html" | |
| $ current_resource.source_file // => "/path/to/dir/middleman-guides/source/index.html.erb" | |
| $ current_resource.url // => "/" | |
| $ current_resource.ext // => ".html" | |
| $ current_resource.data // => {"layout"=>"layout"} | |
| $ current_resource.data.layout // => "layout" |
| ### | |
| # Compass | |
| ### | |
| # Change Compass configuration | |
| # compass_config do |config| | |
| # config.output_style = :compact | |
| # end | |
| ### |
| #!/usr/bin/env ruby | |
| # coding: utf-8 | |
| conf_dir = '/path/to/gitlite/path/conf_dir/' | |
| conf = conf_dir + 'gitolite.conf' | |
| current = Dir::pwd.split('/').pop | |
| new_repo = ARGV[0].to_s | |
| if new_repo.empty? | |
| puts "作成したいリポジトリ名を指定してください" |
| !!! | |
| %html | |
| %head | |
| %title hello, Haml | |
| %body | |
| %h1 hello, Haml! | |
| %p Lorem ipsum dolor sit amet | |
| %ul#myList | |
| - 3.times do |i| | |
| %li= "item_#{i}" |
| javascript:var url = document.location.href;var title = document.title;var tag = '<a href="' + url + '" target="_blank">' + title + '</a>';var titleUrl = title + " : " + url;var titleUrlTag = title + ' : <a href="' + url + '" target="_blank">' + url + '</a>';var mdUrl = '[' + title + '](' + url +')';alert(tag + "\n\n" + titleUrl + "\n\n" + titleUrlTag + "\n\n" + mdUrl); |
agatsuma.survive は群馬県内のプログラマ, デザイナー, マークアップエンジニア, コーダーがこれからの群馬で生き残っていく為に知識やスキルをシェアする勉強会です。
Git の基本的なコマンドの使い方, 複数人での作業の行い方, github の活用方法をざっくり3時間くらいで実際にCLI(黒い画面)でコマンドを叩きながら学びます。とりあえず使ってみて残りはググって解決できるようになるのが目標です。
| <?php | |
| interface iBase { | |
| public function getData(); | |
| } | |
| class SampleA implements iBase { | |
| public function getData() { | |
| return 'A'; | |
| } |
| / このコメントは変換後表示されない | |
| /! このコメントは変換後HTMLコメントになる |
| p | |
| | テキストテキストテキスト | |
| テキストテキストテキスト | |
| p | |
| | | |
| テキストテキストテキスト | |
| テキストテキストテキスト |