Skip to content

Instantly share code, notes, and snippets.

@giginet
Created May 5, 2014 12:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giginet/abc6c1af7a9fe372c5af to your computer and use it in GitHub Desktop.
Save giginet/abc6c1af7a9fe372c5af to your computer and use it in GitHub Desktop.
deckset

Decksetがよかった話


自己紹介

  • こんにちは
  • @giginetです

100%, right


[fit] Deckset

90%, original


Markdownで
スライドショー


今までの遍歴

  • slideshow(rubygems)
  • Pandoc + Reveal.js/Slidy/s5
  • Glide.so

Glide.so


よくありがちな問題

いろいろ試したけど微妙だった

  • デザインが微妙
  • 日本語で使いにくい
  • 画像の位置が調整できない
  • デザインの微修正が難しい

Deckset最強


豊富なデザイン

35%, inline35%, inline35%, inline 35%, inlineinline, 35%inline, 35%


Syntax Highlight

Github Fravored Markdownがそのまま使える

```python
	# your code
```

Python

# -*- coding: utf-8 -*-

class Article(models.Model):
    author = models.ForeignKey(Persona)
    title = models.CharField('Title', max_length=30)

    class Meta:
        app_label = 'permissions'
        permissions = (
            ('view_article', 'Can view the articles'),
        )

Objective-C

+ (id)sharedClient
{
    static CPSAPIClient *sharedClient = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedClient = [[self alloc] init];
    });
    return sharedClient;
}

[fit] 高橋メソッド


[fit] 的な奴


Big Text

文字を大きく表示できる 高橋メソッド的な物も作れる

# [fit] **Big Text**

画像の任意配置

専用のsyntaxで画像の位置を弄れる

フィルターもかけられる

![](image.jpg)
![left](image.jpg)
![right](image.jpg)
![50%](image.jpg)
![50%, inline](image.jpg)
![50%, filtered](image.jpg)

[left]

left


[right]

right


[inline]

inline, 20%僕のアイコンです

inline, 20%ネコです


[fit] 意識高い画像

original


[fit] めっちゃ良い


Now Available

original, inline


ご清聴
ありがとうございました

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment