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
<!DOCTYPE html> | |
<html> | |
<head> | |
<input type="submit" | |
name="x" | |
value="x"> | |
</head> | |
</html> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>MyFirstGist</title> | |
<body> | |
<h1> | |
this is my first gist on github | |
</h1> | |
<marquee behaviour="scroll" direction="down">my first gist.<h1>some text...</h1></marquee> | |
</body> |
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 makefile is made to run on Windows, | |
# you may need to modify it before running on Linux. | |
ifeq ($(OS),Windows_NT) | |
RM = del /Q /F | |
CP = copy /Y | |
ifdef ComSpec | |
SHELL := $(ComSpec) | |
endif | |
ifdef COMSPEC |
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
# Copyright (c) 2022, yeppiidev | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# * Redistributions of source code must retain the above copyright notice, | |
# this list of conditions and the following disclaimer. | |
# * Redistributions in binary form must reproduce the above copyright | |
# notice, this list of conditions and the following disclaimer in the |
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
import processing.sound.*; | |
final int BUBBLE_SORT = 0; | |
final int BOGO_SORT = 1; | |
final int HIGHLIGHT_AREA = 2; | |
int[] nums; | |
int activeElem; | |
int ci, cj = 1; |