Skip to content

Instantly share code, notes, and snippets.

View matheusml's full-sized avatar

Matheus Lima matheusml

View GitHub Profile
var printSquares = function(n) {
if (n > 0) {
printSquares(n-1);
console.log(n*n);
}
};
var counter = 0;
var increment = function(counter) {
return counter + 1;
};
Verifying I am +matheuslima on my passcard. https://onename.com/matheuslima
<system.webServer>
<rewrite>
<rules>
<rule name="CrawlerBotRedirect">
<match url="(.*)html"/>
<action type="Redirect" url="http://google.com" redirectType="Found" />
</rule>
</rules>
</rewrite>