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
AudioX: https://github.com/ZeyueT/AudioX | |
Fantasy talking: https://fantasy-amap.github.io/fantasy-talking/ | |
index-tts: https://github.com/index-tts/index-tts | |
Spark-TTS: https://github.com/SparkAudio/Spark-TTS | |
KokoroTTS: https://github.com/remsky/Kokoro-FastAPI | |
FramePack: https://github.com/lllyasviel/FramePack | |
Zonos: https://github.com/Zyphra/Zonos | |
Wan2GP: https://github.com/deepbeepmeep/Wan2GP | |
F5-TTS: https://github.com/SWivid/F5-TTS | |
fish-speech: https://github.com/fishaudio/fish-speech |
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
ffmpeg -i video.mp4 -vcodec libx264 -crf 24 output.mp4 |
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
function cal_eligibility() { | |
var e = 1e5, | |
r = document.getElementById("months_display").value / 12, | |
a = document.getElementById("interest_display").value / 100, | |
t = document.getElementById("income_display").value; | |
repay_max = 50, repay_min = 35; | |
var s = t * repay_max / 100, | |
n = t * repay_min / 100, | |
i = Math.pow(1 + a / 12, 12 * r), | |
o = parseFloat(e) / ((1 - 1 / i) / (a / 12)), |
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.youtube.com/c/algobasket?sub_confirmation=1 |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# !IMPORTANT! Set your RewriteBase here and don't forget trailing and leading | |
# slashes. | |
# If your page resides at | |
# http://www.example.com/mypage/test1 | |
# then use | |
# RewriteBase /mypage/test1/ | |
RewriteBase /letssub/ | |
RewriteCond %{REQUEST_FILENAME} !-f |
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
#android cordova code | |
export ANDROID_HOME=/home/gbyte/Android/Sdk | |
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools |
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
# PHP CI Session Clean up Command | |
find /home/*/tmp -type f -name 'ci_session*' -delete | |
find /var/log/ -type f -regex '.*\.[0-9]+\.gz$' -delete |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
body { | |
font-family: Arial, Helvetica, sans-serif; | |
font-size: 20px; | |
} |
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
## EXPIRES CACHING ## | |
<IfModule mod_expires.c> | |
ExpiresActive On | |
ExpiresByType image/jpg "access 1 year" | |
ExpiresByType image/jpeg "access 1 year" | |
ExpiresByType image/gif "access 1 year" | |
ExpiresByType image/png "access 1 year" | |
ExpiresByType text/css "access 1 month" | |
ExpiresByType application/pdf "access 1 month" | |
ExpiresByType application/javascript "access 1 month" |
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
<html> | |
<head> | |
<title>jQuery add / remove textbox example</title> | |
<script type="text/javascript" src="jquery-1.3.2.min.js"></script> | |
<style type="text/css"> | |
div{ | |
padding:8px; | |
} |
NewerOlder