Skip to content
View ruthlessfish's full-sized avatar

Block or report ruthlessfish

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. codeigniter-spl-autoloader codeigniter-spl-autoloader Public

    Autoload base classes in CodeIgniter

    PHP 4

  2. haversine formula for MySQL in PHP haversine formula for MySQL in PHP
    1
    <?php
    2
    
    
    3
    function haversine($lat1, $long1, $lat2, $long2)
    4
    {
    5
    	return "(3959 * acos(cos(radians($lat1)) * cos(radians($lat2)) * cos(radians($long2) - radians($long1)) + sin(radians($lat1)) * sin(radians($lat2))))";
  3. Game of 15 Game of 15
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
    <head>
    4
    <title>The Game of 15!</title>
    5
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  4. Custom hooks with arguments Custom hooks with arguments
    1
    <?php defined('BASEPATH') OR exit('No direct script access allowed');
    2
    /**
    3
     * MY_Hooks Class
    4
     *
    5
     * Extends Hooks by allowing you to pass parameters on the fly
  5. password-cracker password-cracker Public

    Forked from freeCodeCamp/boilerplate-SHA-1-password-cracker

    freeCodeCamp project: SHA-1 password cracker

    Python

  6. port-scanner port-scanner Public

    Forked from freeCodeCamp/boilerplate-port-scanner

    Port scanner built in Python for freeCodeCamp Information Security project

    Python