Skip to content

Instantly share code, notes, and snippets.

View vincent64's full-sized avatar
🍫
status'); DROP TABLE users;--

Vincent P. vincent64

🍫
status'); DROP TABLE users;--
View GitHub Profile
@BurakDizlek
BurakDizlek / CountryFlags.java
Last active July 26, 2024 21:22
Get to flag unicode as String and use it anywhere.
public class CountryFlags {
private static String A = getEmojiByUnicode(0x1F1E6);
private static String B = getEmojiByUnicode(0x1F1E7);
private static String C = getEmojiByUnicode(0x1F1E8);
private static String D = getEmojiByUnicode(0x1F1E9);
private static String E = getEmojiByUnicode(0x1F1EA);
private static String F = getEmojiByUnicode(0x1F1EB);
private static String G = getEmojiByUnicode(0x1F1EC);
private static String H = getEmojiByUnicode(0x1F1ED);
private static String I = getEmojiByUnicode(0x1F1EE);
@DamianSuess
DamianSuess / SpecialFolderLocations.md
Last active September 3, 2024 20:30
C# Environment.SpecialFolder
@gkhays
gkhays / DrawSineWave.html
Last active August 27, 2024 23:59
Oscillating sine wave, including the steps to figuring out how to plot a sine wave
<!DOCTYPE html>
<html>
<head>
<title>Sine Wave</title>
<script type="text/javascript">
function showAxes(ctx,axes) {
var width = ctx.canvas.width;
var height = ctx.canvas.height;
var xMin = 0;