- Install CUDA
- set env var (.profile)
export PATH=/usr/local/cuda-12.2/compat:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-12.2/compat:$LD_LIBRARY_PATH
| { | |
| "anytime": [ | |
| "Setiap langkah kecilmu hari ini membawamu lebih dekat dengan impianmu.", | |
| "Ingatlah, kegagalan adalah bagian dari perjalanan menuju kesuksesan.", | |
| "Kekuatan terbesar kamu adalah keberanian untuk mencoba.", | |
| "Jangan pernah takut bermimpi besar, keluarga kita adalah tim terkuatmu.", | |
| "Perubahan kecil setiap hari menambahkan hingga hasil yang besar.", | |
| "Tetaplah positif, bekerja keras, dan buat hari ini lebih baik dari kemarin.", | |
| "Kesulitan sementara bisa mengarah pada keberhasilan yang abadi.", | |
| "Yakinlah pada kemampuanmu sendiri; kamu lebih kuat dari yang kamu pikirkan.", |
export PATH=/usr/local/cuda-12.2/compat:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda-12.2/compat:$LD_LIBRARY_PATH
| -- Triggers | |
| DECLARE @TRIGGERS_SQL VARCHAR(MAX) = ( | |
| SELECT | |
| 'DROP TRIGGER [' + SCHEMA_NAME(so.uid) + '].[' + [so].[name] + '] ' | |
| FROM sysobjects AS [so] | |
| INNER JOIN sysobjects AS so2 ON so.parent_obj = so2.Id | |
| WHERE [so].[type] = 'TR' | |
| AND [so].name LIKE '%_dss_%_trigger' | |
| FOR XML PATH ('') | |
| ) |
| |
| # install the module (it only needs to be done once) | |
| Install-Module -Name "Send-MailKitMessage" -Scope CurrentUser | |
| $SMTPServer = "smtp.gmail.com" | |
| $Port = 587 | |
| $Username = "" | |
| $Password = "" | |
| $Credential=[System.Management.Automation.PSCredential]::new($Username, (ConvertTo-SecureString -String $Password -AsPlainText -Force)) |
| interface NestedKeyValuePair { | |
| key: string, | |
| value: string, | |
| next: NestedKeyValuePair | |
| } | |
| interface KeyValuePair { | |
| key: string, | |
| value: string | |
| } |
| using System; | |
| using System.Collections.Generic; | |
| namespace Frandi.Extension | |
| { | |
| public static class ExceptionExtensions | |
| { | |
| /// <summary> | |
| /// Get the last InnerException from the exception | |
| /// </summary> |