This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
| package fi.luotocompany.logger; | |
| import java.time.LocalDateTime; | |
| import java.time.format.DateTimeFormatter; | |
| /** | |
| * Simple and secure logger by Kimmo Wikman, Luoto Company | |
| */ | |
| public class SimpleLogger { |
Hello software developers,
Please check your code to ensure you're not making one of the following mistakes related to cryptography.
Books should be available in Siili library, also in dead-trees format. Some of the sites are paywalled but worth it, so prefer these over free copies. If something is missing, please have it bought.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
Most of us won’t be able to use/deploy JDK 8 in production for a looong time. But that shouldn’t stop us from using it, right?
It should be possible to sneak in JDK 8 in the back way, the same way we snuck in Groovy and other libraries we wanted to use.
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 14, | |
| // font family with optional fallbacks |
| import time | |
| import win32api, win32con | |
| VK_CODE = {'left_arrow':0x25, | |
| 'spacebar':0x20, | |
| 'right_arrow':0x27} | |
| def press(x): | |
| win32api.keybd_event(VK_CODE[x], 0,0,0) | |
| win32api.keybd_event(VK_CODE[x],0 ,win32con.KEYEVENTF_KEYUP ,0) |