- Quick look around VMP 3.x:
- Tickling VMProtect with LLVM:
- Part 3: Optimization
| // I'm tired of extensions that automatically: | |
| // - show welcome pages / walkthroughs | |
| // - show release notes | |
| // - send telemetry | |
| // - recommend things | |
| // | |
| // This disables all of that stuff. | |
| // If you have more config, leave a comment so I can add it!! | |
| { |
Discord timestamps can be useful for specifying a date/time across multiple users time zones. They work with the Unix Timestamp format and can be posted by regular users as well as bots and applications.
The Epoch Unix Time Stamp Converter is a good way to quickly generate a timestamp. For the examples below I will be using the Time Stamp of 1543392060, which represents November 28th, 2018 at 09:01:00 hours for my local time zone (GMT+0100 Central European Standard Time).
| Style | Input | Output (12-hour clock) | Output (24-hour clock) |
|---|---|---|---|
| Default | <t:1543392060> |
November 28, 2018 9:01 AM | 28 November 2018 09:01 |
A userstyle that makes you wait ten seconds before entering a Hacker News thread. I use stylus to manage mine.
.subtext {
display: inline-block;
background: linear-gradient(to left, transparent 50%, #f60 50%) right;| From https://cbonte.github.io/haproxy-dconv/1.7/configuration.html#8.5 | |
| Session state at disconnection | |
| TCP and HTTP logs provide a session termination indicator in the | |
| "termination_state" field, just before the number of active connections. It is | |
| 2-characters long in TCP mode, and is extended to 4 characters in HTTP mode, | |
| each of which has a special meaning : | |
| - On the first character, a code reporting the first event which caused the |
| using HtmlAgilityPack; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Xml.Linq; | |
| using System.Xml.XPath; | |
| // generated page is hosted at https://drachev.com/officedaytime/ |
This is a collection of the things I believe about software development. I have worked for years building backend and data processing systems, so read the below within that context.
Agree? Disagree? Feel free to let me know at @JanStette.
Keep it simple, stupid. You ain't gonna need it.
