- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
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 | |
$pdo = DB::getPdo(); | |
$tables = $pdo->query("SHOW FULL TABLES;")->fetchAll(); | |
$sql = 'SET FOREIGN_KEY_CHECKS=0;'; | |
foreach ($tables as $tableInfo) { | |
if('BASE TABLE' !== $tableInfo[1]) continue; |
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
--- | |
title: "Decision boundaries" | |
author: "Kornel Kiełczewski" | |
date: "25 March 2016" | |
output: html_document | |
--- | |
Decision boundaries for a somewhat biased test case :) | |
```{r, echo=FALSE, message=FALSE, warning=FALSE} |