Skip to content

Instantly share code, notes, and snippets.

@MeteorVE
MeteorVE / Android Easy to Read Notification.md
Last active August 24, 2022 18:42
Android Easy to Read Notification
  1. Although we can send webhook msg to discord channel, sometimes it doesn't show in notification (I don't know why). So I find a notification maker App : notification maker
  2. Install adb tool, we don't need fully toolkit so we can install minimal-version from -> here
  3. Set up "Global Variable" for Windows or your os.
  4. Use Notification Maker App to create a notification.
  5. Run python file.
  • Look like: Cellphone ScreenShot
@MeteorVE
MeteorVE / sendou-draw.js
Last active March 6, 2024 03:34
Painter for coloring sendou.ink build-card
// ==UserScript==
// @name sendou.ink-color-changer
// @namespace http://tampermonkey.net/
// @version 1.0
// @description change sendou.ink card color
// @author MeteorV
// @match https://sendou.ink/u*
// @icon https://www.google.com/s2/favicons?sz=64&domain=sendou.ink
// @require https://openuserjs.org/src/libs/sizzle/GM_config.js
// @grant GM_registerMenuCommand
#include <stdio.h>
int main()
{
int x; // x是一個變數
x = 5;
printf("範例 : \n");
int main()
{
float x;
float y;
x=5.5;
y=3.3;
printf("%.2f + %.2f = %.2f",x,y,x+y);
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
return 0;
}