Skip to content

Instantly share code, notes, and snippets.

View nguyenthanhxuan's full-sized avatar
😃

Xuan Nguyen nguyenthanhxuan

😃
View GitHub Profile
@nguyenthanhxuan
nguyenthanhxuan / Math.php
Created May 3, 2017 21:25 — forked from jgrossi/Math.php
Math class from Taylor Otwell. Thanks to @brad ([email protected]) for the class content.
<?php
class Math {
/**
* The base.
*
* @var string
*/
private static $base = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
@nguyenthanhxuan
nguyenthanhxuan / webpack.config.js
Last active November 24, 2017 09:15 — forked from learncodeacademy/webpack.config.js
Sample Basic Webpack Config
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname,
devtool: debug ? "inline-sourcemap" : '',
entry: "./js/scripts.js",
output: {
path: __dirname + "/js",
filename: "scripts.min.js"
Name: Flash
Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc=
if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676
Thank you!
@nguyenthanhxuan
nguyenthanhxuan / module_name.install
Created February 29, 2024 08:32
Create a New Content Entity During Module Update
<?php
use Drupal\Core\Database\Database;
/**
* Create the entity table if it does not exist.
*/
function twist_opsf_update_9001(){
//check if the table exists first. If not, then create the entity.
if(!Database::getConnection()->schema()->tableExists('maestro_process_status')) {