I hereby claim:
- I am dugajean on github.
- I am dugajean (https://keybase.io/dugajean) on keybase.
- I have a public key ASBdXqy20hYcZbR-YT4nxr4tlX9UBPA5dOf-yXTysPTahwo
To claim this, I am signing this object:
function setup() { | |
createCanvas(700, 770); | |
background(0); | |
} | |
function draw() { | |
fill(255, 0, 0); | |
rect(100, 0, 600, 600); | |
fill(255, 255, 255); |
I hereby claim:
To claim this, I am signing this object:
import React, { Component } from 'react'; // Bad import, "Component" is a named import within the react library. No more than 1 default export per file | |
import PropTypes from 'prop-types'; | |
import queryAPI from 'queryAPI'; | |
class ShowResultsFromAPI extends Component { // Removed "()" after the Component class extension | |
constructor(props) { // props argument missing here | |
super(props); | |
// Removed "this.container" in this position as it didn't serve any purpose |
<?php | |
namespace tests\unittests\custom; | |
/** | |
* Whenever PHP HTTP stream is used you can | |
* inject a mock stream resource into an object that | |
* expect it. | |
* | |
* Usage example: | |
* | |
* ... |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
[Nest] 10664 - 08/04/2019, 02:34 [ExceptionHandler] No metadata for "Task" was found. +3ms | |
EntityMetadataNotFound: No metadata for "Task" was found. | |
at new EntityMetadataNotFoundError (C:\Users\John\Code\node\task-management\node_modules\typeorm\error\EntityMetadataNotFoundError.js:10:28) | |
at Connection.getMetadata (C:\Users\John\Code\node\task-management\node_modules\typeorm\connection\Connection.js:340:19) | |
at EntityManager.getCustomRepository (C:\Users\John\Code\node\task-management\node_modules\typeorm\entity-manager\EntityManager.js:597:84) |
Source: http://www.syahzul.com/2016/04/06/how-to-install-oci8-on-ubuntu-14-04-and-php-5-6/
Download the Oracle Instant Client and SDK from Oracle website. (Need to login in Oracle page)
http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html
<?php | |
namespace App\Traits; | |
use Illuminate\Http\Request; | |
use Symfony\Component\HttpFoundation\Response as SymfonyResponse; | |
trait ApiRespond | |
{ | |
/** |
// Credits go to Jeffrey Way. | |
(function() { | |
var laravel = { | |
initialize: function() { | |
this.methodLinks = $('a[data-method]'); | |
this.registerEvents(); | |
}, |