Skip to content

Instantly share code, notes, and snippets.

View bethropolis's full-sized avatar
😊

bethropolis bethropolis

😊
  • Kenya
  • 11:11 (UTC +03:00)
View GitHub Profile
// ==MiruExtension==
// @name MangaDex
// @version v0.0.4
// @author bethro
// @lang all
// @license MIT
// @icon https://mangadex.org/img/avatar.png
// @package mangadex.org
// @type manga
// @webSite https://api.mangadex.org
@bethropolis
bethropolis / tiktaktok.cpp
Last active December 10, 2024 04:55
tik tak toe game
/*
Tic-Tac-Toe Game
This file contains the implementation of a simple Tic-Tac-Toe game.
The game is played between a human player (Player X) and a bot (Player O).
The main functions include:
- displayBoard: To display the current state of the game board.
- checkWin: To check if a player has won the game.
- checkDraw: To check if the game is a draw.
@bethropolis
bethropolis / array.js
Last active December 7, 2024 20:28
js arrays example
let arr = [1,2,3, 4,5,6,7,8]
let fruits = ["Apple", "Orange", "Pear"];
// 0 1 2
// loop
let doubled_result = arr.map(function(item){
return item * 2;
})
local iup = require("iup")
-- Helper functions
local function updateDisplay(value)
local display = iup.GetHandle("display")
local currentValue = display.value
if currentValue == "0" or currentValue == "Error" then
display.value = value
else
:root {
--primary: #6272a4; /* Dracula Purple */
--on-primary: #f8f8f2; /* Light text */
--primary-container: #44475a; /* Dark background */
--on-primary-container: #f8f8f2; /* Light text */
--secondary: #ff79c6; /* Pink */
--on-secondary: #f8f8f2; /* Light text */
--secondary-container: #bd93f9; /* Purple */
--on-secondary-container: #f8f8f2; /* Light text */
--tertiary: #f1fa8c; /* Yellow */
:root {
--primary: #8bd5ca; /* teal */
--on-primary: #000000;
--primary-container: #a6da95; /* green */
--on-primary-container: #8b4513;
--secondary: #f5bde6; /* pink */
--on-secondary: #000000;
--secondary-container: #f0c6c6; /* flamingo */
--on-secondary-container: #a0522d;
--tertiary: #eed49f; /* yellow */
@bethropolis
bethropolis / useful-forks.user.js
Created May 29, 2024 00:16
A userscript which adds a button to GitHub repositories to see useful forks of the repo.
// ==UserScript==
// @name GitHub Useful Forks
// @namespace Violentmonkey Scripts
// @version 1.0
// @author bethro
// @icon https://useful-forks.github.io/assets/useful-forks-logo.png
// @description Adds a button to GitHub repositories to see useful forks of the repo.
// @homepageURL https://github.com/bethropolis/useful-forks
// @supportURL https://github.com/bethropolis/useful-forks/issues
// @match https://github.com/*/*
[
{
"name": "Videos",
"path": "/home/username/Videos/",
"type": "directory",
"children": [
{
"name": "Movies",
"path": "/home/username/Videos/Movies",
"type": "directory",
[
{
"id": 1,
"name": "Item 1",
"previewUrl": "https://fastly.picsum.photos/id/123/200/300.jpg?hmac=uMA4z26tAYQnhW8_XlH0SoULB5z9s8tan-WCDkzbdMs"
},
{
"id": 2,
"name": "Item 2",
"previewUrl": "https://fastly.picsum.photos/id/123/200/300.jpg?hmac=uMA4z26tAYQnhW8_XlH0SoULB5z9s8tan-WCDkzbdMs"
@bethropolis
bethropolis / test.js
Last active March 7, 2024 06:24
judul ishura
// HTML snippet
const htmlSnippet = `
<div class="infozingle">
<p>
<span>
<b>Judul</b>: Ishura
</span>
</p>
</div>
`;