Skip to content

Instantly share code, notes, and snippets.

View ZhandosKz's full-sized avatar
🎯
Focusing

Zhandos ZhandosKz

🎯
Focusing
View GitHub Profile
@dadoonet
dadoonet / search_kibana_console.txt
Last active July 4, 2024 09:28
Demo script for "A NoSQL search engine to find..." talk
### REINIT
DELETE user
PUT user
{
"mappings": {
"properties": {
"name": {
"type": "text"
},
"comments": {
@ManInTheBox
ManInTheBox / DateTimeImmutabilityExample.php
Created November 8, 2016 14:47
DateTime VS DateTimeImmutable example
<?php
class DateTimeImmutabilityExample
{
private $date;
/**
* Intentionaly no type hinting so you can test with both DateTime and DateTimeImmutable
*/
public function __construct($date)