I hereby claim:
- I am jochumdev on github.
- I am jochumdev (https://keybase.io/jochumdev) on keybase.
- I have a public key ASBwWcr4Y-tJrcJadtpRAj6tay8niPUBHzkHGFDSQ5A8KAo
To claim this, I am signing this object:
Copyright 2025 Rene Jochum | |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRU |
I hereby claim:
To claim this, I am signing this object:
{ | |
"name": "go-orb", | |
"sdk": "go", | |
"dependencies": [ | |
{ | |
"name": "go", | |
"source": "https://github.com/sagikazarmark/daggerverse/go@07f08ab95be76586c798bc55424c684ad6d41497" | |
}, | |
{ | |
"name": "golangci-lint", |
// This is based on https://github.com/nghttp2/nghttp2/blob/master/integration-tests/server_tester.go | |
package main | |
import ( | |
"bytes" | |
"crypto/tls" | |
"errors" | |
"fmt" | |
"log" | |
"net" |
DROP TABLE IF EXISTS tree_node CASCADE; | |
CREATE TABLE tree_node | |
( | |
id BIGSERIAL NOT NULL UNIQUE, | |
PRIMARY KEY(id) | |
); | |
DROP TABLE IF EXISTS tree_info CASCADE; | |
CREATE TABLE tree_info |
<?php | |
$test_domains = array( | |
"a.webmeisterei.com", | |
"b.webmeisterei.com", | |
"webmeisterei.com", | |
"google.at", | |
"webmeisterei.com1", | |
"twebmeisterei.com", | |
"z.webmeisterei.com", |
import QtQuick 2.9 | |
import QtQuick.Controls 2.2 | |
Column { | |
width: parent.width | |
height: parent.height | |
property alias model: columnRepeater.model | |
ListView { |
# -*- coding: utf-8 -*- | |
''' | |
LXD Cloud Module | |
================ | |
.. versionadded:: unknown | |
`LXD(1)`__ is a container "hypervisor". This execution module provides | |
several functions to help manage it and its containers. |