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
<?php | |
// Ever needed to test an application that uses Memcache but didn't have it installed locally? | |
// This class saves its information to a local folder named "data" with the raw data passed to it. | |
// Each different key saved creates a new file on your system. | |
// Currently the only methods supported are Memcache::get and Memcache::set. | |
/** | |
* A class that mimicks the Memcache php dependency minimalistically by saving data to local storage. |
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
/* | |
Simple http server (with multiple connections) | |
*/ | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <arpa/inet.h> | |
#include <sys/socket.h> | |
#include <sys/wait.h> |
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
// Incomplete source for a program that computes a root of a polynomial of any size with a guessing-based approach | |
// | |
// File: approximate-root | |
// Compilation: gcc -o main approximate-root.c | |
// Run: ./main | |
#include <stdio.h> | |
#include <stdlib.h> | |
double get_value_of_n_degree_polynomial(double x, double *coeficients, int coeficients_length) { |
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
// | |
// | |
// Works both on windows and linux | |
// | |
// | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <fcntl.h> | |
#include <errno.h> |
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
/* | |
* Description: | |
* C program for windowsto write to a file in 4096-byte blocks to a new file until it reaches 16777216 bytes (16MB) | |
* | |
* Supported OS: | |
* Windows and Linux | |
* | |
* Recomendations: | |
* Disable linux disk cache: | |
* sudo /sbin/sysctl -w vm.drop_caches=3 |
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
<?php | |
$error_was_already_triggered = false; | |
function process_error_handler($errno, $errstr, $errfile, $errline) { | |
global $error_was_already_triggered; | |
$error_is_marked_as_ignored = (error_reporting() == 0); | |
if ($error_is_marked_as_ignored || $error_was_already_triggered) { | |
return; |
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
import math | |
class OrderedList: | |
"""A self organizing list of (key, object) pairs ordering by the key""" | |
def __init__(self): | |
self.data = [] | |
self.tests = 0 | |
def __len__(self): |
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
// Credits: | |
// Windows Capture and Save: Michael Ftsch | |
// Linux Capture and Save: None | |
// | |
#ifdef _WIN32 | |
#include <windows.h> | |
inline int GetFilePointer(HANDLE FileHandle) { | |
return SetFilePointer(FileHandle, 0, 0, FILE_CURRENT); |
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
<?php | |
/* | |
* Output example at the bottom of this gist | |
*/ | |
function get_formatted_debug_backtrace() { | |
$content = debug_backtrace(); | |
$ret = []; | |
foreach($file_paths AS $file_path) { | |
$var = $file_path; | |
$ret[] = "File: ".$var['file'].": ".$var['line']."\n"; |
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 pure function that retrieves the day of the week of a given date. | |
* Does not check if the date exists (i.e. 2019/02/31 yields a weekday, but doesn't exists). | |
* | |
* @param {number} y The year as a number with 4 digits | |
* @param {number} m The month as a number between 0 and 11 (january to december) | |
* @param {number} d The day as a number between 0 and 31 | |
* @return {number} The number of the weekday, between 0 (monday) to 6 (sunday) | |
*/ | |
function weekdayByDate(y, m, d) { |