Martin Sookael

Results 10 comments of Martin Sookael

Realized it's the wrong place for this question and asked it again here: https://github.com/millermedeiros/crossroads.js/issues/126

So as I'm interested in the question I started to figure out a way to hack it. As a surprise I found myself back in the hasher library. I hope...

The other thing I was not seeing is that links like this require the whole page to load again. The third is is that if the link is without a...

I just built a Wordpress theme relying on Signals, Hasher and Crossroads. https://github.com/jayJs/wp-jay Bet you did not see that one coming. Since Crossroads has so many subscribers I think this...

So sorry for bother you with this again. The same question came up as I was trying to find clever hacks for Single Page App SEO. Since everything after "#"...

I've implemented it here: http://uudised.ngo.ee and here: http://merilinmandel.com/gallery/portrait It did require the above mentioned addition to Hasher, I implemented it here: https://github.com/jayJs/jay/blob/master/extra/shredder.js Somebody just tell me, if this should be...

If you set it up correctly, the data in your NeDB db is persistent anyway, so you would not need to use outside data services for persistency, just for backuping....

AFAIK* it's stored as JSONL: http://jsonlines.org Where object elements are separated by a newline rather then commas. It's supposed to give you faster search times then searching from the regular...

@BobDickinson Not sure I understand all of this, but do bear in mind the RAM memory implications. NeDB loads the whole opened DB to RAM, so if your DB is...

1) var app = express(); // that's fixable on line 98, with "var app = express.express.createServer(" to "var app = express(" 2) everyauth.helpExpress is being deprecated - that's line 120....