Skip to content

Instantly share code, notes, and snippets.

View sudormrfbin's full-sized avatar
🎯
Focusing

Gokul Soumya sudormrfbin

🎯
Focusing
  • Kerala, India
View GitHub Profile
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 ...
https://8080-appwrite-integrationfor-udz81guuyff.ws-us104.gitpod.io/v1
64d492621e43aa781858
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,
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 ?
@sudormrfbin
sudormrfbin / rofi-emoji.sh
Last active July 28, 2019 12:40
Rofi script to select emojis. Downloads emoji file automatically.
#!/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