Skip to content

Instantly share code, notes, and snippets.

View tranchausky's full-sized avatar
🏹
done

tranchausky

🏹
done
View GitHub Profile
@tranchausky
tranchausky / different.js
Last active June 14, 2024 06:27
jquery send ajax json
var settings = {
"url": "https://website.local:8443/api/event-checkin",
"method": "POST",
"timeout": 0,
"headers": {
"username": "usename",
"password": "password",
"Content-Type": "application/json"
},
"data": JSON.stringify({
@tranchausky
tranchausky / laravel-demo-upset.sql
Last active June 3, 2024 04:23
demo laravel upset (update/insert) need catalog_id is unique
insert into `subModel` (`catalog_id`, `name`) values ('1', 'CCC'), ('2', 'GS'), ('3', 'SX'), ('4', 'GL'), ('10', 'Home,cc') on duplicate key update `catalog_id` = values(`catalog_id`), `name` = values(`name`)
@tranchausky
tranchausky / doc.txt
Created May 20, 2024 03:45
How to extract text from a PSD file?
npm install -g psd-cli
You can then use it by typing in your terminal
psd myfile.psd -t
This will create myfile.txt, containing all text extracted from each PSD layer with the layer structure attached.
https://nodejs.org/en/
https://www.npmjs.com/package/psd-cli
@tranchausky
tranchausky / run-mysql.text
Created May 20, 2024 03:34
Run mysql portable win 10
Download mariabd zip for win 10
https://mariadb.org/download/?t=mariadb&p=mariadb&r=11.3.2&os=windows&cpu=x86_64&pkg=zip&m=bkns
Installing MariaDB Windows ZIP Packages
Users need to run mysql_install_db.exe, without parameters to create a data directory, e.g
C:\zip_unpack\directory> bin\mysqld_install_db.exe
Then you can start server like this
#include <Arduino.h>
#include <EEPROM.h>
const int EEPROM_SIZE = 512; // EEPROM size in bytes
const int MAX_STRING_LENGTH = 50; // Maximum string length
void setup() {
Serial.begin(115200);
EEPROM.begin(EEPROM_SIZE); // Initialize EEPROM
}
@tranchausky
tranchausky / file.php
Created April 19, 2024 03:28
wp php return file png from content base64
<?php
/*
* Template Name: Template-return-png
* Description: A Page Template with a darker design.
*/
$database64 = '';
if(isset($_GET['id'])){
@tranchausky
tranchausky / functions.php
Created April 19, 2024 02:08
wp need login not sub page free
<?php
//every page need login
//not page of /free
//http://myweb.com/free
//http://myweb.com/free/page1
//http://myweb.com/free/page2....
function _nok_force_user_login() {
global $wp;
@tranchausky
tranchausky / TextUtil.php
Created April 17, 2024 10:21 — forked from khoatran/TextUtil.php
Convert Vietnamese string to slug
<?php
class TextUtil {
public static function sanitize($title) {
$replacement = '-';
$map = array();
$quotedReplacement = preg_quote($replacement, '/');
$default = array(
'/à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ|À|Á|Ạ|Ả|Ã|Â|Ầ|Ấ|Ậ|Ẩ|Ẫ|Ă|Ằ|Ắ|Ặ|Ẳ|Ẵ|å/' => 'a',
'/è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ|È|É|Ẹ|Ẻ|Ẽ|Ê|Ề|Ế|Ệ|Ể|Ễ|ë/' => 'e',
'/ì|í|ị|ỉ|ĩ|Ì|Í|Ị|Ỉ|Ĩ|î/' => 'i',
@tranchausky
tranchausky / translate_tts
Created April 17, 2024 09:53
google translate_tts
vietnam
translate.google.com/translate_tts?ie=UTF-8&q=%C4%83n%20n%C3%AAn%20l%C3%A0m%20ra&tl=vi&total=1&idx=0&textlen=15&tk=350535.255567&client=webapp&prev=input
eng
translate.google.com/translate_tts?ie=UTF-8&q=This%20is%20a%20test.&tl=en&total=1&idx=0&textlen=15&tk=350535.255567&client=webapp&prev=input