This file contains hidden or 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 <assert.h> | |
| #include <stdarg.h> | |
| #include <stdbool.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| struct abc { | |
| char a; | |
| int b; |
This file contains hidden or 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
| {} |
This file contains hidden or 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 Odoo notifier | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*/* | |
| // @grant GM_notification | |
| // @version 1.0 | |
| // @author __keyb__ | |
| // @description 7/29/2024, 12:24:47 AM | |
| // ==/UserScript== |
This file contains hidden or 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
| #!/bin/bash | |
| set -e | |
| git clone https://github.com/cute-engineering/cutekit.git /tmp/ck | |
| python3 -m venv ~/.config/cutekit | |
| source ~/.config/cutekit/bin/activate | |
| pip3 install /tmp/ck/ | |
| if [ ! -d ~/.local/bin ]; then |
This file contains hidden or 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"; | |
| include "stdlib"; | |
| enum Maybe[T] | |
| { | |
| Nothing, | |
| Just(T val), | |
| Maybe[U] operator>>=(Fn(T) -> Maybe[U]) | |
| { |
This file contains hidden or 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 <stdlib.h> | |
| #include <assert.h> | |
| #define CLASS(class$_name, class$_fields, class$_constr_args, class$_constr_body) \ | |
| typedef struct class$_name \ | |
| class$_fields \ | |
| class$_name; \ | |
| class$_name *class$_name ## _init class$_constr_args \ | |
| { \ | |
| class$_name *self = malloc(sizeof(class$_name)); \ |
This file contains hidden or 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
| #!/bin/bash | |
| link="https://dl.cpcdos.net/PUBLIC/cpcdososx/binary/OS2.1__BETA1.5/[PUBLIC]%20Cpcdos%20OS2.1%20Beta%201.5%20[15-AUG-2021].zip" | |
| if which doas &>/dev/null; then | |
| sudo=$(which doas) | |
| elif which sudo &>/dev/null; then | |
| sudo=$(which sudo) | |
| else | |
| echo [-] Please install sudo or doas |
This file contains hidden or 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
| Bienvenue, sur le discord DEVSE! :blobnom: | |
| Notre engagement | |
| En tant que membres, contributeurs et dirigeants, nous nous engageons à faire de la participation à notre communauté une expérience sans harcèlement pour tous, quels que soient l'âge, la taille, le handicap visible ou invisible, l'origine ethnique, les caractéristiques sexuelles, l'identité et l'expression du genre, le niveau d'expérience, l'éducation, le statut socio-économique, la nationalité, l'apparence personnelle, les origines, la religion ou l'identité et l'orientation sexuelles. | |
| Nous nous engageons à agir et à interagir de manière à contribuer à une communauté ouverte, accueillante, diverse, inclusive et saine. | |
| @everyone dans le but de fournir un environnement de discussion sain et inclusif, nous nous engageons a respecter le code de conduit suivant: |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| result = "" | |
| todumb = input("Le texte: ") | |
| for index, letter in enumerate(todumb): | |
| if index % 2 == 1: | |
| result += letter.upper() | |
| else: |
This file contains hidden or 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
| @echo off | |
| REM Modifiez ici si le nom de la machine virtuelle est différente | |
| SET /P VMname=Nom de la VM: | |
| REM Si vous voulez jouer avec les valeurs c'est ici ! | |
| SET SYSven=Dell | |
| SET SYSprod=Optiplex | |
| SET vBox="%VBOX_MSI_INSTALL_PATH%VBoxManage.exe" | |
| taskkill /F /IM VirtualBox.exe 2> nul | |
| taskkill /F /IM VBoxSVC.exe 2> nul |
NewerOlder