Skip to content

Instantly share code, notes, and snippets.

@bradtraversy
bradtraversy / webdev_online_resources.md
Last active May 3, 2024 12:56
Online Resources For Web Developers (No Downloading)
@krisanalfa
krisanalfa / DropTable.php
Created October 10, 2016 13:28
Laravel Tinker Drop All Table
<?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;
@Kornel
Kornel / decision-boundaries.Rmd
Created March 25, 2016 11:00
Decision boundaries for a MLP, SVM and a Random Forest
---
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}