Hostloc 新帖图文推送
1.81K subscribers
59.5K photos
392K links
本频道基本功能:爬取国内外有名的主机论坛Hostloc新帖,为订阅者提供一手图文资讯!

Hostloc: https://www.hostloc.com

侵删,联系 @CodyD
Download Telegram
标题1:6 出100刀 paypal余额,代付 注册域名,买vps !
作者cowe
原帖https://hostloc.com/thread-968244-1-1.html

摘要:1:6    出paypal余额,代付 注册域名,买vps !

如题: 有100多$

分比我高的,先代付后款。

分比我低的,先款后付。

pmQQ或TG
标题滴!好人卡,pdd西数硬盘安全下车
作者赵刚
原帖https://hostloc.com/thread-968246-1-1.html

摘要:pdd 408冲的西数安全下车
第一次发帖(把硬盘插到手机,170mb/s下降到30mb/s,良好柱面贼多)https://91ai.net/thread-968081-1-1.html
第二次发帖(格式化硬盘,速度恢复170mb/s,柱面也恢复了)https://91ai.net/thread-968110-1-1.html
这是扫描完后的结果
标题没有加密货币的钱包,怎么付款最方便呢?
作者gyjys43043
原帖https://hostloc.com/thread-968245-1-1.html

摘要:想去TG上买点资料,但是对方只支持加密货币,BTC、ETH、USDT等

去注册数字钱包,结果超级麻烦,不单要验证身份而且还要等好几个工作日

各位大佬,不知道有没有比较简单的方法可以直接从银行卡扣款来支付加密货币呢?
标题出半月湾1Gbps端口月1T流量GIA套餐
作者drivefuse
原帖https://hostloc.com/thread-968248-1-1.html

摘要:配置1核1g内存,1Gbps带宽月1T流量,cn2 gia线路,原生ip解锁奈飞和迪斯尼。
续费49美元/年。(官网现售价90美元)
还剩一年左右,有意联系tg: https://t.me/gdemby
标题论坛骗子不少,被骗400多
作者wesly
原帖https://hostloc.com/thread-968250-1-1.html

摘要:早上出些USDT,结果被骗了。https://hostloc.com/forum.php?mo ... ;page=1#pid11941932

骗子自称是189,太相信人了。哎。。。
聊天.jpg (35.55 KB, 下载次数: 0)
下载附件
4 分钟前 上传
骗子tg.jpg (25.14 KB, 下载次数: 0)
下载附件
4 分钟前 上传

骗子TG:pigbosss,交易USDT地址:TQTt3i7iMjjeXf8xwh3UeyAx7ErtAcKxrJ,骗子最终收款TB3XS9zwcbYCKWTV56KKmKQmSv9MFQ5ago。
标题武大靖,谷爱凌这俩波,loc大佬都赚翻了吧?
作者suantong
原帖https://hostloc.com/thread-968251-1-1.html

摘要:pdd卖v.p.n,卖ig账号,不知道赚了多少,令人羡慕.
标题第一次看到好像是把所有员工晒出来的公司
作者xshell
原帖https://hostloc.com/thread-968254-1-1.html

摘要https://www.cloudflare.com/zh-cn/people/

CF的团队  好多人
标题经常收到这样的骚扰短信,求大佬打它一波
作者toot
原帖https://hostloc.com/thread-968253-1-1.html

摘要:套了cf。 dd应该不行。cc应该可以

https://h87j.me
标题兰空图床Lsky Pro增加AWS S3/Minio支持
作者rooney
原帖https://hostloc.com/thread-968255-1-1.html

摘要:兰空图床是一款简单而强大的图床程序,但是目前并不支持minio/s3存储策略,作者计划在2.0版本开发此功能。

然而我不想等了,决定略写几行代码,以支持自建minio后端。有需要的看官可以参考。

大约如下几步:

一、撰写AWS S3存储driver,放到extend/strategy/driver/ 目录下:
options = $options;         try {             $this->s3 = new \Aws\S3\S3Client([                 'version' => 'latest',                 'region'  => empty($this->options['s3_region']) ? 'us-east-1' : $this->options['s3_region'],                 'endpoint' => $this->options['s3_endpoint'],                 'use_path_style_endpoint' => true,                 'credentials' => [                     'key'    => $this->options['s3_key'],                     'secret' => $this->options['s3_secret'],                 ],             ]);         } catch (\Exception $e) {             $this->error = $e->getMessage();         }     }     /**      * 创建文件      *      * @param $pathname      * @param $file      *      * @return bool      */     public function create($pathname, $file)     {         try {             $params = array(                 'Bucket' => $this->options['s3_bucket'],                 'Key' => $pathname,                 'Body' => fopen($file, 'rb')             );             if ($image_type = exif_imagetype($file)) {                 $params['ContentType'] = image_type_to_mime_type($image_type);             }             $this->s3->putObject($params);         } catch (\Exception $e) {             $this->error = $e->getMessage();             return false;         }         return true;     }     /**      * 删除文件      *      * @param $pathname      *      * @return bool      */     public function delete($pathname)     {         try {             $this->s3->deleteObject([                 'Bucket' => $this->options['s3_bucket'],                 'Key' => $pathname,             ]);         } catch (\Exception $e) {             $this->error = $e->getMessage();             return false;         }         return true;     }     /**      * 删除多个文件      *      * @param array $list      * @return bool|mixed      */     public function deletes(array $list)     {         try {             $objects = [];             foreach ($list as $value) {                 $objects[] = ['Key' => $value ];             }             $this->s3->deleteObjects([                 'Bucket' => $this->options['s3_bucket'],                 'Objects' => $objects,             ]);         } catch (\Exception $e) {             $this->error = $e->getMessage();             return false;         }         return true;     }     public function getError()     {         return 'Aws:' . $this->error;     } } 复制代码二、增加aws-sdk-php依赖
composer require aws/aws-sdk-php -n 复制代码三、增加存储策略配置,在config/strategy.php 增加一项
'aws'=>['name'=>'AWS S3','class'=>\strategy\driver\Aws::class], 复制代码四、执行SQL增加配置参数
INSERT INTO `lsky_config` VALUES (0,'aws','text','text','s3_endpoint','Endpoint',NULL,'',''),(0,'aws','text','text','s3_key','Key',NULL,'',''),(0,'aws','text','text','s3_secret','Secret',NULL,'',''),(0,'aws','text','text','s3_bucket','Bucket','储存桶名称','',''),(0,'aws','text','text','aws_cdn_domain','域名',NULL,'',''); 复制代码五,在后台设置存储策略,完成

原文:https://www.wellphp.com/2022/02/ ... %e6%94%af%e6%8c%81/

觉得有用可以考虑给我打赏 https://shop.cgs.me/buy/1
标题手机费充值优惠现在还有吗
作者柳夜熙
原帖https://hostloc.com/thread-968256-1-1.html

摘要:平多多 的慢充都没有了
标题175出个ion季付11.11 洛杉矶
作者韭菜本菜
原帖https://hostloc.com/thread-968257-1-1.html

摘要:刚续费,2022-5-10到期
要得tg我
标题白天空闲的带宽怎么你用起来
作者1121744186
原帖https://hostloc.com/thread-968258-1-1.html

摘要:自建了个cdn 跑流媒体,高峰期都在晚高峰,白天很闲 4g 国内带宽
标题挖的XMR 有用处了
作者LTC
原帖https://hostloc.com/thread-968259-1-1.html

摘要:NSFW
https://www.monerochan.art
https://推特.com/XMRArtFund

Donate to subaddress to vote for that idea:
1        As a space marine on Mars
2        Riding a sinking ship to dock
3        Sexy nurse
4        In a hula outfit hitting a big drum (POOMPA)
5        School swimsuit
6        Wearing a labcoat examining flasks (MRL themed)
7        As a knight facing off against an enourmous foe (fantasy art style)
8        Cosplay Photoshoot
9        Shredding an electric guitar
10        As a rising phoenix girl
标题求一套手持正反面
作者ciri
原帖https://hostloc.com/thread-968261-1-1.html

摘要:烂大街的也可以
标题这是哪位大佬的站?打不开了
作者昨晚上梦见你了
原帖https://hostloc.com/thread-968260-1-1.html

摘要https://www.mypianku.net/

哪里输入错误了?
标题收一个nekonekorelay
作者electronlsr
原帖https://hostloc.com/thread-968262-1-1.html

摘要:月付12及以内,要求等级lv2,目前没有这种,但听说旧款有
想出的tg@ankivector
标题有没有浏览器插件刷jd?
作者yxb
原帖https://hostloc.com/thread-968265-1-1.html

摘要:各种大佬,还没上车,都跑路了, 我猜浏览器应该安全点。
标题有黑卡的路子吗?求代买WHMCS插件
作者ten
原帖https://hostloc.com/thread-968264-1-1.html

摘要:求PM
标题吴彦祖们,甲骨文是不是封了25端口,自建邮箱收不到信啊
作者天生要强
原帖https://hostloc.com/thread-968266-1-1.html

摘要:如题,请赐教