Welcome Guest ( Log In | Register )

1264 Pages V « < 703 704 705 706 707 > »   
Reply to this topicStart new topic
> 中文討論區: 杜拉漢有話要說 [禁無意義的水跟簽到], The Chinese discussion thread of declining quality.

 
post Dec 31 2023, 19:50
Post #14081
ericeric91



Sleepy Poster
*********
Group: Catgirl Camarilla
Posts: 5,292
Joined: 6-July 10
Level 500 (Ponyslayer)


按照之前討論的自動裝備租借商店,弄了個測試版:
https://forums.e-hentai.org/index.php?showtopic=273316

因為放在這帳號上會很多問題,所以帳號是跟波羅申請的

目前規則:
五分鐘更新一次
最久可以借用 7 天
期限內歸還退回 80%、期限內至3天內、60%、超過3天 40%、超過5天 20%、超過5天以上不退費
叫號使用 Equip ID
叫號格式:
QUOTE(ericeric91 @ Dec 31 2023, 21:34) *

293307667 3day
293301664 3days



另外想問一下,有沒有人在 linux docker 上用過 selenium + webdriver_manager
我的 container 會炸在初始化階段
不過在 windows 用 vscode 上跑倒是正常 orz
QUOTE

Traceback (most recent call last):
File "/app/forums_MM.py", line 1189, in <module>
service = Service(executable_path=ChromeDriverManager().install())
File "/usr/local/lib/python3.9/site-packages/webdriver_manager/chrome.py", line 40, in install
driver_path = self._get_driver_binary_path(self.driver)
File "/usr/local/lib/python3.9/site-packages/webdriver_manager/core/manager.py", line 40, in _get_driver_binary_path
file = self._download_manager.download_file(driver.get_driver_download_url(os_type))
File "/usr/local/lib/python3.9/site-packages/webdriver_manager/drivers/chrome.py", line 32, in get_driver_download_url
driver_version_to_download = self.get_driver_version_to_download()
File "/usr/local/lib/python3.9/site-packages/webdriver_manager/core/driver.py", line 48, in get_driver_version_to_download
return self.get_latest_release_version()
File "/usr/local/lib/python3.9/site-packages/webdriver_manager/drivers/chrome.py", line 64, in get_latest_release_version
determined_browser_version = ".".join(determined_browser_version.split(".")[:3])
AttributeError: 'NoneType' object has no attribute 'split'

User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Dec 31 2023, 20:21
Post #14082
ccnan23



Sensei nante Daikirai
****
Group: Gold Star Club
Posts: 268
Joined: 23-January 23
Level 500 (Dovahkiin)


QUOTE(ericeric91 @ Jan 1 2024, 01:50) *

另外想問一下,有沒有人在 linux docker 上用過 selenium + webdriver_manager
我的 container 會炸在初始化階段
不過在 windows 用 vscode 上跑倒是正常 orz

光看报错只能看出来是没获取到浏览器版本 具体原因的看不出来了
盲猜要么是使用的浏览器配错了(虽然我也不知道这个是不是手动配置的) 要么是浏览器装的有问题
手动进docker试试能不能拿到版本?

This post has been edited by ccnan23: Dec 31 2023, 20:24
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Dec 31 2023, 20:23
Post #14083
chjj30



🦘跳海魔女🧙王世坚🌊
***********
Group: Catgirl Camarilla
Posts: 10,914
Joined: 5-January 14
Level 500 (Ponyslayer)


QUOTE(ericeric91 @ Jan 1 2024, 01:50) *

按照之前討論的自動裝備租借商店,弄了個測試版:
https://forums.e-hentai.org/index.php?showtopic=273316

因為放在這帳號上會很多問題,所以帳號是跟波羅申請的

目前規則:
五分鐘更新一次
最久可以借用 7 天
期限內歸還退回 80%、期限內至3天內、60%、超過3天 40%、超過5天 20%、超過5天以上不退費
叫號使用 Equip ID
叫號格式:
另外想問一下,有沒有人在 linux docker 上用過 selenium + webdriver_manager
我的 container 會炸在初始化階段
不過在 windows 用 vscode 上跑倒是正常 orz


需要你自己以外的人帮忙测试不?我倒是想租来体验体验。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Dec 31 2023, 20:43
Post #14084
ericeric91



Sleepy Poster
*********
Group: Catgirl Camarilla
Posts: 5,292
Joined: 6-July 10
Level 500 (Ponyslayer)


QUOTE(ccnan23 @ Jan 1 2024, 02:21) *

光看报错只能看出来是没获取到浏览器版本 具体原因的看不出来了
盲猜要么是使用的浏览器配错了(虽然我也不知道这个是不是手动配置的) 要么是浏览器装的有问题
手动进docker试试能不能拿到版本?

我參考這篇
[medium.com] https://medium.com/@hao66bmbm/docker-%E5%BB...me-f74387266131
照貼下去跑不了
dockerfile
CODE
# 使用官方的 Python 映像
FROM python:3.9.18-slim

# 安装 dos2unix 工具
RUN apt-get update && apt-get install -y dos2unix

# 設置工作目錄
WORKDIR /app

# 將本地的 requirements.txt 複製到容器中
COPY requirements.txt /app/

# 使用 pip 安裝依賴套件
RUN pip install --no-cache-dir -r requirements.txt


requirements.txt
CODE
datetime
gdown
pandas
bs4
requests
selenium
webdriver-manager
configparser
autopep8


docker-compose.yml
CODE
version: '3'

services:
  hv-auto-shop-equiprental:
#    image: python-dev-cueny:v0.1
    image: hv-auto-shop-equiprental:0.0.1
    container_name: hv-auto-shop-equiprental
    volumes:
      - ./app:/app
    command: bash -c "dos2unix /app/*.py && python your_main_script.py --headless"
    networks:
      - my-network

networks:
  my-network:



QUOTE(chjj30 @ Jan 1 2024, 02:23) *

需要你自己以外的人帮忙测试不?我倒是想租来体验体验。

我要 reset 一次,沒仔細看踩到甚麼怪問題

丟上來就是想當 open beta 測試,歡迎

--
好像直接炸了,感覺是我沒考慮到格式錯誤問題,又沒寫好例外 Orz

-
該死的,我沒想到會有處理到一半炸掉的問題,所以附件會一直卡在上面

-
為了偷懶我改成 60s 等待了
先躺了,如果有大神告訴我怎樣遷移,我之後會方便很多
因為 autopep8 排版有問題,導致無法在 Linux 上執行讓我頭痛一晚上了
webdriver-manager 方案在 docker 環境跑不了讓我非常絕望
現在是用 windows vm 來跑,環境不大穩定,壁壘的第一次 ticket 有問題是因為他休眠了 Orz

無法辨認格式我有考慮讓她出現在 #2 ,不過目前我還沒想好怎樣寫這段判斷

This post has been edited by ericeric91: Dec 31 2023, 21:18
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Dec 31 2023, 23:01
Post #14085
unlc



Regular Poster
******
Group: Members
Posts: 912
Joined: 27-January 12
Level 411 (Godslayer)


A traveling salesmoogle gives you [281 Credits] for it.
這什麼?過年紅包?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 00:39
Post #14086
fmnijk



初心者
******
Group: Gold Star Club
Posts: 980
Joined: 31-August 19
Level 500 (Ponyslayer)


好羨慕韓國翻譯都一下子就有了 奇怪 講中文的人應該比較多啊 韓國二次元有比較發達嗎
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 02:43
Post #14087
ryasu



Casual Poster
***
Group: Members
Posts: 181
Joined: 6-December 14
Level 395 (Dovahkiin)


QUOTE(unlc @ Dec 31 2023, 22:01) *

A traveling salesmoogle gives you [281 Credits] for it.
這什麼?過年紅包?

hentaiverse设置里的自动出售吧
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 04:51
Post #14088
Lady_Slayer



Member of the Bal'masqué
*********
Group: Catgirl Camarilla
Posts: 5,457
Joined: 20-December 16
Level 500 (Ponyslayer)


QUOTE(ericeric91 @ Jan 1 2024, 01:50) *

按照之前討論的自動裝備租借商店,弄了個測試版:
https://forums.e-hentai.org/index.php?showtopic=273316

因為放在這帳號上會很多問題,所以帳號是跟波羅申請的

目前規則:
五分鐘更新一次
最久可以借用 7 天
期限內歸還退回 80%、期限內至3天內、60%、超過3天 40%、超過5天 20%、超過5天以上不退費
叫號使用 Equip ID
叫號格式:
另外想問一下,有沒有人在 linux docker 上用過 selenium + webdriver_manager
我的 container 會炸在初始化階段
不過在 windows 用 vscode 上跑倒是正常 orz


我去测试贴回了一下,然后过了5分钟还是没反应。估计还是“正在炸” XD
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 04:59
Post #14089
michael405



Regular Poster
*****
Group: Members
Posts: 624
Joined: 30-April 10
Level 139 (Lord)


又到新一年了,繼續找本子看
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 05:03
Post #14090
scf123



Casual Poster
***
Group: Members
Posts: 119
Joined: 30-July 16
Level 105 (Lord)


2023年正是我过去四五年中本子看的最少的一年,封面倒是看得最多的一年……
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 06:14
Post #14091
Mr.K Bolck



Newcomer
*
Group: Recruits
Posts: 10
Joined: 22-October 17
Level 155 (Destined)


新年快乐各位,之前看过新年回复可以获得cookie,然后每天登陆能获得hath的,我想知道在哪里回复才有这个呢?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 06:37
Post #14092
ddwiki



=w=
***********
Group: Gold Star Club
Posts: 12,720
Joined: 6-January 10
Level 500 (Ponyslayer)


新年快乐,然后明天工作日 (IMG:[invalid] style_emoticons/default/anime_cry.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 06:52
Post #14093
hc br



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 3,781
Joined: 18-October 15
Level 500 (Ponyslayer)


QUOTE(Mr.K Bolck @ Jan 1 2024, 12:14) *

新年快乐各位,之前看过新年回复可以获得cookie,然后每天登陆能获得hath的,我想知道在哪里回复才有这个呢?

每日登入可以在

https://e-hentai.org/news.php

上做,同樣也可以在這邊觸發遭遇戰


至於獲得COOKIE活動這頁裡也有寫,

右邊第一則就是,只不過活動時間結束了

"The Sixteenth Annual E-Hentai Yuletide Lottery"

下面點 "Show 2873 comments"可以到活動頁面

活動截止時間是去年年底的最後一秒,

所以,

明年請早
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:00
Post #14094
Lady_Slayer



Member of the Bal'masqué
*********
Group: Catgirl Camarilla
Posts: 5,457
Joined: 20-December 16
Level 500 (Ponyslayer)


QUOTE(hc br @ Jan 1 2024, 12:52) *

明年請早


他要是明年这个时候还是recruits那么起早也没用
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:23
Post #14095
ccnan23



Sensei nante Daikirai
****
Group: Gold Star Club
Posts: 268
Joined: 23-January 23
Level 500 (Dovahkiin)


QUOTE(ericeric91 @ Jan 1 2024, 02:43) *

我參考這篇
[medium.com] https://medium.com/@hao66bmbm/docker-%E5%BB...me-f74387266131
照貼下去跑不了
dockerfile
CODE
# 使用官方的 Python 映像
FROM python:3.9.18-slim

# 安装 dos2unix 工具
RUN apt-get update && apt-get install -y dos2unix

# 設置工作目錄
WORKDIR /app

# 將本地的 requirements.txt 複製到容器中
COPY requirements.txt /app/

# 使用 pip 安裝依賴套件
RUN pip install --no-cache-dir -r requirements.txt


requirements.txt
CODE
datetime
gdown
pandas
bs4
requests
selenium
webdriver-manager
configparser
autopep8


docker-compose.yml
CODE
version: '3'

services:
  hv-auto-shop-equiprental:
#    image: python-dev-cueny:v0.1
    image: hv-auto-shop-equiprental:0.0.1
    container_name: hv-auto-shop-equiprental
    volumes:
      - ./app:/app
    command: bash -c "dos2unix /app/*.py && python your_main_script.py --headless"
    networks:
      - my-network

networks:
  my-network:


唔 你确定你chrome装了吗 你发的那贴的dockerfile里有装chrome,但是你的里面似乎没有
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:27
Post #14096
chuck1776



Casual Poster
****
Group: Members
Posts: 465
Joined: 20-January 12
Level 307 (Lord)


又忘記領新年樂透啦啊啊啊~~~~
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:37
Post #14097
hc br



Veteran Poster
********
Group: Catgirl Camarilla
Posts: 3,781
Joined: 18-October 15
Level 500 (Ponyslayer)


QUOTE(Acetominaphene @ Jan 1 2024, 13:00) *

他要是明年这个时候还是recruits那么起早也没用


慚愧,我都忘了這活動是有活躍度門檻的,

而且應該要說今年請努力,

不是明年請早
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:51
Post #14098
ericeric91



Sleepy Poster
*********
Group: Catgirl Camarilla
Posts: 5,292
Joined: 6-July 10
Level 500 (Ponyslayer)


QUOTE(Acetominaphene @ Jan 1 2024, 10:51) *

我去测试贴回了一下,然后过了5分钟还是没反应。估计还是“正在炸” XD

看了下是網路異常,不知道是為什麼
那部份我沒寫 except ,所以太多次就自動停止了

QUOTE(ccnan23 @ Jan 1 2024, 13:23) *

唔 你确定你chrome装了吗 你发的那贴的dockerfile里有装chrome,但是你的里面似乎没有

我以為不用....打完競技場寫完 except 來試試看
(IMG:[invalid] style_emoticons/default/rolleyes.gif)
-
初步做了下,可以運作了
原來真的要先自己安裝 chrome,感恩
昨天改到情緒有點崩潰沒想到

不過 image 變超大
從 326MB ---> 1.19GB

This post has been edited by ericeric91: Jan 1 2024, 08:03
User is online!Profile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 07:52
Post #14099
azureice



Casual Poster
****
Group: Gold Star Club
Posts: 295
Joined: 8-August 15
Level 500 (Ponyslayer)


年底忙忘了。我也没回复……
(IMG:[i.imgur.com] https://i.imgur.com/7AiQJZb_d.jpg)

This post has been edited by azureice: Jan 1 2024, 07:53
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jan 1 2024, 08:02
Post #14100
cybort



Newcomer
**
Group: Members
Posts: 68
Joined: 10-May 14
Level 310 (Godslayer)


什么情况,我不是回了吗
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


1264 Pages V « < 703 704 705 706 707 > » 
Reply to this topicStart new topic
6 User(s) are reading this topic (4 Guests and 0 Anonymous Users)

 


Lo-Fi Version Time is now: 25th May 2025 - 19:05