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
@echo off | |
@setlocal EnableExtensions EnableDelayedExpansion | |
:: This batch file will try to generate a minimalist project | |
:: It will create a src folder with a small cpp file^ | |
:: It will create a test folder with some mock test files for catch2/catch | |
:: It will also ask if you want to enable testing | |
:: If a solution already exists (in the build folder) it will ask if you want to remove it and rebuild | |
:: NOTE: Run this in admin mode if it doesn't work |
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
export PHP_IDE_CONFIG=\"serverName=${phpstorm_server_config_name}\" && \ | |
php \ | |
-dxdebug.remote_host=${xdebug_remote_host} \ | |
-dxdebug.remote_port=${xdebug_remote_port} \ | |
-dxdebug.idekey=${xdebug_idekey} \ | |
-dxdebug.remote_enable=${xdebug_remote_enable} \ | |
-dxdebug.remote_mode=${xdebug_remote_mode} \ | |
-dxdebug.remote_autostart=${xdebug_remote_autostart} \ | |
-dxdebug.remote_connect_back=${xdebug_remote_connect_back} \ | |
-dxdebug.remote_log=${xdebug_remote_log} \ |
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
tail -f -v logdir/*.log | sed -E 's/([^\n]#[0-9]+\s)/\n\1/g' |
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
#include <iostream> | |
#include <unordered_map> | |
#include <string> | |
template <typename T1, typename T2> | |
std::unordered_map<T2, T1> flip(std::unordered_map<T1, T2>& m) { | |
std::unordered_map<T2, T1> result; | |
for (auto&& [key, value] : m) { | |
result.emplace(value, key); |
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 | |
class Pappi { | |
private $prop = "default value"; | |
} | |
class Child extends Pappi { |
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 | |
//https://www.geeksforgeeks.org/write-a-c-program-to-print-all-permutations-of-a-given-string/ | |
function swap(string &$str, int $i, int $ii) : void { | |
$tmp = $str[$i]; | |
$str[$i] = $str[$ii]; | |
$str[$ii] = $tmp; | |
} | |
function permute(string $str, int $l, int $r, array &$result) : void { |
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
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <regex> | |
auto match_all(std::string input, const std::string& pattern) noexcept { | |
std::vector<std::pair<std::string, int>> matches{}; | |
try { | |
const std::regex self_regex(pattern);//, std::regex_constants::ECMAScript | std::regex_constants::icase); |
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
#Parameters file, comment out if not used (will be needed for Mysql logging) | |
include parameters.inc.dist | |
-include parameters.inc | |
.DEFAULT_GOAL := help | |
.PHONY: help | |
compose_file_path = ./docker-compose.yml | |
dc = docker-compose --file $(compose_file_path) | |
service_php = php-fpm | |
service_mysql = mysql |
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
/** | |
This should transform the string: | |
- name=Maria, grades-90,age/25?university-UCL,surname=Hill,grades//85,graduates=5%ID=356231, graduates-7,grades=78//graduates=3 | |
Into: | |
{ | |
"output":{ | |
"university":"UCL", | |
"students":{ | |
"name":"Maria", |
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
@echo off | |
set __SOURCE_PATH=%~dp0 | |
set __SOURCE_PATH=%__SOURCE_PATH:~0,-1% | |
for /f %%i in ('where vcpkg.exe') do ( | |
set __SCRIPT_PATH=%%~dpiscripts | |
goto :script_found | |
) | |
echo Could not find executable: vcpkg.exe |