- Created GA4 Analytics account
- Connected to Universal Analytics account
- Added GA4 tag
- Remove webengage, GA, fullstory, hotjar from book/ferry-booking.php
- Remove webengage, GA, fullstory, hotjar from book/boat-booking.php
- Install GTM in book/ferry-booking.php
- Install GTM in book/boat-booking.php
- GTM configured (release v2)
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
- https://www.e-mudhra.com/Repository/ | |
Download token driver | |
HyperPKI HYP 2003 Auto (MAC) New v3 (tested to be working on M1 as of 2024 Sep) | |
- install and reconnect your usb stick | |
at this point you can sign acrobat docs | |
for chrome/web browser based signing | |
- https://embridge.emudhra.com/ download mac embridge |
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
module.exports = { | |
attributes: { | |
type: { | |
type: 'string', | |
required: true, | |
// Example: "binance_withdrawal_txn_id_lookup", "update_user_txn_id", "upload_some_file" | |
// job runner needs to read this field and decide what is to be done | |
}, | |
description: { | |
type: 'string', |
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
about:config | |
toolkit.legacyUserProfileCustomizations.stylesheets true | |
https://github.com/BPower0036/UserChrome/tree/FireFox-117 |
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
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
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
To add official accounts to your normal personal gmail(not CX GSuite/GWorkspace), | |
1. Goto Gmail settings | |
2. Click on "Accounts and Imports" tab | |
3. under "Send mail as:" -> click "Add another email" | |
4. Enter your name and email: xx@instadukan.com and click next | |
5. Enter your username: xx@instadukan.com | |
5. Enter your pass: xxxx | |
6. Click Add account and let me know, Will share a confirmation code with you |
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 "rm /var/lib/docker/containers/*/*.log" | nc -U -w 0 ~/Library/Containers/com.docker.docker/Data/debug-shell.sock |
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
ssh -D 9998 -q -C -N root@server.com |
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
apk add git openssh; | |
mkdir ~/.ssh/; | |
cd ~/.ssh && ssh-keygen; | |
eval `ssh-agent -s`; | |
ssh-add; | |
echo "Host *\ | |
StrictHostKeyChecking no\ | |
UserKnownHostsFile /dev/null\ | |
LogLevel ERROR" > ~/.ssh/config; | |
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts |
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
const Web3 = require('web3'); | |
const metaMaskUtils = require('@metamask/eth-sig-util'); | |
(async () => { | |
const myPrivateKeyHex = "xxx"; | |
let msg = ''; | |
console.log("message: " + JSON.stringify(msg)) | |
const privateKey1Buffer = Buffer.from(myPrivateKeyHex, 'hex') | |
const sign_2 = metaMaskUtils.signTypedData({ data: msg, privateKey: privateKey1Buffer, version: 'V4' }) | |
let whoSigned1 = metaMaskUtils.recoverTypedSignature({ data: msg, signature: sign_2, version: 'V4' }) |
NewerOlder