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 serial | |
| import time | |
| # --- Config --- | |
| SERIAL_PORT = "COM4" | |
| BAUD_RATE = 9600 | |
| BUFFER_SIZE = 1024 | |
| def epc_to_gs1(epc_hex: str) -> str: | |
| """ |
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
| // ==UserScript== | |
| // @name I don't care about cosent | |
| // @version 1 | |
| // @grant none | |
| // @include /^https:// | |
| // @downloadURL https://gist.github.com/rekire/9147bde8de5596749b576dcaac46dc26/raw/no-consent.user.js | |
| // ==/UserScript== | |
| function clean() { | |
| document.getElementsByTagName('body')[0].style.overflow=null; |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <libsecret/secret.h> | |
| #define SERVICE_NAME "eu.rekisoft.flutter.autologin.example" | |
| #define AUTOLOGIN_SCHEMA getAutologinSchema() | |
| const SecretSchema* getAutologinSchema (void){ | |
| static const SecretSchema autologinSchema = { |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <libsecret/secret.h> | |
| #define SERVICE_NAME "your.service.name" | |
| #define MY_SCHEMA getMySchema() | |
| const SecretSchema* getMySchema (void){ | |
| static const SecretSchema mySchema = { |
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'; | |
| void main() { | |
| runApp(const MyApp()); | |
| } | |
| class MyApp extends StatefulWidget { | |
| const MyApp({super.key}); | |
| @override |
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
| \{\s+super\.[^)]+\);\s+} |
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
| static int findEnd(String string, int start) { | |
| int index = string.indexOf(">", start); | |
| if (index == -1) { | |
| return string.length -1; | |
| } else { | |
| return index; | |
| } | |
| } | |
| static List<TextSpan> parseHtml(String html) { |
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
| { | |
| "originalRequest": { | |
| "data": { | |
| "isInSandbox": true, | |
| "surface": { | |
| "capabilities": [ // Wear OS (former Android Wear) | |
| { | |
| "name": "actions.capability.SCREEN_OUTPUT" | |
| } | |
| ], |
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
| { | |
| "token": "cheese1", | |
| "image": { | |
| "contentDescription": "desc1", | |
| "sources": [ | |
| { | |
| "url": "http://www.example.com/gouda.jpg" | |
| } | |
| ] | |
| }, |
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
| { | |
| "version": "1.0", | |
| "sessionAttributes": {}, | |
| "response": { | |
| "outputSpeech": { | |
| "type": "PlainText", | |
| "text": "Hallo", | |
| "ssml": "<speak>Hallo</speak>" | |
| }, | |
| "reprompt": { |
NewerOlder