Original Author: Rui Ueyama (creator of the mold linker)
Translated by @windowsboy111
Minimally edited by @lleyton
Each day at our company, developers are required to document their activities, painstakingly jotting down their daily work and future plans. A monotonous chore that I just really dislike.
So now, there's a scribe for that :
- Testbed repository: Containing several implementation patterns of C#/Rust interoperability
- Mandelbrot renderer: The simplest sample
- QOI image loader: Simple but practical sample
- STL mesh loader: A bit complex sample including unmanaged resource management
This is a repost and update to an imgur album with screenshots of ToaruOS throughout its development, as imgur is no longer a viable platform for maintaining this collection.
My first commit in the ToaruOS repository, ecd4fe2bc170b01ad700ff76c16da96993805355, was made on January 15th, 2011. This date has become ToaruOS's "birthday". It would be another six years and two weeks before ToaruOS's first real release, 1.0.
This was originally taken from https://superuser.com/a/1012669/894282 and then updated to be compatible with python 3.X
Requires pypdf2
to be installed.
I have created a local Kubernetes cluster with kind. Following are changes you need to get metric-server running on Kind.
Deploy latest metric-server release.
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.5.0/components.yaml
Within existing arguments to metric-server container, you need to add argument --kubelet-insecure-tls
.
This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.
Additional explanations:
- iPhone means that an iPhone is basically required
- iFacialMocap support means that tracking data can be received from the iFacialMocap iPhone app
- VMC protocol means that the application can send and/or receive tracking data from other VMC protocol capable applications, allowing the combination of multiple tracking methods (e.g. VSeeFace receiving VR tracking from Virtual Motion Capture and iPhone/ARKit face tracking from Waidayo)
- Tobii means that the Tobii eye tracker is supported
from kernel_ffi import KP_ARGS_MODIFY, callback, current, ftrace, kprobe | |
# create struct casters | |
tcphdr = partial_struct("tcphdr") | |
sk_buff = partial_struct("sk_buff") | |
net_protocol_s = partial_struct("net_protocol") | |
def swap16(n): | |
n = n & 0xffff |
import logging | |
from boto3.session import Session | |
AWS_ACCESS_KEY_ID = 'your aws key ID' | |
AWS_SECRET_ACCESS_KEY = 'your aws secret access key' | |
AWS_REGION_NAME = 'your region name. e.g, us-east-1' | |
AWS_LOG_GROUP = 'MyLogGroup', # your log group | |
AWS_LOG_STREAM = 'Mystream', # your stream | |
AWS_LOGGER_NAME = 'watchtower-logger' # your logger |