http://www.matthewhughes.co.uk/really-scrapable-web-app-is-a-new-way-to-learn-about-web-scraping/
http://habrahabr.ru/post/191850/ MindMap on JavaScript
http://snook.ca/archives/javascript/going-simple-with-javascript
IDE for Web development
http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-for-web#product-express-web
pip install bottle
Result: bottle.py in 2 folders:
under PYTHONHOME\Scripts\ and PYTHONHOME\Lib\site-packages\
https://pypi.python.org/pypi/rdflib
pip install rdflib
Installing collected packages: html5lib, isodate, ordereddict, pyparsing, rdflib, six, SPARQLWrapper
Running setup.py install for html5lib
Running setup.py install for isodate
Running setup.py install for ordereddict
Running setup.py install for pyparsing
Running setup.py install for rdflib
Installing rdf2dot-script.py script to %PYTHONHOME%\Scripts
Installing rdf2dot.exe script to %PYTHONHOME%\Scripts
Installing csv2rdf-script.py script to %PYTHONHOME%\Scripts
Installing csv2rdf.exe script to %PYTHONHOME%\Scripts
Installing rdfgraphisomorpishm-script.py script to %PYTHONHOME%\Scripts
Installing rdfgraphisomorpishm.exe script to %PYTHONHOME%\Scripts
Installing rdfs2dot-script.py script to %PYTHONHOME%Scripts
Installing rdfs2dot.exe script to %PYTHONHOME%\Scripts
Installing rdfpipe-script.py script to %PYTHONHOME%\Scripts
Installing rdfpipe.exe script to %PYTHONHOME%\Scripts
Running setup.py install for six
Running setup.py install for SPARQLWrapper
Successfully installed html5lib isodate ordereddict pyparsing rdflib six SPARQLWrapper
RDF Examples
http://rdflib.readthedocs.org/en/latest/apidocs/examples.html
https://gist.github.com/msalvadores/868064
http://www.slideshare.net/alchueyr/getting-the-most-out-of-sparql-with-python
http://semanticweb.org/wiki/Getting_data_from_the_Semantic_Web
http://internship-semanticweb-cizaralmalak.blogspot.com/2013/04/writing-rdf-using-python-rdflib.html
http://gromgull.net/blog/2011/01/a-quick-and-dirty-guide-to-your-first-time-with-rdf/
integrate with
http://www.w3.org/RDF/Validator/
Dependency Visualization
http://msdn.microsoft.com/en-us/library/vstudio/dd409453.aspx
http://www.meetingcpp.com/index.php/br/items/releasing-boost-dependency-analyzer-1-1.html
http://lucumr.pocoo.org/2013/8/18/beautiful-native-libraries/
http://domseichter.blogspot.com/2008/02/visualize-dependencies-of-binaries-and.html
{code}
#!/bin/bash
echo $INPUTDIR
FILES=${INPUTDIR}/*
OUT=/tmp/OUT
rm -r $OUT
mkdir $OUT
#TODO skip directories
for f in $FILES
do
res=`file -b $f | cut -c 1-21`
size=`ls -l $f | cut -f5 -d' '`
base=$(basename "$f")
TYPE=unknown
if [ "$res" = "ELF 64-bit LSB shared" ]
then
TYPE="shared"
echo $base >> $OUT/all_so.txt
elif [ "$res" = "ELF 64-bit LSB execut" ]
then
TYPE="exe"
echo $base >> $OUT/all_exe.txt
fi
if [ $TYPE != "unknown" ]
then
echo "$base" $TYPE $size > $OUT/$base
readelf -d $f | grep NEEDED | tr -s ' ' | cut -f6 -d' ' | cut -f2 -d'[' | cut -f1 -d']' >> $OUT/$base
sed 1d $OUT/$base >> $OUT/all_dependency.txt
fi
done
sort $OUT/all_dependency.txt | uniq -c > $OUT/all_uniq_dependency_count.txt
sort $OUT/all_dependency.txt | uniq > $OUT/all_uniq_dependency.txt
TMP_FILE=$OUT/all_local_files_tmp.txt
cat $OUT/all_so.txt > $TMP_FILE
cat $OUT/all_exe.txt >> $TMP_FILE
sort $TMP_FILE | uniq > $OUT/all_local.txt
rm $TMP_FILE
{code}
http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
http://www.yolinux.com/TUTORIALS/LibraryArchives-StaticAndDynamic.html
Examples:
nm -C --defined-only -g <library.so>
nm -D -C -g <library.so>
$ nm -D /usr/lib/libopenal.so.1
.
.
.
00012ea0 T alcSetThreadContext
000140f0 T alcSuspendContext
U atanf
U calloc
.
.
.
Exported symbols are indicated by a T.
Required symbols that must be loaded from other shared objects have a U.
Note that the symbol table does not include just functions, but exported variables as well.
shared library
nm -C --defined-only -g <library.so>
http://www.ibm.com/developerworks/aix/library/au-aix-symbol-visibility/index.html
HTML page layout
http://stackoverflow.com/questions/4721590/html-css-nav-bars-on-the-left-side-of-page
http://philipwalton.com/articles/decoupling-html-css-and-javascript/
CSS
https://news.ycombinator.com/item?id=6242121
Processing onClick events in JavaScript
http://stackoverflow.com/questions/3545341/jquery-get-the-id-value-of-li-after-click-function
http://stackoverflow.com/questions/6276835/onclick-event-pass-li-id-or-value
http://toddmotto.com/attaching-event-handlers-to-dynamically-created-javascript-elements/
<script src="jq/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#myid li").click(function() {
alert($(this).text()); // Pop-up window with text of clicked li
document.getElementById('foo').innerHTML = $(this).text();
});
});
</script>
<ul id='myid'>
<li>xFirst</li>
<li>xSecond</li>
<li>xThird</li>
<li>xFourth</li>
<li>xFifth</li>
</ul>
<div id="foo">Div you want to change</div>
Dynamically generated HTML content
http://stackoverflow.com/questions/2186041/change-content-of-a-div-using-javascript
http://javascript.info/tutorial/modifying-document
http://toddmotto.com/attaching-event-handlers-to-dynamically-created-javascript-elements/
Generating table from JSON
https://gist.github.com/LevelbossMike/2623382 using D3
https://github.com/gregory80/fastFrag
http://blog.andremakram.com/?p=7
http://www.zachhunter.com/2010/04/json-objects-to-html-table/
http://www.mavenspun.com/javascript/learn-programming/how-to-build-reusable-table-from-json.htm
http://stackoverflow.com/questions/1051061/convert-json-array-to-an-html-table-in-jquery
https://github.com/afshinm/Json-to-HTML-Table
http://growingtech.blogspot.com/2010/12/json-to-html-table.html
Ajax
http://stackoverflow.com/questions/3567369/reading-server-side-file-with-javascript
Populating Widjets from ajax
http://stackoverflow.com/questions/12044330/jquery-chosen-plugin-dynamically-populate-list-by-ajax
http://onwebdev.blogspot.com/2011/02/jquery-parsing-csv-file.html
<script src="js/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: "GET",
url: "autorating.csv",
contentType: "text/csv",
success: function(data) {alert('Success');
alert(data);
$("#resultarea").text(data);
}
});
});
</script>
<body>
<div id="resultarea"></div>
</body>
Reading CSV File from JavaScript
http://www.w3.org/TR/FileAPI/
http://www.html5rocks.com/en/tutorials/file/dndfiles/
http://stackoverflow.com/questions/7431268/how-read-data-from-csv-file-using-javascript
http://stackoverflow.com/questions/5846556/how-to-create-an-array-by-reading-text-file-in-javascript
HTML5 layout and templates
http://toytic.com/class/html5_pageLayoutRedone.html
http://www.codeproject.com/Articles/146409/Semantic-HTML5-Page-Layout
http://www.cssportal.com/layout-generator/
http://www.generateit.net/layout-generator/
http://msdn.microsoft.com/en-us/magazine/gg619394.aspx CSS selectors
<head>
<link rel="stylesheet" type="text/css" href="your_css_file.css">
</head>
http://htmlandcssbook.com/code-samples/
HTML-2-JSON