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
2023-09-13 16:15:45 0 [Note] InnoDB: Compressed tables use zlib 1.2.11 | |
2023-09-13 16:15:45 0 [Note] InnoDB: Number of transaction pools: 1 | |
2023-09-13 16:15:45 0 [Note] InnoDB: Using crc32 + pclmulqdq instructions | |
2023-09-13 16:15:45 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts) | |
2023-09-13 16:15:45 0 [Note] InnoDB: Using Linux native AIO | |
2023-09-13 16:15:45 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728 | |
2023-09-13 16:15:45 0 [Note] InnoDB: Completed initialization of buffer pool | |
2023-09-13 16:15:45 0 [Note] InnoDB: 128 rollback segments are active. | |
2023-09-13 16:15:45 0 [Note] InnoDB: Creating shared tablespace for temporary tables | |
2023-09-13 16:15:45 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ... |
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
https://8080-appwrite-integrationfor-udz81guuyff.ws-us104.gitpod.io/v1 | |
64d492621e43aa781858 |
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(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'DropdownMenu Width Bug Demo', | |
debugShowCheckedModeBanner: false, |
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
data segment | |
opr1 db 0ah, 0dh, "Enter first number: $" | |
opr2 db 0ah, 0dh, "Enter second number: $" | |
result db 0ah, 0dh, "Result is: $" | |
num dw ? | |
num1 dw ? | |
num2 dw ? | |
num3 dw ? | |
sum dw ? |
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
#!/bin/sh | |
# Modified from https://github.com/nkoehring/rofiemoji | |
URL="https://raw.githubusercontent.com/Mange/rofi-emoji/master/all_emojis.txt" | |
DIR="$HOME/.local/share" | |
FILE="$DIR/emoji.txt" | |
if [ ! -r $FILE ] | |
then |