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 os | |
import subprocess, json, markdown_to_json as mdj | |
import re | |
repo_url = "https://github.com/libsdl-org/sdlwiki.git" | |
exceptions = ["MigrationGuide.md", | |
"README.md", | |
"Roadmap.md", | |
"Category", |
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
In memory of CCMike, one of GeekShed's finest Operators. This is a snippet of one of the most hilarious kicks I've ever endured from Mike. he will forever be missed, but in Paradise, we shall meet up once more. May you forever rest easy, and enjoy the paradise of your dreams. | |
Amen | |
This was taken from 24th Oct 2012, the time is in PDT. Enjoy <3 | |
[18:35] <05mahmood> damn they say nerds have no life this is the life baby hd graphics | |
00[18:35] <03+Blizzardo1> ... | |
[18:35] <03+DG> ... | |
00[18:35] <03+Blizzardo1> Referring to us? Cause We are not Nerds, We are Geeks |
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
#region Header | |
// San Diego Gas And Electric Parser >San Diego Gas And Electric Parser >ISql.cs\n Copyright (C) Adonis Deliannis, 2019\nCreated 26 08, 2019 | |
#endregion | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
namespace San_Diego_Gas_And_Electric_Parser { | |
public interface ISql { | |
/// <summary> |
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
using System.Numerics; | |
namespace FactorialExample; | |
internal static class Program | |
{ | |
private static BigInteger Factorial(int number) { | |
if (number == 0) return 1; |
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 <cmath> | |
#include <cstdio> | |
#include <iostream> | |
#include <string> | |
#include "include/SDL.h" | |
enum | |
{ | |
/** |
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
internal class Person | |
{ | |
public string Name { get; } | |
public int Age { get; } | |
public string EmailAddress { get; } | |
/// <summary> | |
/// Deconstruct Test Class | |
/// </summary> | |
/// <param name="name">Name of a Person</param> |
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
public static T Add<T>(T a, T b) where T : struct, IEquatable<T>, IComparable<T>, IConvertible | |
{ | |
return (dynamic)a + (dynamic)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
Adonis@ARGOROK ~ [18:21] | |
❯ Get-Command | where { $_.Source -eq "System Administration"} | |
CommandType Name Version Source | |
----------- ---- ------- ------ | |
Function AmIAdmin 1.0 System Administration | |
Function AppendCopyright 1.0 System Administration | |
Function ComputeHash 1.0 System Administration | |
Function Connect-iDRACRemoteConsole 1.0 System Administration | |
Function Connect-VCSA 1.0 System Administration |
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.h> | |
#include <dirent.h> | |
#include <string.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
/** | |
* @brief Function to recursively scan a directory and print the file names and the number of hard links | |
* | |
* @param dir_name The directory to scan |
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.h> | |
#include <stdlib.h> | |
#define PAGE_SIZE 511 /* The Page Size (Any higher on the stack and it will cause a segfault) */ | |
#define TLB_ENTRIES 64 /* The amount of Translation Lookaside Buffer Entries */ | |
#define M (PAGE_SIZE * TLB_ENTRIES) /* The distance between the memory addresses accessed by the loop (64KB)*/ | |
#define N (M * TLB_ENTRIES) /* The size of the array */ | |
// M is 256 |
NewerOlder