https://www.codeguru.com/csharp/.net/net_debugging/best-exception-handling-techniques-in-.net.html
Category: dev
XFS
https://wiki.ubuntu.com/XFS
iSCSI on Ubuntu
https://www.hiroom2.com/2016/05/20/ubuntu-16-04-debian-8-install-iscsi-target-and-share-with-windows-10/
https://www.server-world.info/en/note?os=Ubuntu_16.04&p=iscsi&f=2
https://help.ubuntu.com/lts/serverguide/iscsi-initiator.html
Linux Software RAID – step by step
https://www.digitalocean.com/community/tutorials/how-to-create-raid-arrays-with-mdadm-on-ubuntu-16-04
http://michal.karzynski.pl/blog/2009/11/18/mdadm-gui-via-webmin/
https://raid.wiki.kernel.org/index.php/RAID_setup
Synology startup script location
/usr/local/etc/rc.d
Spring Boot with IntelliJ – make project template
http://sivalabs.in/2016/09/getting-started-springboot-intellij-idea-community-edition/
MultiDataBase – Spring Boot sample – in testing
https://github.com/origoni/MultiDatabase
liquibase.xml :: modified xml
ehcache : added dto
navbar.html : entity
i18n/en/global.json : language
Perforce ignore list
# set
/Applications/Perforce/p4 set P4IGNORE=/Users/belliny/project/eyes/.p4ignore
# check
/Applications/Perforce/p4 ignores -v -i ./node_modules/
Node.JS custom Callback function declare
http://stackoverflow.com/questions/2190850/create-a-custom-callback-in-javascript
Actually, your code will pretty much work as is, just declare your callback as an argument and you can call it directly using the argument name. The basics
That will call Note that it’s very important to pass the function reference ( More advanced stuffSometimes you want to call the callback so it sees a specific value for
You can also pass arguments:
Sometimes it’s useful to pass the arguments you want to give the callback as an array, rather than individually. You can use
|
It is good practice to make sure the callback is an actual function before attempting to execute it:
|
My 2 cent. Same but different…
<script>
dosomething("blaha", function(){
alert("Yay just like jQuery callbacks!");
});
function dosomething(damsg, callback){
alert(damsg);
if(typeof callback == "function")
callback();
}
</script>
Registered IO, Windows 8
http://www.serverframework.com/asynchronousevents/2011/10/windows-8-registered-io-networking-extensions.html