Object-Oriented Software Development
Languages, patterns, technologies, frameworks.
Friday, April 20, 2018
Retaining document relative links when copying from HTML to Word
›
We have an automated document generation tool that creates a HTML documentation of a given database. The generated HTML structure uses rela...
Monday, April 9, 2018
Extending Generator prototype to get LINQ-like experience in Javascript
›
Generator functions let us write iterators in a very concise way. Take a simple example: function* range(n,m) { for ( var i=n; i<m...
Thursday, March 8, 2018
SSO - integracja z ePUAP (Dostawca Tożsamości) w .NET
›
2020-08: na github znajduje się repozytorium kodu OldMusicBox.ePUAP.Client , które ilustruje opisane niżej perypetie działającym kodem. ...
6 comments:
Wednesday, November 22, 2017
Useful caching pattern
›
One of the SO answers contains an interesting caching pattern , proposed by user Keith static string GetCachedData(string key, DateTimeOff...
Monday, November 13, 2017
Node.js, circularly dependent modules and intellisense in VS Code
›
Circularily dependand modules in Node.js is something most people recommend you should definitely avoid. Let's start with an example o...
Monday, October 9, 2017
Javascript Puzzle No.2 (beginner)
›
The Object.keys is supposed to return keys (property names) of given object. As the docs says, it should be equivalent of the for...in loo...
1 comment:
Thursday, October 5, 2017
JWT tokens between .NET and node.js
›
Node.js JWT tokens are straightforward var jwt = require('jsonwebtoken'); var secret = "This is my shared, not so secret, se...
‹
›
Home
View web version