Skip to content

Instantly share code, notes, and snippets.

View feliwir's full-sized avatar
👨‍💻
Coding along

Stephan Vedder feliwir

👨‍💻
Coding along
  • mbits imaging GmbH
  • Germany
View GitHub Profile
#include "voyager-image.h"
#include <gexiv2/gexiv2.h>
#include <graphene.h>
#include <gtk/gtk.h>
struct _VoyagerImage
{
GObject parent_instance;
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0" />
<menu id="primary-menu">
<section>
<item>
<attribute name="label" translatable="yes">_Open</attribute>
<attribute name="action">win.open</attribute>
</item>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0" />
<menu id="primary-menu">
<section>
<item>
<attribute name="label" translatable="yes">_Open</attribute>
<attribute name="action">win.open</attribute>
</item>
</section>
@feliwir
feliwir / log.txt
Last active February 22, 2022 14:35
HEAD is now at ae4eacf1 Release 1.21.1
[2/9] Performing update step for 'alsoft-populate'
[4/9] No patch step for 'alsoft-populate'
[5/9] No configure step for 'alsoft-populate'
[6/9] No build step for 'alsoft-populate'
[7/9] No install step for 'alsoft-populate'
[8/9] No test step for 'alsoft-populate'
[9/9] Completed 'alsoft-populate'
-- Looking for posix_memalign
-- Looking for posix_memalign - found
==========
VULKANINFO
==========
Vulkan Instance Version: 1.2.176
Instance Extensions: count = 11
===============================
VK_EXT_debug_report : extension revision 10
prettifyJson(obj)
{
var result = ""
for (const [key, value] of Object.entries(obj)) {
if(key == "blabla")
result += "SchönesBlabla: " + value;
else
result += key+ ": " + value
result += "\n";
#pragma once
#include <libio/Read.h>
#include <libsystem/Common.h>
#include <libtest/AssertEqual.h>
#include <libtest/AssertGreaterThan.h>
#include <libtest/AssertLowerEqual.h>
namespace IO
{
class BitReader
#pragma once
#include <libio/Read.h>
#include <libsystem/Common.h>
#include <libtest/AssertEqual.h>
#include <libtest/AssertGreaterThan.h>
namespace IO
{
class BitReader
{
#pragma once
#include <Filesystem.h>
#include <libsystem/Common.h>
#include <libutils/RefPtr.h>
class StreamReader : public RefPtr<StreamReader>
{
public:
virtual size_t length() = 0;
var Module = {
preRun: [],
postRun: [],
print: (function() {
return function(text) {
if (arguments.length > 1)
{
text = Array.prototype.slice.call(arguments).join(' ');
}
console.log(text);