Skip to content

Instantly share code, notes, and snippets.

// Refer https://github.com/kkdai/linebot-video-gcp for more detail.
// Must use "apiv1p1beta1" version to enable support on Chinese and MP3
speech "cloud.google.com/go/speech/apiv1p1beta1" //v1p1beta1
speechpb "google.golang.org/genproto/googleapis/cloud/speech/v1p1beta1" //v1p1beta1
func (c *ClientUploader) SpeachToText() (error, string) {
ctx := context.Background()
@SectionOne
SectionOne / latihan_login.php
Last active May 15, 2025 13:39 — forked from jankensword/latihan_login.php
Halaman Login (Login Page)
<?php
@session_start();
unset($_SESSION['NAMA_USER']);
$_SESSION['intentos'] = 0;
if(isset($_SESSION['NAMA_USER']))
{
header("location:index.php");
}
?>
<!DOCTYPE html>