Skip to content

Instantly share code, notes, and snippets.

View hiepxanh's full-sized avatar

hiepxanh hiepxanh

View GitHub Profile
@hiepxanh
hiepxanh / api.ts
Last active February 8, 2018 07:42
themeable Browser for ionic
cssVariable: string = `
#header, #breadcrumb-wrapper, #footer,#mobile-bottom-navigation, #back-to-top {
display:none;
}
body {
padding-bottom: 80px;
padding-top: 1px;
}
`
@hiepxanh
hiepxanh / home.ts
Last active February 7, 2018 08:27
check sms OTP
// STEP 1:
// {{ install these command in CMD, turn off adb.exe process if you already run, turn off in Window Task Manager }}
// {{ Open Administrator CMD, Must be Administrator}}
// ionic cordova plugin add cordova-plugin-android-permissions
// ionic cordova plugin add cordova-plugin-sms
// yarn add @ionic-native/android-permissions
// yarn
// {{ run last command to check all node_modules }}
// STEP 2: add 'AndroidPermissions' in app.module.ts 'providers'
@hiepxanh
hiepxanh / self-intro.ps1
Created November 25, 2017 12:43
microsoft voice self introduce
Add-Type -AssemblyName System.speech | Out-Null
$spk = new-object System.Speech.Synthesis.SpeechSynthesizer
$voices = $spk.GetInstalledVoices().voiceinfo
foreach($voice in $voices){$spk.SelectVoice($voice.Name);$spk.Speak($voice.name)}
@hiepxanh
hiepxanh / speech viet.js
Last active May 7, 2024 11:55
show list voice and speak vietnamese
var langList = document.getElementById('langList');
if ('speechSynthesis' in window) {
// Start an html table for languages details
var text = '<table border=1><tr><th>Default<th>Language<th>Local<th>Name<th>URI</tr>';
// Get voices; add to table markup
function loadVoices() {
var voices = speechSynthesis.getVoices();
voices.forEach(function(voice, i) {
// Add all details to table
@hiepxanh
hiepxanh / backup.js
Created November 24, 2017 17:42
trinh
$( document ).ready(function() {
$("#id_thehien").on('change', function() {
var optionId = $('option:selected', this).attr('id');
if(optionId === 'all') {
reset_vl();
hide_lun();
$("#class").hide();
}
@hiepxanh
hiepxanh / search.js
Last active November 24, 2017 17:29
trinh dam dang
$(document).ready(function () {
$("#id_thehien").on('change', function () {
var optionId = $('option:selected', this).attr('id');
if (optionId === 'all') {
reset_vl();
hide_lun();
$("#class").hide();
}
@hiepxanh
hiepxanh / add-voice.ps
Created November 23, 2017 03:08
Add microsoft core voice to any application can use
$sourcePath = 'HKLM:\software\Microsoft\Speech_OneCore\Voices\Tokens' #Where the OneCore voices live
$destinationPath = 'HKLM:\SOFTWARE\Microsoft\Speech\Voices\Tokens' #For 64-bit apps
$destinationPath2 = 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\SPEECH\Voices\Tokens' #For 32-bit apps
cd $destinationPath
$listVoices = Get-ChildItem $sourcePath
foreach($voice in $listVoices)
{
$source = $voice.PSPath #Get the path of this voices key
copy -Path $source -Destination $destinationPath -Recurse
copy -Path $source -Destination $destinationPath2 -Recurse
@hiepxanh
hiepxanh / cloudSettings
Last active March 14, 2018 07:19
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-03-14T07:06:28.319Z","extensionVersion":"v2.9.0"}