I hereby claim:
- I am onidaito on github.
- I am onidaito (https://keybase.io/onidaito) on keybase.
- I have a public key ASCtK_wwbbJOA8pcRVCTnRaDznPTQ12Ca31UsW_d3bPYdgo
To claim this, I am signing this object:
// Command Pool Functions | |
pub fn create_command_pool( | |
device: &ash::Device, | |
queue_families: &QueueFamilyIndices, | |
) -> vk::CommandPool { | |
let command_pool_create_info = vk::CommandPoolCreateInfo { | |
s_type: vk::StructureType::COMMAND_POOL_CREATE_INFO, | |
p_next: ptr::null(), | |
flags: vk::CommandPoolCreateFlags::empty(), | |
queue_family_index: queue_families.graphics_family.unwrap(), |
from platformio.public import UnityTestRunner | |
class CustomTestRunner(UnityTestRunner): | |
UNITY_FRAMEWORK_CONFIG = dict( | |
native=dict( | |
code=""" | |
#include <stdio.h> | |
void unityOutputStart(unsigned long baudrate) { (void) baudrate; } | |
void unityOutputChar(unsigned int c) { putchar(c); } |
/** | |
* ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ | |
* █░███░██▄██░▄▄▄█░▄▄▄█░██░▄▄ | |
* █▄▀░▀▄██░▄█░█▄▀█░█▄▀█░██░▄▄ | |
* ██▄█▄██▄▄▄█▄▄▄▄█▄▄▄▄█▄▄█▄▄▄ | |
* ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ | |
* @file solver.cpp | |
* @author Benjamin Blundell - [email protected] | |
* @date 21/10/2022 | |
* @brief Go through all centroids and create the best average |
#include <FastLED.h> | |
#include <SoftwareSerial.h> | |
SoftwareSerial MyBlue(11, 12); // RX | TX | |
#define PIN_LEFT_EYE 3 | |
#define PIN_RIGHT_EYE 4 | |
#define LEFT_OFFSET 2 | |
#define RIGHT_OFFSET -4 | |
#define STRIP_SIZE 16 |
# Our drawing graph functions. We rely / have borrowed from the following | |
# python libraries: | |
# https://github.com/szagoruyko/pytorchviz/blob/master/torchviz/dot.py | |
# https://github.com/willmcgugan/rich | |
# https://graphviz.readthedocs.io/en/stable/ | |
def draw_graph(start, watch=[]): | |
from graphviz import Digraph |
-- Searching an n'ary tree returning the char or null | |
-- Benjamin Blundell | |
-- [email protected] | |
-- | |
-- https://www.reddit.com/r/haskellquestions/comments/3han54/how_do_you_flatten_a_nested_list_of_arbitrary/ | |
module Main where | |
data Tree a = Leaf a | Branch a [Tree a] deriving (Show) |
# 3 atoms from the previous residue | |
# The first residue already has the first 3 atoms laid out | |
a = prev_res.a.clone() | |
b = prev_res.b.clone() | |
c = prev_res.c.clone() | |
d = @a | |
na = [@b,@c] | |
# Bond lengths, bond angles and torsions (already in radians, as extracted from the DB) | |
blengths = [1.53, 1.453, 1.325] |
I hereby claim:
To claim this, I am signing this object:
Come fork bombs, and fall on Slough It isn't fit for servers now No disk space I hear you howl rm minus rf
Come fork bombs and crash the machines Those air-conditioned, Windows XPs Dell Racks, Dell Blades, Dell Screens Dell Minds, Dell Invoices
use strict; | |
use Irssi; | |
use Irssi::Irc; | |
use vars qw($VERSION %IRSSI); | |
use POSIX; | |
sub grapher { | |