This file contains 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/fontforge | |
i=1 | |
while( i<$args ) | |
Open($1) | |
Generate($1:r + ".ttf") | |
i = i+1 | |
endloop |
This file contains 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
# Generate binary package list and there version in | |
# line like ubuntu manifest file | |
dpkg-query -W -f='${binary:Package}\t${Version}\n' |
This file contains 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
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |
This file contains 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
Running 655 tests...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................OK! | |
bin/mspec ci :ci_files -t bin/rbx -d --background | |
rubinius X.Y.Z (2.2.0 2016-01- 2016-01-17 3.4 JI) [i686-linux-gnu] | |
.................................................................................................................................................................................................................................... |
This file contains 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
Running 655 tests...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................OK! | |
bin/mspec ci :ci_files -t bin/rbx -d --background | |
rubinius 3.4 (2.2.0 2016-01- 2016-01-17 3.4 JI) [i686-linux-gnu] | |
........................................................................................................................................................................................................................................ |
This file contains 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
rubinius 3.4 (2.2.0 2016-01- 2016-01-10 3.4 JI) [i686-linux-gnu] | |
...................[BUG: Uncaught C++ exception] | |
Please report this with the following backtrace to https://github.com/rubinius/rubinius/issues | |
The Rubinius process is aborting | |
bin/rbx(_ZN8rubinius5abortEv+0x2b) [0x81f0f7b] | |
bin/rbx() [0x81e8ea2] | |
/usr/lib/i386-linux-gnu/libstdc++.so.6(+0x4a1f3) [0xb757d1f3] | |
/usr/lib/i386-linux-gnu/libstdc++.so.6(+0x4a22f) [0xb757d22f] | |
/usr/lib/i386-linux-gnu/libstdc++.so.6(+0x4a496) [0xb757d496] | |
bin/rbx(_ZN8rubinius13RubyException5raiseEPNS_9ExceptionEb+0x55) [0x81f0c95] |
This file contains 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 Rubinius | |
config = {} | |
config[:config_file] = "/home/anwar/Downloads/rubinius-3.4/config.rb" | |
config[:command_line] = [] | |
config[:build_make] = "make" | |
config[:build_rake] = "rake" | |
config[:build_perl] = "perl" | |
config[:llvm_enabled] = true | |
config[:llvm_path] = nil | |
config[:llvm_system_name] = nil |
This file contains 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 | |
if [ $# -ne 1 ] | |
then | |
echo Usage: `basename $0` PATH_TO_DOWNLOADED_TGZ | |
echo Example: `basename $0` ~/Downloads/jdk-7u4-linux-x64.tar.gz | |
exit 127 | |
fi | |
if [[ $USER != "root" ]] | |
then |
This file contains 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
[Desktop Entry] | |
Type=Application | |
Terminal=false | |
StartupNotify=true | |
Name=Sublime Text 3 | |
Name[en_US]=Sublime Text 3 | |
GenericName=Text Editor | |
GenericName[en_US]=Text Editor | |
Comment=Edit text files | |
Comment[en_US]=Edit text files |
This file contains 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
.pagination { | |
display:inline-block; | |
form { | |
display: inline-block; | |
margin:0; | |
select { | |
width:100px; | |
} | |
} | |
} |