- 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
- Install adb tool, we don't need fully toolkit so we can install minimal-version from -> here
- Set up "Global Variable" for Windows or your os.
- Use Notification Maker App to create a notification.
- Run python file.
This file contains 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 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 |
This file contains 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> | |
int main() | |
{ | |
int x; // x是一個變數 | |
x = 5; | |
printf("範例 : \n"); |
This file contains 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
int main() | |
{ | |
float x; | |
float y; | |
x=5.5; | |
y=3.3; | |
printf("%.2f + %.2f = %.2f",x,y,x+y); |
This file contains 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> | |
int main(void) | |
{ | |
printf("hello, world\n"); | |
return 0; | |
} |