These words in this order just make no sense to me. Computers themselves never would be under any kind of license. I'm not sure if Mr Doyle is implying that everything that is produced on that computer would be covered by an open source license -- it's one of the interpretations of this gibberish I suppose. I have an open source project open in another window as I'm writing this piece, but that doesn't mean I need to release this scathing quote under an MIT license and invite contributions (although I might).
This file contains hidden or 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 App\Action; | |
use Psr\Http\Message\ResponseInterface; | |
use Psr\Http\Message\ServerRequestInterface; | |
use Zend\Diactoros\Response\JsonResponse; | |
class PingAction | |
{ |
This file contains hidden or 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 App; | |
use App\Action\HomePageAction; | |
use App\Action\HomePageFactory; | |
use App\Action\PingAction; | |
use Zend\Expressive\Router\FastRouteRouter; | |
use Zend\Expressive\Router\RouterInterface; |
This file contains hidden or 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 ZendBench\ServiceManager; | |
use ProxyManager\Factory\LazyLoadingValueHolderFactory; | |
use Zend\ServiceManager\Proxy\LazyServiceFactory; | |
use ZendTest\ServiceManager\TestAsset\ComplexDependencyObject; | |
use ZendTest\ServiceManager\TestAsset\FailingFactory; | |
use ZendTest\ServiceManager\TestAsset\InvokableObject; | |
use ZendTest\ServiceManager\TestAsset\SimpleDependencyObject; |
This file contains hidden or 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 declare(strict_types=1); | |
require('vendor/autoload.php'); | |
$client = new Google_Client(); | |
$client->setApplicationName('My Application'); | |
$client->setScopes(Google_Service_Sheets::SPREADSHEETS); | |
$client->setAccessType('offline'); | |
// renamed credentials file you downloaded when you created your credentials from Google Admin |
This file contains hidden or 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
_artisan() | |
{ | |
COMP_WORDBREAKS=${COMP_WORDBREAKS//:} | |
COMMANDS=`php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"` | |
COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`) | |
return 0 | |
} | |
complete -F _artisan art | |
complete -F _artisan artisan |
This file contains hidden or 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
<div class="flex items-start w-full"> | |
<?php /** @var App\Person $person */ ?> | |
@foreach($people as $person) | |
<div class="flex flex-col w-64 m-2 bg-white border border-2 rounded shadow-md"> | |
<div class="font-semibold bg-gray-200 text-gray-700 py-3 px-6 mb-0"> | |
{{ $person->name }} | |
</div> | |
<div class="w-full p-6"> | |
<p class="text-gray-700"> | |
{{ $person->timezone }} |
This file contains hidden or 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
--- incoming function --- | |
const got = require('got'); | |
exports.handler = function(context, event, callback) { | |
let twiml = new Twilio.twiml.MessagingResponse(); | |
const message = event.Body; | |
const url = 'https://geeh.ngrok.io?move=' + message; |
OlderNewer