Skip to content

Instantly share code, notes, and snippets.

View vbifonixor's full-sized avatar
🦾

Mikhail Kononenko vbifonixor

🦾
View GitHub Profile
@vbifonixor
vbifonixor / context.md
Last active July 18, 2026 11:32
Android device screen mirroring

Anbernic Companion — LLM Context

Purpose of this file

This file is intended primarily as context for an AI/LLM helping a user reproduce Anbernic Companion on different hardware. To see a document that's intendend for humans to be read jump to this file To see how I personally did it with AYN Thor and Anbernic RG353v, look at this file It is not a standalone installation guide.

The goal is to help the model understand which parts of the reference implementation are essential, which parts are device-specific, and what must be discovered before adapting the setup.

@vbifonixor
vbifonixor / 1-taco-soup.md
Last active December 21, 2023 15:06
Тако-суп

Тако-суп

Источник: thefoodieaffair.com

Ингредиенты

На 6 литров супа:

  • 1 кг говяжего фарша (не больше 30% жира)
@vbifonixor
vbifonixor / cloudSettings
Created February 13, 2018 10:47
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-02-13T10:46:41.616Z","extensionVersion":"v2.8.7"}
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
typedef struct Node{
int key;
struct Node *left;
struct Node *right;
} Node;
typedef Node *PNode;
PNode Root=NULL;
#include <iostream>
#include <locale.h>
#include <string>
#include "List.h"
#include "Tree.h"
#define MAIN_MENU 0
#define LIST_MENU 1
#define TREE_MENU 2
#include <stdlib.h>
#include <cstdio>
namespace List {
unsigned int LastKey = 0;
struct Node {
unsigned int Key;
int Value;
struct Node *Next, *Prev;
<?php if ( have_posts() ) : query_posts('p=1');
while (have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php the_post_thumbnail(array(100, 100)); ?>
<? endwhile; endif; wp_reset_query(); ?>