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/sh | |
# Usage example: ./dump2pdf thread-dump.txt # will create thread-dump.pdf | |
ruby tdg.rb $1 > /tmp/graph.dot | |
dot -Tpdf /tmp/graph.dot -o ${1%.*}.pdf |
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
<div class="reviews"data-chars="190" data-more="больше" data-less="скрыть"> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
Vestibulum laoreet, nunc eget laoreet sagittis, | |
quam ligula sodales orci, congue imperdiet eros tortor ac lectus. | |
Duis eget nisl orci. Aliquam mattis purus non mauris | |
blandit id luctus felis convallis. | |
Integer varius egestas vestibulum. | |
Nullam a dolor arcu, ac tempor elit. Donec. | |
</div> |
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 | |
# /etc/init.d/xvfb_daemon | |
# Xvfb startup script. | |
# Tom Meier <[email protected]> | |
# | |
### BEGIN INIT INFO | |
# Provides: xvfb | |
# Short-Description: Start/stop/restart daemon | |
# Description: Controls the Xvfb daemon which starts/stops the X Virtual Framebuffer server | |
# Example Use: |