Skip to content

Instantly share code, notes, and snippets.

@koyanloshe
koyanloshe / server.js
Last active April 17, 2020 08:28
Basic server for most filetypes #Javascript
var http = require('http');
var fs = require('fs');
var path = require('path');
http.createServer(function (request, response) {
console.log('request ', request.url);
var filePath = '.' + request.url;
if (filePath == './') {
filePath = './index.html';
@mbijon
mbijon / fft.php
Last active February 17, 2024 03:46
Fast Fourier Transform in PHP
<?php
// !!! Warning: for reference, not debugged
###################################################################
# PHP_Fourier 0.03b
# Original Fortran source by Numerical Recipies
# PHP port by Mathew Binkley (binkleym@nukote.com)
###################################################################