Skip to content

Instantly share code, notes, and snippets.

View AyazAhmed5's full-sized avatar

Ayaz Ahmed AyazAhmed5

View GitHub Profile
Maintainers:
orivej: xxHash, xxHash, xxHash, xxHash
/*
control app https://x.thunkable.com/copy/e8f633a8a9a3e979025112e18446d3b4
Video: https://www.youtube.com/watch?v=oCMOYS71NIU
Based on Neil Kolban example for IDF: https://github.com/nkolban/esp32-snippets/blob/master/cpp_utils/tests/BLE%20Tests/SampleNotify.cpp
Ported to Arduino ESP32 by Evandro Copercini
Create a BLE server that, once we receive a connection, will send periodic notifications.
The service advertises itself as: 6E400001-B5A3-F393-E0A9-E50E24DCCA9E
Has a characteristic of: 6E400002-B5A3-F393-E0A9-E50E24DCCA9E - used for receiving data with "WRITE"
Has a characteristic of: 6E400003-B5A3-F393-E0A9-E50E24DCCA9E - used to send data with "NOTIFY"
@AyazAhmed5
AyazAhmed5 / 80003384.txt
Created December 30, 2024 11:14 — forked from faigle-user/80003384.txt
80003384
nbsefgwbhrs
Lieferung 12-13 Uhr möglich?: Nein
Infos zur Lieferung: empfang
Rücknahme nicht vergessen
Stockwerk: ["EG"]
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"]
Let's denote the actual number of people as \( x \).
According to the problem, Courtney overstated the number by 20%. Therefore, Courtney's stated number of people is 120% of the actual number \( x \).
Courtney’s number of people can be written as:
\[
1.2x
\]
We are given that Peter said there were 48 people, and Kelly said that Courtney’s number was overstated by 20%. This implies that Peter's number (48) corresponds to Courtney's overstated number:
@AyazAhmed5
AyazAhmed5 / 80003384.txt
Created December 29, 2024 21:31 — forked from faigle-user/80003384.txt
80003384
nbsefgwbhrs
Lieferung 12-13 Uhr möglich?: Nein
Infos zur Lieferung: empfang
Rücknahme nicht vergessen
Stockwerk: ["EG"]
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"]
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'dart:math';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
import chromadb
import json
from ollama import Client
from typing import List, Dict, Any
import re
from dataclasses import dataclass
import numpy as np
from concurrent.futures import ThreadPoolExecutor
@dataclass
@AyazAhmed5
AyazAhmed5 / 80003384.txt
Created December 28, 2024 19:50 — forked from faigle-user/80003384.txt
80003384
nbsefgwbhrs
Lieferung 12-13 Uhr möglich?: Nein
Infos zur Lieferung: empfang
Rücknahme nicht vergessen
Stockwerk: ["EG"]
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"]
.seletor-css {
    fundo: gradiente linear ( 44 graus , #e7e7e7, #1264ff, #a3c91e, #000000);
    tamanho-de-fundo:800% 800%;
    -webkit-animation: AnimaçãoNome 35s facilidade infinita;
    -moz-animation: Nome da animação facilidade 35s
    -o-animation: Nome da animação facilidade 35s
    animação: Nome da animação facilidade 35s infinita;
}
@-webkit-keyframes Nome da animação {
    0%{posição-de-fundo: 0% 30% }
@AyazAhmed5
AyazAhmed5 / figure_friday_2024_week_52.py
Created December 28, 2024 19:08 — forked from AnnMarieW/figure_friday_2024_week_52.py
Plotly's Figure Friday Challenge 20024 Week 52: Public SaaS Company explorer
# Plotly's Figure Friday challenge. See more info here: https://community.plotly.com/t/figure-friday-2024-week-52/89593
import pandas as pd
from dash import Dash, dcc, Input, Output, State, callback, _dash_renderer, ctx
import dash_mantine_components as dmc
import dash_ag_grid as dag
import plotly.express as px
_dash_renderer._set_react_version("18.2.0")
dmc.add_figure_templates(default="mantine_light")