Site uses cookies to provide basic functionality.
Javascript rendering is set to off by default when visiting the site via .onion and .i2p domains. It can be enabled back again in user's settings section. Javascript rendering set to off means, that you can disable javascript in your browser now and the site will remain functional.
There is also IRC server now available via native IRC clients or non javascript web based one.
Fonts can be adjusted in user's settings section as well.
Check FAQ for more.

OK

We do think that our tech blog is full of interesting things powered by our engineers' great stories. Let us take you on a journey of how we maintain trivago tech blog from the technical perspective and how we recently automated its deployment process.

A little less than two years ago, SoundCloud began the journey of replacing our homegrown deployment platform, Bazooka, with Kubernetes. Kubernetes automates deployment, scaling, and management of containerized applications.

We do think that our tech blog is full of interesting things powered by our engineers' great stories. Let us take you on a journey of how we maintain trivago tech blog from the technical perspective and how we recently automated its deployment process.

Coding on tealeaves today was mostly pulling interesting bits out of ssh keys. Misc things discovered openssh will only generate 1024 bit dsa keys, which are not secure, but longer key sizes are supported by other software ecdsa keys the "bits" field represents either 256, 384, or 521 bit size curves and those are the only valid sizes The specific curves are encoded in ASN.1 as object identifiers that appear to be assigned well-known OIDs....



Today I mostly worked on some pgexercises . I learned some good things and did some fairly complex joins but I still feel like I need a lot more practice with joins before I'll actually get that clear light bulb of understanding. Our study group met and reviewed some stuff and made plans. I was hoping to also do some web security capture the flag exercises AND make progress on tealeaves but didn't even come close to getting to either of th....

Here's how I run use docker to run databases for local development. I think my approach is the simplest I've seen and if something is unnecessary I skip it. You don't need data containers or port mappings, so I don't use them. The goal here is to make it very easy to run databases while developing applications or doing DB development work. It's basically the same for macOS and linux but I'm currently on macOS so that's where my instructions....

Bower is no longer the dependency manager of choice for front-end projects. While the open source project is still maintained, its creators decided to deprecate it, and have advised how to migrate to other solutions. In this post, we explain why Bower used to be great, list six reasons why it isn’t necessary anymore, and explain how to move on to newer and better technologies.

This morning I paired on figuring out the structure of rsa private keys which was much easier since someone already wrote detailed documentation with fabulous color-coded binary structures. So mostly we just needed to figure out specifically what is meant when someone says "this is a 1024-bit rsa key". The answer is it's the size of the modulus field. Then we needed the rust code to parse it out, which we used the yasna crate for. My ....

searchcode plexus - boyter.org - 8 years ago - eng
Plexus “A combination of interlaced parts; a network.” For a while I have been neglecting searchcode.com while working on searchcode server. This is of course not an ideal situation and as such I have started working on it again. The following is just a brief list of things I am considering, problems, issues etc… So back when I first started working on searchcode I wrote it using PHP. For searchcode next (the current version) I rewrote i....



Five months have past since my last post about personal projects and endeavours but it feels like I've been stagnating for much longer.

The Empire of Oil - rybakov.com - 8 years ago - eng
Costa Compagnie was preparing the Empire of Oil 360° movie to show at Ballhaus Ost in Berlin. Two days before the premiere:

Doodle Page - peekread.info - 8 years ago - eng

Doodle Page - peekread.info - 8 years ago - eng

Doodle Page - peekread.info - 8 years ago - eng

Doodle Page - peekread.info - 8 years ago - eng

Doodle Page - peekread.info - 8 years ago - eng

Doodle Page - peekread.info - 8 years ago - eng

About year ago, I wrote about the findings from an exercise in attempting to typeset Chinese vertically on the web. What came out of that was a bare-bones demo…

I always have some random side project I am working on, whether it is making the world’s most over engineered desktop OS all running in containers or updating all my Makefiles to be the definition of glittering beauty. This post is going to go over I how I recently redid all my home networking and ultimately how I got to here: ssh-ed into my dev NUC from a Pixelbook 39,000 feet, authenticated from an ssh key on a yubikey, the future....

In this tutorial we are going to create a Ruby on Rails application that will use elasticsearch to allow users to store and search their content. The sample application will be a stupid simple blog and the data will be, what else, posts. The integration with elasticsearch will be accomplished via the elasticsearch gems for Rails and we will use Kibana to view and check our index configuration. Note: The code of this tuto....

In this tutorial we are going to create a Ruby on Rails application that will use elasticsearch to allow users to store and search their content. The sample application will be a stupid simple blog and the data will be, what else, posts. The integration with elasticsearch will be accomplished via the elasticsearch gems for Rails and we will use Kibana to view and check our index configuration. Note: The code of this tuto....

In this tutorial we are going to create a Ruby on Rails application that will use elasticsearch to allow users to store and search their content. The sample application will be a stupid simple blog and the data will be, what else, posts. The integration with elasticsearch will be accomplished via the elasticsearch gems for Rails and we will use Kibana to view and check our index configuration. Note: The code of this tuto....

Two weeks ago, Alex Crichton’s PR adding a target for WebAssembly to the Rust compiler was merged. There are many differences between this target and the Emscripten one, but the important one for me is that it doesn’t depend on external stuff like the Emscripten SDK (which IIRC used to be a pain to get working on Windows, but seems to be better now). After seeing the examples on hellorust.com, I thought it would be interesting to try to ada..


Today I refactored all my various scratch iterations of code to dig into the details of an ed25519 openssh private key file and integrated that into the main tealeaves executable file. I added some unit tests for edge cases and I've so far been pleased with how unit testing is in rust. The cargo command line is weird for testing: I often have to do something like RUST_BACKTRACE=1 cargo test --jobs=1 long_field -- --nocapture to try to debug..


Today I finished understanding the openssh private key format for ed25519 keys. Yesterday's analysis had a few remaining mysteries that a fellow RCer helped me solve plus a pair of mistakes that threw off some fields. So here for the record is a "complete" byte-by-byte analysis of what's inside an openssh ed25519 private key (both with and without a passphrase). This was done with OpenSSH_7.5p1, LibreSSL 2.5.4 on macOS 10.13. I say "complet....

Java 9 Strings - studiofreya.org - 8 years ago - eng
String in Java 9 is a data type just like integer and floating point, but it is used to represent text rather than numbers or a single character. String variable is comprised of a set of characters that can also contain spaces, numbers and special characters. For instance, the word “tennis” and the phrase “I play tennis” are an example of string variable. Even a number “5445” could be considered a string in Java, if specified correctly.

One of the best TPS I've ever played, I've been playing this in the last 10 years and this game neve...

So today (my 15th day of RC sabbatical) was where the rubber was supposed to hit the road. I was working on actually digging into the meaty bits of the OpenSSH private key PEM files and starting to peek into the base64 encoded data. I did some research this morning and futzed around with both bash pipelines and rust code to start to understand how these files work. First fun thing I found was looking at the raw data inside a PEM-encoded....




SASS is a preprocessor that provides features like variables, nesting, mixins, inheritance and other nifty goodies and makes CSS clean and…

A lot of people have asked me to do another run of my Oracle Troubleshooting training or at least get access to previous recordings – so I decided to geek out over the holiday period, update the material with latest stuff and run one more AOT class in 2018 ! The online training will take place on 29 January – 2 February 2018  (Part 1) & 26 February – 2 March 2018 (Part 2).

A lot of people have asked me to do another run of my Oracle Troubleshooting training or at least get access to previous recordings – so I decided to geek out over the holiday period, update the material with latest stuff and run one more AOT class in 2018 ! The online training will take place on 29 January – 2 February 2018  (Part 1) & 26 February – 2 March 2018 (Part 2).

A common topic of conversation is what people would do if they won the lottery. People often dream of winning it big any buying big houses, nice cars, and quitting their jobs. My brothers and I weren’t immune to this topic, however, we often would have another answer as to what to do with lottery winnings: put it in the bank and live off the interest.

Today I used the rust pem crate to check whether a given file was or was not parseable as PEM encoded. PEM stands for Privacy Enhanced Mail. I learned that most ssh private keys are stored as PEM files and there are ED25519, ECDSA, RSA, and DSA types (maybe more but those are the ones I'm familiar with and read about a bit in the openssh source code). Still not clear on whether the public keys are in SSLEAY format or not. Also did some pair..

So as an exercise I wanted to make a rust struct with custom order and blog the process. I did this in my tealeaves project to get some data to group/sort by severity (errors then warnings then infos) and it worked nicely but it was mostly the derived implementations and I wanted to review. So let's make a basic Person struct (very similar to the example in the official rust docs, but we'll get fancier). struct Person { name: String, } fn....

I ran across this one today. Microsoft's Visual Studio C++ compiler (MSVC) doesn't inline functions marked as inline, even when the function is only called once (has exactly one call site). A little background on inliners: The inliner is the part of the compiler that inlines function calls. For every function call site (function/procedure invocation) it needs to decide whether to inline the function there, replacing the function call ....

114 visitors online