Skip to content

Instantly share code, notes, and snippets.

View lostmsu's full-sized avatar
💭
–2147483648x developer

Victor lostmsu

💭
–2147483648x developer
View GitHub Profile
@lostmsu
lostmsu / choco.log
Created January 27, 2025 23:22
24H2 Sandbox can't choco install vcredist140
2025-01-27 15:20:08,714 5364 [DEBUG] - XmlConfiguration is now operational
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,793 5364 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,800 5364 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-01-27 15:20:08,800 5364 [DEBUG] - Adding new type 'RubyG
[Obsolete("workaround for https://github.com/microsoft/vs-streamjsonrpc/issues/1084")]
public sealed class StreamCloseNoExceptionWorkaround: Stream {
readonly Stream wrapped;
readonly ILogger log;
public StreamCloseNoExceptionWorkaround(Stream wrapped, ILogger log) {
this.wrapped = wrapped ?? throw new ArgumentNullException(nameof(wrapped));
this.log = log ?? throw new ArgumentNullException(nameof(log));
}
@lostmsu
lostmsu / FreeDesktop.Portal.Response.cs
Created December 11, 2024 22:22
Using Tmds.DBus with org.freedesktop.portal
using Tmds.DBus.Protocol;
/* USE:
var response = await connection.Call(
() => screenCast.CreateSessionAsync(
new Dictionary<string, VariantValue> {
{ "handle_token", "s0" },
{ "session_handle_token", "s1" },
}), log).ConfigureAwait(false);
*/
#r "nuget: Microsoft.AspNetCore.App, 2.2.8"
using System.Net.Http;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
@lostmsu
lostmsu / Instructions.txt
Created August 23, 2024 19:01
LLAMA 3 70B instructions for cleaning RSS feed
Your job is to filter RSS feed. You will get a JSON entry in TT-RSS format
for an article. You should decide whether to keep it or not.
Before deciding, do as much reasoning aloud as needed first.
Then add a final line which should be either 'KEEP' or 'REMOVE NOW'. These words
should be the only thing on that line - no other characters or whitespace allowed.
Please ensure there is a new line character before the final line.
Remove only the following articles:
@lostmsu
lostmsu / Self-Reflection.http
Created August 4, 2024 04:23
An improvised mirror test for LLMs, run on LLAMA 3.1 70B on GROQ
POST https://api.groq.com/openai/v1/chat/completions
X-Broken: 1
Content-Type: application/json
Authorization: Bearer XXXXXX
{
"model": "llama-3.1-70b-versatile",
"messages": [
{
"role": "system",
@lostmsu
lostmsu / on-draft-letter.txt
Created October 26, 2023 17:00
Мне пришла повестка из военкомата
Здесь не будет картинок. Они ни к чему.
Не так давно эта война застала меня вполне себе состоявшимся программистом для embedded-систем. Когда она началась я рефлексировал по поводу того что, устройства к разработке которых я приложил руку могут быть использованы в войне. Я наверное не достаточно переживал и те устройства так и не были запущены в серию.Теперь как мне кажется эта война коснулась меня. Я ни о чем не жалею, но я не готов никого убивать. Сейчас я принял решение скрываться внутри страны. А имеет ли смысл - пусть каждый решает для себя. Я свое решение принял.
Когда я ехал сегодня на работу я получил следующее сообщение от коллег с картинокой на КДПВ
Мне не хотелось подставлять компанию в которой я проработал несколько лет под гигантские штрафы, потому я подписал повестку, признавая что получил и уволился текущим днем.
ИМХО. Да это действительно имеет смысл, мне ведь за 40. С другой стороны, Мне за 40 уже три года как. Что-то случилось и меня нужно переквалифицировать? Учитывая что ВУС мой санинстр
@lostmsu
lostmsu / GLDX-Sandbox.cs
Created October 14, 2023 17:00
reproduces wglDXOpenDeviceNV ERROR_OPEN_FAILED inside Sandbox with NVidia GPU
using System.ComponentModel;
using System.Runtime.InteropServices;
using SharpDX.Direct3D11;
using Silk.NET.Core.Contexts;
using Silk.NET.GLFW;
using Silk.NET.OpenGL;
using Silk.NET.WGL;
using Silk.NET.WGL.Extensions.NV;
var swapChainDescription = new SwapChainDescription
{
BufferCount = 2,
Flags = SwapChainFlags.None,
IsWindowed = true,
ModeDescription = new ModeDescription(form.ClientSize.Width, form.ClientSize.Height, refreshRate: new Rational(60, 1), Format.B8G8R8A8_UNorm),
OutputHandle = form.Handle,
SampleDescription = new SampleDescription(count: 1, quality: 0),
SwapEffect = SwapEffect.Discard,
Usage = Usage.RenderTargetOutput
@lostmsu
lostmsu / PseudoLinear.py
Created November 7, 2022 18:22
PseudoLinear performance is nearly identical to Linear despite ~160x less computation to be performed
class PseudoLinear(nn.Module):
def __init__(self, features, device=None):
super().__init__()
self.weight = nn.Parameter(torch.randn(features, device=device))
self.bias = nn.Parameter(torch.randn(features, device=device))
def forward(self, x):
return x * self.weight + self.bias + x