(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.
| // A* for libgdx that is simple but optimized. | |
| package test; | |
| import com.badlogic.gdx.ApplicationAdapter; | |
| import com.badlogic.gdx.Gdx; | |
| import com.badlogic.gdx.backends.lwjgl.LwjglApplication; | |
| import com.badlogic.gdx.graphics.Color; | |
| import com.badlogic.gdx.graphics.GL20; | |
| import com.badlogic.gdx.graphics.glutils.ShapeRenderer; |
(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.
| Requirments: | |
| WinPE or a second Account on the System that is Admin | |
| WinPE: | |
| If WinPE then you need to start RegEdit and mount the SAM hive (C:\windows\system32\config\SAM). | |
| If second Account you need RunAsSystem or DevxExec and run RegEdit with it or you take ownership of the Keys which i don't recommend though. | |
| { config, lib, ... }: | |
| with lib; | |
| let | |
| cfg = config.services.nixBinaryCacheCache; | |
| nginxCfg = config.services.nginx; |
| // knockout 3.5.0 | |
| ko.utils.addOrRemoveItem = function (array, value, included) { /* .. */ } | |
| ko.utils.anyDomNodeIsAttachedToDocument = function (nodes) { /* .. */ } | |
| ko.utils.arrayFilter = function (array, predicate) { /* .. */ } | |
| ko.utils.arrayFirst = function (array, predicate, predicateOwner) { /* .. */ } |
This plugin is not needed for versions >= 1.5 of roundcube, as the functionality was added by the developers!
Roundcube allows to access multiple IMAP Server, but all mails have to be send over the same SMTP server. This plugin allows to add multiple SMTP Server (one per IMAP Server) to Roundcube.
// normal declaration of multiple IMAP Server
$config['default_host'] = array(
'ssl://imap.example.de' => '.de',This is intended as a place to list blog posts about Zig, for anyone who's interested in reading what people have to say! Also check out links at https://ziglang.org/learn/ and https://ziglang.org/news/.
Posts were found by searching on lobste.rs, at https://dev.to/t/zig and https://medium.com/tag/zig.
Please let me know in a comment if there are any posts missing that you'd like me to add here!
| #!/usr/bin/env python3 | |
| import http.client | |
| import json | |
| import os | |
| import time | |
| import urllib.parse | |
| import urllib.request | |
| from pathlib import Path | |
| from typing import Any |