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
<!doctype html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="/javascripts/semantic.min.css"> | |
<script type="text/javascript" src="/javascripts/jquery-1.11.3.min.js"></script> | |
<script type="text/javascript" src="/javascripts/semantic.min.js"></script> | |
<script type="text/javascript" src="/javascripts/components/search.min.js"></script> | |
</head> | |
<body> | |
<div class="ui search"> |
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
funct() { | |
case $( uname -s ) in | |
Linux) | |
echo "You're on Linux";; | |
Darwin) | |
echo "You're on Mac";; | |
*) | |
echo "Not supported on this os.";; | |
esac | |
} |
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
Java client-server framework | |
It looks like that it has a very steady commit history with commits every week. They also have a test suite already made. | |
https://github.com/netty/netty | |
--------------------------------------------------------------------------- | |
Python broadcast messaging application for webapps | |
It's built on top of very mature libraries and has a test suite already |