This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Maintainers: | |
orivej: xxHash, xxHash, xxHash, xxHash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nbsefgwbhrs | |
Lieferung 12-13 Uhr möglich?: Nein | |
Infos zur Lieferung: empfang | |
Rücknahme nicht vergessen | |
Stockwerk: ["EG"] | |
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nbsefgwbhrs | |
Lieferung 12-13 Uhr möglich?: Nein | |
Infos zur Lieferung: empfang | |
Rücknahme nicht vergessen | |
Stockwerk: ["EG"] | |
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nbsefgwbhrs | |
Lieferung 12-13 Uhr möglich?: Nein | |
Infos zur Lieferung: empfang | |
Rücknahme nicht vergessen | |
Stockwerk: ["EG"] | |
Zugang zum Gebäude: ["Barrierefrei/Ebenerdig"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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% } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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") |
NewerOlder