Skip to content

Instantly share code, notes, and snippets.

View jakubpolak's full-sized avatar

Jakub Polák jakubpolak

  • Slovakia
View GitHub Profile
@thomasdarimont
thomasdarimont / Readme.md
Last active February 12, 2025 18:28
Call stored procedure with ref-cursor mode as out parameter via Spring Data JPA and eclipse-link.

Run with:

-javaagent:/Users/tom/.m2/repository/org/springframework/spring-instrument/4.1.4.RELEASE/spring-instrument-4.1.4.RELEASE.jar
@staltz
staltz / introrx.md
Last active November 17, 2025 19:44
The introduction to Reactive Programming you've been missing
@hallettj
hallettj / global-variables-are-bad.js
Created February 14, 2009 21:15
How and why to avoid global variables in JavaScript
// It is important to declare your variables.
(function() {
var foo = 'Hello, world!';
print(foo); //=> Hello, world!
})();
// Because if you don't, the become global variables.
(function() {