Skip to content

Instantly share code, notes, and snippets.

@aydos
aydos / index.html
Last active May 28, 2016 10:06
Türkiye
<!DOCTYPE html>
<meta charset="utf-8">
<style>
text {
font-family: helvetica, arial, sans-serif;
font-size: 10px;
text-anchor: middle;
color: #111;
}
</style>
@aydos
aydos / drupal7_hugo.php
Last active March 9, 2016 17:49
A straightforward php script to convert drupal 7 nodes to hugo markdown files.
<?php
// This script is site specific
// You need refactor almost every line :)
$conn = mysqli_connect("localhost", "user", "pass", "aydosnet");
if (!$conn) {
die("Connection failed...");
}
mysqli_set_charset($conn, 'utf8mb4');
function rmdir_recursive($dir) {