View timer.c
This file contains 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
/* ----------------------------------------------------------------------- */ | |
/* | |
Easy embeddable cross-platform high resolution timer function. For each | |
platform we select the high resolution timer. You can call the 'ns()' | |
function in your file after embedding this. | |
https://www.roxlu.com/2014/047/high-resolution-timer-function-in-c-c-- | |
*/ | |
#include <stdint.h> | |
#if defined(__linux) |
View VarInt.cs
This file contains 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
using System.Runtime.CompilerServices; | |
namespace MyNamespace; | |
/// <summary> | |
/// Provides static functions for encoding/decoding variable-length integers represented as a <see cref="int"/>. | |
/// </summary> | |
public class VarInt | |
{ | |
private const int SEGMENT_BITS = 0x7F; |
View Vaccine Exemption Letter
This file contains 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
Dear Boss, | |
Compelling any employee to take any current Covid-19 vaccine violates federal | |
and state law. | |
First, federal law prohibits any mandate of the Covid-19 vaccines as unlicensed, | |
emergency-use-authorization-only vaccines. Subsection bbb-3(e)(1)(A)(ii)(III) of section 360 of Title 21 of the United States Code, otherwise known as | |
the Emergency Use Authorization section of the Federal Food, Drug, and Cosmetic | |
Act, demands that everyone give employees the “option to accept or refuse administration” | |
of the Covid-19 vaccine. This right to refuse emergency, experimental vaccines, such as |
View EndianSwapExtensions.cs
This file contains 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
using System; | |
using System.Runtime.CompilerServices; | |
using JetBrains.Annotations; | |
namespace ChangeThisNamespace | |
{ | |
/// <summary> | |
/// Contains extension methods dealing with endianness of numeric types. | |
/// </summary> | |
[PublicAPI] |
View Adler32.cs
This file contains 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
using System; | |
using System.Runtime.CompilerServices; | |
namespace ZLib | |
{ | |
/// <summary> | |
/// An Adler-32 checksum implementation for ZLib streams. | |
/// </summary> | |
/// <seealso href=""/> | |
public sealed class Adler32 |
View url_match.c
This file contains 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.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <regex.h> | |
printf("Enter the website URL:\n"); | |
fgets(str, 100, stdin); | |
if (!strcmp(str, "\n")) { |
View snake_case.rb
This file contains 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
def snake_case | |
return downcase if match(/\A[A-Z]+\z/) | |
gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2'). | |
gsub(/([a-z])([A-Z])/, '\1_\2'). | |
downcase | |
end | |
"FooBar".snake_case #=> "foo_bar" | |
"HeadlineCNNNews".snake_case #=> "headline_cnn_fake_news" | |
"CNN".snake_case #=> "cnn" |
View GL.Delegates.cs
This file contains 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
using System; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
// ReSharper disable InconsistentNaming | |
// ReSharper disable IdentifierTypo | |
namespace OpenGL | |
{ | |
[UnmanagedFunctionPointer(CallingConvention.Cdecl), SuppressUnmanagedCodeSecurity] |
View MeshLoader.cs
This file contains 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
/* | |
* MIT License | |
* | |
* Copyright (c) 2020 Eric Freed | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
View SphereMesh.cs
This file contains 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
/* | |
* MIT License | |
* | |
* Copyright (c) 2020 Eric Freed | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is |
NewerOlder