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
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- Default fonts - Linux Appearance --> | |
| <alias> | |
| <family>sans-serif</family> | |
| <prefer> | |
| <family>DejaVu Sans</family> | |
| </prefer> |
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
| set encoding=utf-8 | |
| set termencoding=utf-8 | |
| set fileencoding=utf-8 | |
| set number | |
| set ruler | |
| set title | |
| set linespace=0 | |
| set tabstop=2 | |
| set expandtab |
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
| from django.core.files import File | |
| from django.core.files.base import ContentFile |
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
| from django.core.wsgi import get_wsgi_application | |
| application = get_wsgi_application() |
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
| <b:if cond='data:blog.url == data:post.url'> | |
| <b:if cond='data:blog.isMobile'><b:else/> | |
| <div class='post-adsense'> | |
| <iframe border='0' frameborder='0' height='240' marginheight='0' marginwidth='0' scrolling='no' src='http://rcm-fe.amazon-adsystem.com/e/cm?t=junmakii-22&o=9&p=15&l=bn1&mode=dvd-jp&browse=561958&fc1=000000&lt1=_blank&lc1=3366FF&bg1=FFFFFF&f=ifr' style='border:none;' width='468'/> | |
| </div><!-- /post-adsense --> | |
| <b:else/></b:if></b:if> |
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
| *::selection { | |
| background-color: rgba(0, 127, 255, 0.3); | |
| } | |
| *::-moz-selection { | |
| background-color: rgba(0, 127, 255, 0.3); | |
| } | |
| .descriptionwrapper .description { | |
| font-size: 0.9em; | |
| } |
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
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- Default fonts - Linux Appearance --> | |
| <alias> | |
| <family>sans-serif</family> | |
| <prefer> | |
| <family>DejaVu Sans</family> | |
| </prefer> |
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
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit name="dpi" mode="assign"> | |
| <double>102.0</double> | |
| </edit> | |
| <edit name="lcdfilter" mode="assign"><const>lcddefault</const></edit> | |
| <!-- lcddefault = blur, none and lcddefault = clear --> | |
| <edit name="dpi" mode="assign"><double>102</double></edit> |
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
| #!/bin/bash | |
| import -display :0.0 -window root /home/junmakii/Pictures/Screenshot-Study-${1}-$(date +%Y-%m-%dT%H:%M:%S).png | |
| paplay /usr/local/workspace/src/freedesktop/stereo/bell.oga |
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
| import sys, time | |
| from PyQt4.QtCore import * | |
| from PyQt4.QtGui import * | |
| from PyQt4.QtWebKit import * | |
| class Screenshot(QWebView): | |
| def __init__(self): | |
| self.app = QApplication(sys.argv) | |
| QWebView.__init__(self) | |
| self._loaded = False |
OlderNewer