Roberto's Blog
Passionate software developer focused on Microsoft technologies.
-
Avoid caching in RequireJS
Add the urlArgs where youd define your configuration. This normally happens in the main.js
require.config({
urlArgs: 'v=' + (new Date()).getTime(),
baseUrl: '../Scripts',
..
});
-
Code monkey song
-
Tiny wysiwyg rich text editor for Bootstrap
This is a very cool and small WYSIWYG (What You See Is What You Get) editor for bootstrap
http://mindmup.github.io/bootstrap-wysiwyg/ more
-
Rules to be a better software developer
Don't automate something until is boring
-
Taking care of your personal time
This is an excellent video about one of the things I want to do in my life: Stop consuming and be more productive. This may help anyone who is interested in be more productive taking care of its own … more
-
Siren of Shame
My friend and co-worker Eric (id10terror.ericburcham.com) show me a link to the Siren of Shame.
It can ba useful when using a build system and share the shame across the development team. … more
-
How to strong sign an assembly easily
You will need:
Signer from CodePlex. You can download from here
A strong named key file (normally this is called an snk file).
Example:I have an assembly called MyAssembly.dll and I want … more