(moved from http://jsdo.it/cat_in_136/xtDC )
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
| <iframe src="ms-settings:personalization"></iframe> | |
| <!-- On MS Edge, the setting window is suddenly opened just after opening this file. --> |
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
| class Child < ActiveRecord::Base | |
| belongs_to :parent | |
| end |
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
| .bundle | |
| vendor/bundle | |
| *~ | |
| *.swp |
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
| #!/usr/bin/ruby | |
| require 'webrick' | |
| server = WEBrick::HTTPServer.new( | |
| :ServerSoftware => nil, | |
| :BindAddress => '0.0.0.0', | |
| :Port => 80, | |
| :Logger => WEBrick::Log.new($stderr, WEBrick::Log::DEBUG), | |
| :AccessLog => [ |
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
| -----BEGIN PGP MESSAGE----- | |
| Version: GnuPG v1 | |
| jA0ECQMC/XZZrofwlJhg0u0BNEMqSnxdB8NJcFstYl2Korm8jQNz6LLXItIHKSlN | |
| g2ZiBuo7YAPO+dGDuFkac6jUqoFY2aLBI8kRGQLUii22vQmR9bD9k+mpWkLBak7z | |
| 5m+kEjzQbo/9aNgrvpgDZ4U8cxP13nhyWkSjsfOSeAhGOGxLSiDnp/TlfZRjscRL | |
| WF+1KFUKGL0sjAqXVkEdMe6PNCbQlozIyfSlFxJy4axtD4bL6BHsKxwYgKTorNOP | |
| sEOUPfe9E06hLVOwlOVZ8oyYzpV7WX3YwwLC0c1TE35jrjuXwnCER0RTFlvbdCFr | |
| DOMdIMrKEIEtfK+6n5AR/ojN4fdoORH7NQTG1OBiigkHVylBgMTxGOU5KMgE9526 | |
| c17aBmFwMTSatx565FqEpibRNvQr5lBHCOl3Ep0vPIX0pzTYFUel0RU3+3ZuFWvg |
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
| # Created by https://www.gitignore.io/api/node,vim,emacs | |
| ### Node ### | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| # Runtime data |
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
| --- | |
| Language: Cpp | |
| # BasedOnStyle: Mozilla | |
| AccessModifierOffset: -2 | |
| AlignAfterOpenBracket: Align | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignEscapedNewlinesLeft: false | |
| AlignOperands: true | |
| AlignTrailingComments: true |
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/sh | |
| # Dependency check : zenity, xclip | |
| if which zenity > /dev/null 2> /dev/null; then | |
| : | |
| else | |
| xmessage -nearmouse zenity is required but not installed. | |
| exit 1 | |
| fi |