Apprenticeship Patterns - Dave Hoover, Adewale Oshineyefinished 06-09-2016Going Pro - Cal Evansfinished 16-12-2016React: Up & Running - Stoyan Stefanovfinished 03-01-2017Object-oriented Reengineering Patterns - Oscar Nierstrasz, Stéphane Ducasse, Serge Demeyerfinished 03-01-2017Common LISP: A Gentle Introduction to Symbolic Computation - David S. Touretzkyfinished 14-09-2017Building Progressive Web Apps - Tal Aterfinished 21-12-2017Domain-driven Design: Tackling Complexity in the Heart of Software - Eric Evansfinished 31-12-2017
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
<?xml version="1.0" encoding="UTF-8"?> | |
<opml version="1.0"> | |
<head> | |
<title>Podcasts</title> | |
</head> | |
<body> | |
<outline title="24cast" | |
text="24cast" | |
type="rss" |
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 | |
namespace SuperGroup\PostcodeRegexImporter; | |
use Closure; | |
use DOMDocument; | |
/** | |
* Processes regular expressions for postcodes from CLDR (Unicode Common | |
* Locale Data Repository) XML file. |
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 | |
/** | |
* Copyright (c) 2013 Jonathan Jefferies | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the | |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
* sell copies of the Software, and to permit persons to whom the Software is |
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 | |
/** | |
* Socket test. | |
* <code>php socket-test.php <server> <port></code> | |
* <code>php socket-test.php example.com 25</code> | |
* @author Jonathan Jefferies | |
*/ | |
try { |
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
<!DOCTYPE html> | |
<html lang="en-GB"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Conway's Game of Life - CoffeeScript</title> | |
<style> | |
body { margin:0; padding:0; background:#EEE; } | |
canvas { background:#FFF; } | |
#stats { position:absolute; top:1%; left:0.5%; border:1px dashed #CCC; padding:1em; background: rgba(255, 255, 255, 0.8); } | |
</style> |
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 | |
try { | |
if(isset($_SERVER['argv'][1])) { | |
$xml_file = $_SERVER['argv'][1]; | |
} | |
else { | |
$xml_file = 'TVGuide.xml'; | |
} | |
NewerOlder