I hereby claim:
- I am adaburrows on github.
- I am adaburrows (https://keybase.io/adaburrows) on keybase.
- I have a public key ASDE6w2y_MoIs8mhnREyU6Y7KMResn9WwjO2vSEC9OaCtQo
To claim this, I am signing this object:
<?php | |
/** | |
* Fibonacci: | |
*============================================================================ | |
* Class for computing fibonacci numbers using functional programming in PHP | |
* Uses the formula at: http://jburrows.wordpress.com/2009/12/30/fibonacci/ | |
*/ | |
class fibonacci { |
<?php | |
/** | |
* This is by no means complete, but it's a sketch of an idea I had to create a | |
* classless functional style framework for PHP. | |
* | |
* It might turn out to be something cool! | |
*/ | |
// This function allows creating a new function from two functions passed into it | |
function compose(&$f, &$g) { |
<?php | |
/** | |
* Just trying out more functional programming in PHP | |
* This gist provides some basic utility functions for: | |
* + Working with functions | |
* + Working with arrays | |
*/ | |
// This function allows creating a new function from two functions passed into it | |
function compose(&$f, &$g) { |
require 'puppet' | |
require 'puppet/network/http_pool' | |
require 'uri' | |
url = URI.parse('https://localhost:443/reports/upload') | |
headers = { "Content-Type" => "application/x-yaml" } | |
body = <<HELLO | |
--- !ruby/object:Puppet::Transaction::Report | |
metrics: | |
resources: !ruby/object:Puppet::Util::Metric |
I hereby claim:
To claim this, I am signing this object:
Our current cellphone, wireless, and wired infrasture is insecure. And from the mistakes the industries continue to make it isn't showing many signs of getting better. One of the first steps we can take to make the current standards and implementations open. Once it's open it will become easier to see exactly what needs to be changed. Hopefully, it will also make it easier for the industries to adopt new standards by adopting one of multiple open implementations. This approach has shown promise in many countries which don't already have the infrastructure investment the US does.
TOC
Education is one of the fundamental pillars of a technologically advanced, forward thinking societies. Unfortunately, the focus on test scores has taken curriculum and teaching further away from the basic tethers to reality and the reasons for learning more abstract thought. If we are to address the problems laid out in a paper as old as I am, that our failing education system is a threat to national security, we will have to start focusing on education which starts from actual physical principles and moves toward everything considered abstract in a more concrete way. This means investing in educating teachers and ensuring they understand the principles they are teaching and how they are firmly rooted in the practical.
One of the necessary prerequisites for education is stability in one's household. If a student is so caught up in worrying if they will have food, when they'll be able to study in between doing all the household chores, watching their siblings and/or kids, or if they'll be able to make enough
/** | |
* Example code for computing azimuths and distance. | |
* | |
* This code is good for approximating distance, but some of the code is not | |
* gauranteed to converge. There are better algorithms located at: | |
* [Geodesics on an Ellipsoid](https://geographiclib.sourceforge.io/geod.html) | |
* | |
* For more background on why this is actually a more complicated problem, see: | |
* * [Most Changes in Earth's Shape Are Due to Changes in Climate](https://www.nasa.gov/centers/goddard/earthandsun/earthshape.html) | |
* * [THE EGM96 GEOID UNDULATION WITH RESPECT TO THE WGS84 ELLIPSOID](https://cddis.nasa.gov/926/egm96/doc/S11.HTML) |
Questions to think about while reading: