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
/* Copyright (c) 2013 Brad Conte ([email protected], http://myanimelist.net/profile/B-Con) | |
* License: http://opensource.org/licenses/MIT | |
* Summary: You may use, edit, and redistribute this all you want. Just keep the top two lines of this file that credit me and mention the license. | |
* | |
* This is the CSS theme for my MAL list at http://myanimelist.net/animelist/B-Con . | |
* They generate the HTML, I just style it. Their HTML is sometimes bizarre, | |
* sometimes horrible, so there are definitely some hacks. | |
*/ | |
@import url('http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic'); |
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
// Copyright (c) 2015, Brad Conte (http://bradconte.com) | |
// 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 | |
// documentation and/or other materials provided with the distribution. |
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 <sstream> | |
#include <string> | |
#include <vector> | |
#include <cstring> | |
typedef unsigned char BYTE; | |
#define TMP_FILENAME_BASE "TMP_ZERO_FILE_" | |
#define TMP_FILE_GROW_SIZE (1024*1024*16) // = 16 MB | |
#define MAX_EMPTY_FILES 10 |
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 <string.h> | |
#include <crypt.h> | |
void printCryptResult(char *szSalt) | |
{ | |
if (szSalt != NULL) | |
puts(szSalt); | |
else | |
puts("(NULL)"); |
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
"""A Python3 wrapper for the Digital Ocean API. | |
Brad Conte ([email protected]) | |
""" | |
from http.client import HTTPSConnection | |
from http.client import HTTPConnection | |
import ssl | |
import json |
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
/* Copyright (c) 2014 Brad Conte ([email protected], http://myanimelist.net/profile/B-Con) | |
* License: http://opensource.org/licenses/MIT | |
* (Summary: You may use, edit, and redistribute this all you want. Just keep the top two lines of this file that credit me and mention the license.) | |
* | |
* Description: This is the CSS theme for my MAL list at http://myanimelist.net/animelist/B-Con . | |
* They generate the HTML, I just style it. Their HTML is quirky, to say the least parts, so I | |
* have a few hacks in here. | |
* This is an original work. Both the CSS and the set of "status" remote-control style | |
* icons that come with it. See the license information above. | |
* |