Skip to content

Instantly share code, notes, and snippets.

@Ismael-VC
Ismael-VC / hack.md
Created October 4, 2017 15:28
Advertise your Discord server...everywhere!

Free people for your Discord server!

Analytics (1005 views in an August week)

Server owners hate me! But today you'll see this one crazy and simple trick to increase your Discord server's size IMMEDIATELY! Wanna reach the same size as the Café does? Advertise as much as you can!

Found more? Ask austinhuang#1076 for edits. No server owners that hate me kthx By the way...

  1. IT IS NOT SUGGESTED TO ADVERTISE IN THE COMMENT BOX IN THIS GIST or register a GitHub account just for commenting here. IF YOU HAVE TO DO SO, PLEASE ADVERTISE RESPONSIBLY. For a long time, I have been tolerant enough and allow you to advertise here. Please don't challenge my limits. Don't spam. Don't stick your damn finger at Ctrl+V. 1 comment per server. No bumps. Or I'll let a script do the job for me (That is, delete every single comment, past and future).
  2. To add your listing server into this list your server must meet
@Ismael-VC
Ismael-VC / lbForth.c
Created March 18, 2024 15:35 — forked from lbruder/lbForth.c
A minimal Forth compiler in ANSI C
/*******************************************************************************
*
* A minimal Forth compiler in C
* By Leif Bruder <leifbruder@gmail.com> http://defineanswer42.wordpress.com
* Release 2014-04-04
*
* Based on Richard W.M. Jones' excellent Jonesforth sources/tutorial
*
* PUBLIC DOMAIN
*
( usage: uxncli terminal-cli.rom )
|10 @Console &vector $2 &read $1 $5 &write $1
|0a @enter
|100
@on-reset ( -> )
;on-console .Console/vector DEO2
%d { #010e DEO }
|20 @SP |0a @CR |06 @morse-align
|100
;ascii-str print-ascii>morse
BRK
@Ismael-VC
Ismael-VC / ascii-to-morse.tal
Created March 9, 2024 02:13
ASCII to Morse code in Uxntal
%d { #010e DEO }
|20 @SP |0a @CR |06 @morse-align
|100
;ascii-str print-ascii>morse
BRK
@Ismael-VC
Ismael-VC / gulpfile.js
Created March 8, 2024 05:40
Gulp watcher for Uxntal development.
const { exec } = require('child_process');
const gulp = require('gulp');
async function build() {
exec(
'clear && uxnasm test.tal test.rom && uxncli test.rom',
(error, stdout, stderr) => {
if (!(stdout.length === 0)) {
console.log(`${stdout}`);
@Ismael-VC
Ismael-VC / settings.json
Created March 4, 2024 03:06
Micro editor settings.
{
"colorcolumn": 80,
"diffgutter": true,
"hlsearch": true,
"indentchar": "⋅",
"rmtrailingws": true,
"scrollbar": true,
"softwrap": true,
"tabmovement": true,
"tabsize": 2,
@Ismael-VC
Ismael-VC / pong.tal
Created January 21, 2024 17:26
Pong Game in Uxntal.
( pong.tal )
( devices )
|00 @System [
&vector $2
&pad $6
&r $2
&g $2
&b $2
@Ismael-VC
Ismael-VC / Cajero.java
Created July 8, 2014 12:58
Cajero en Java con Swing.
import javax.swing.JOptionPane;
public class Cajero {
public double saldo;
private static String contra_usuario;
private static String contrasena = "1337";
public static String menu = "¿Que deseas realizar?\n\n" +
@Ismael-VC
Ismael-VC / Probabilidad.ipynb
Last active August 23, 2023 20:42
Apuntes de Probabilidad y Estadistica
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.