Skip to content

Instantly share code, notes, and snippets.

@Piwi-JC
Piwi-JC / bc2500-ble-idf.yaml
Created February 11, 2025 19:58 — forked from noone2k/bc2500-ble-idf.yaml
bc2500 info/control with esphome
bin dann auch erstmal wech ...
gibt hier wieder einen, der ein ungutes gefühl verbreitet und das muss ich mir nicht antun.
wenn ich auf hassprediger stehen würde, würde ich bsw, afd oder den IS wählen 😁
abgesehen davon, ist das hier sogut wie abgeschlossen und ich bin nicht hierauf angewiesen 😁
vllt später nochmal öffnen, falls ich doch mal wieder nen antreib/grund finde ... 😁
abschließend verweise ich noch auf folgendes:
@lvanasse
lvanasse / ci-other.log
Created February 11, 2025 19:58
[other] CI Log for nuttx @ 381d3fe64f4da2b09f12bd8f0cd2d1f07d86b3d3 / nuttx-apps @ fb0c1e10ded2a6fb9f066b9893662cbcc86e4646
Script started on 2025-02-11 19:46:01+00:00 [COMMAND="/home/ludovic/nuttx-release/run-job.sh other" <not executed on terminal>]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=other
+ neofetch
.-/+oossssoo+/-.
`:+ssssssssssssssssss+:`
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssssdMMMNysssso.
/ssssssssssshdmmNNmmyNMMMMhssssss/
@HPCCSmoketest
HPCCSmoketest / README.md
Created February 11, 2025 19:58
PR-19507

PR-19507 (Sha: 931d2109)

OS: Linux ip-10-22-254-176.ec2.internal (Linux 4.18.0-513.24.1.el8_9.x86_64) Host: ip-10-22-254-176.ec2.internal GCC: gcc (GCC) 12.2.1 20221121 (Red Hat 12.2.1-7) - Git: 2.39.3CMake: 3.27.1curl: 7.61.1node.js: v22.14.0npm: 10.9.2

Errors:

  • test
  • thor
@hpoit
hpoit / Krapivin_Hash_Table_Verification.py
Created February 11, 2025 19:58
Krapivin Hash Table Verification
# Ensure required packages are installed
!pip install numpy matplotlib pandas jupyter
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
# Simulation Parameters
n_trials = 2000 # Number of search operations per load factor
table_size = 10000 # Hash table capacity
@Vivaldi101
Vivaldi101 / gist:cf676e8abb7515fecf57f6467336c8c6
Last active February 11, 2025 19:59
Toggling vulkan and swiftui
// VulkanViewController.mm (Objective-C++)
#import <UIKit/UIKit.h>
#import "SwiftUIBridge.h"
@interface VulkanViewController : UIViewController
@end
@implementation VulkanViewController {
BOOL isRendering;
}
@chandanprogrammer
chandanprogrammer / create-model.js
Created February 11, 2025 19:57
create a user model in mongodb
/* Mongoose Model Schema Template */
import mongoose, {Schema} from "mongoose";
const userSchema = new Schema({})
export const User = mongoose.model("User", userSchema)
@dsfsgdffgbfg
dsfsgdffgbfg / &YouTube Video Downloader Pro
Created February 11, 2025 19:57
^$YouTube Video Downloader Pro 6.11.8 на русском + crack
&^YouTube Video Downloader Pro 6.11.8 на русском + crack
window.addEventListener("load", solve);
function solve() {
let activityType = document.getElementById("type");
let intensityType = document.getElementById("intensity");
let caloriesBurner = document.getElementById("calories");
let durationMin = document.getElementById("duration");
let dateElement = document.getElementById("date");
let addActitityBtn = document.getElementById("add-activity");
let ulListElement = document.getElementById("preview-activity");
@Schoolads
Schoolads / gist:80101c036381c4fd6aa3b845e6a9a99c
Created February 11, 2025 19:57
College of Nursing Sciences, Kafanchan, Kaduna State. 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-ba…
College of Nursing Sciences, Kafanchan, Kaduna State. 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-basic nursing form and internship form are still on sale for more information on purchase of the form and admission assistance call Admin Officer{O8125777035}
@dcreager
dcreager / eager-scopes.py
Created February 11, 2025 19:56
Nested eager/lazy scopes in Python
x = [1]
a = [a for a in x]
print("eager", a) # eager [1]
x = [2]
print("eager", a) # eager [1]
x = [1]
def f():
return list(x)
print("lazy", f()) # lazy [1]