Warsztaty technologiczne także dla studentów

Zapraszamy studentów! temat: Oracle – budowa, działanie, cechy szczególne; 8.03 godz. 15:30; miejsce: biuro TouK;

warsztatyPiątki u nas to dzień poświęcony w części na naukę. Bardziej lub mniej regularnie odbywają się spotkania podczas, których developerzy TouK opowiadają o narzędziach, ciekawostkach dotyczących developmentu i nowych technologiach, których się nauczyli.
W tym tygodniu zapraszamy studentów!
Najbliższe spotkanie 8.03 o godzinie 15:30 poprowadzi Marek Pettka, miejsce: biuro TouK al. Bohaterów Września 9; temat: Oracle – budowa, działanie, cechy szczególne.
Ilość miejsc jest ograniczona dlatego zainteresowanych proszę o maila do środy 6.03 (do końca dnia) na adres: mzb@touk.pl. Oczekujcie odpowiedzi z informacją czy jest jeszcze miejsce.
PS. Jeżeli pomysł się sprawdzi będziemy na blogu informować o następnych spotkaniach.

Zapraszam!

You May Also Like

Simple HBase ORM

When dealing with data stored in HBase, you are quick to come to a conclusion, that it is extremaly inconvenient to reach to it via HBase native API. It is very verbose and you always need to convert between bytes and simple types - a pain. While I wa...When dealing with data stored in HBase, you are quick to come to a conclusion, that it is extremaly inconvenient to reach to it via HBase native API. It is very verbose and you always need to convert between bytes and simple types - a pain. While I wa...

Loops performance in Groovy

IntroductionIn the 2018 Advent of Code challenged I solved all the puzzles in Groovy. It is pretty obvious, that choosing good data structure is the most important to obtain performant solution. However, the way we iterate over those structures is also...