Skip to content

Instantly share code, notes, and snippets.

View tvthu's full-sized avatar

Theodore tvthu

View GitHub Profile
@tvthu
tvthu / magento-test.php
Created July 20, 2022 03:20
Test magento 2
<?php
ini_set('display_errors', 1);
ini_set('max_execution_time', 0);
ini_set("memory_limit", "-1");
set_time_limit(0);
error_reporting(E_ALL);
require './app/bootstrap.php';
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
$objectManager = $bootstrap->getObjectManager();
@tvthu
tvthu / index.md
Last active December 10, 2020 02:14
Command Line

Search Replace Large File

sed -i "" 's/foo/linux/g' file.txt
sed 's/http:\/\/localhost:8888\/mywebsite/http:\/\/mywebsite.com/g' FileToReadFrom > FileToWriteTo