webnovel

How many novels are there in the white colt of heaven and earth

2026-08-02 02:57
2026-08-02 06:55

I recommend Conan: When I Become Gin's Little Brother. The author is crazy and weird. The main character, Rin Kurosawa, transmigrated into Gin's younger brother, a sickly girl who wanted to steal Gin and betray him. He had tried to get Gin to like him in front of the police boss, but Gin had blown up the Suzuki Sky Tower. He couldn't bring Rin Heize along. There was no female lead, the script was normal, and the text was a little feminine. The author's updates weren't stable in the third year of high school, but they were now stable. The main character was a little childish but his abilities were interesting. Gin was also a brother lover. This novel was very novel. He had a hunch that it would become a Conan Doujin classic if it didn't collapse. There was also " Chief Musician ", an urban entertainment novel written by Haiyu's eulogy. The male protagonist, Xiao Feng, traveled through parallel time and space without a system and conquered the entertainment world with his music experience from his previous life. There were many roles. Xiao Feng was the Masked King in his previous life, and the supporting roles had their own characteristics. " Cross-Border Strategy Guide " was not bad either. The author must be joking. The male protagonist, Bai Junwen, activated his superpower to travel between the entertainment circles on Earth and different eras. The story was quite interesting. Mortal: The System Came Only When I Was in the Nascent Soul Stage was a Xianxia novel written by Feng, who had forgotten about the past. Lu Xing transmigrated to the world of mortals and immortals, and the system only came after he worked hard to form his Nascent Soul. The plot was very interesting. Lastly, he recommended Spine Gu: Devouring from the Spirit Cage, a novel by Mianzhou's Misty Land. The male protagonist Luo Ke had transmigrated to become a Spine Gu to devour and evolve. His style was more refreshing, and the book was still available. Read more exciting novels for free

Latest Questions

Ai Shuishui's novel collection

Currently, only Ai Shuishui's novel," I'm the Daughter of a Big Boss," was found. The complete content of her novel collection was not found. <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>

1 answer
2026-08-10 13:45

How to use the remote command of the Haikang camera

The remote settings of Hikvision's network camera first had to install the monitoring system to ensure that the external network could be accessed normally. Then, the port map was done and the dynamic domain name resolution service was logged in. The mobile phone could download the Aquarite APP, scan the QR code of the video recorder with the Aquarite, or enter the serial number to achieve remote operation. On the other hand, if the device supports the UP function, you can do the following: 1. Enter the device network configuration IP, mask, and gateway; 2. In the advanced configuration, fill in the network Domain Name System to enable the upmp function. 3. Activate DDomain Name Server, select Hong Kong Domain Name Server (Haikang's own domain name server), fill in the device domain name, and save it if the domain name is available. 4. To do the port map, the virtual server (or port map) had to map the ports (the device had three default ports, 80, 8000, and 554, which could be modified on the device. The three ports had to be simultaneously map, and none of them could be missing). If the device doesn't support the UP function, you need to set it up according to other related port maps. In addition, remote management and viewing can be done with 2,500 or 4500 private domains. <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>

1 answer
2026-08-10 13:45

The movie Mathilda

Mathilda had many movies with the same name. Mathilda, which was released in 1996, was directed and starred by Danny DeVito. The main actors included Mara Wilson and others. It was adapted from Roald Dahl's 1988 novel of the same name. It told the story of the little girl Mathilda using her superpower to deal with family problems and school tyranny. Mathilda, which was released in 2022, was directed by Matthew Woechus and starred by Emma Thompson, Andrea Rice Borrow and Stephen Graham. The film was released in the UK on December 2,2022, in North America on December 9,2022, and on the Internet on December 25,2022. It tells the story of the little girl Mathilda dealing with vulgar parents and principals, relying on courage and wisdom to create miracles and save herself and the people around her. There was also an anime-related creation based on " Experimental 919 -Mathilda the Sunfish." The inspiration came from the sunfish and had nothing to do with the plot of the previous two movies. Watching Léon: The Assassin wasn't satisfying enough. Everyone is welcome to click to read the novel!

1 answer
2026-08-10 13:45

The words that represent courage in Ultraman

There were many words in the Ultraman series that represented courage, such as " We Ultramen are not gods. No matter how hard we try, there are lives that cannot be saved, and there are ideas that cannot be achieved. " As long as you have a strong will, your dreams can come true " expressed the courage to pursue your dreams with a strong will;" Enthusiasm cannot be erased. Be considerate of the weak and help each other. No matter which country you are from, you can become friends with them. Don't lose this feeling, even if this feeling has been betrayed hundreds of times ";, holding on to your inner enthusiasm and not being influenced by the outside world was also a manifestation of courage;" The power of faith, turn into courage! The power of this belief can turn the impossible into a possibility. This is Ultraman!" It shows that faith can be transformed into courage;" If you don't give up, you won't lose. " Fighting as Ultraman means that you must never let down their feelings and continue their hopes. In that way, you will become stronger." This sentence contained the courage to not give up, to hold on to hope, and to continue hope." If you don't give up until the last moment, a miracle will definitely happen!" Not giving up until the last moment was also a sign of courage, and " The Power of Courage and Love " directly mentioned courage. <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>

1 answer
2026-08-10 13:45

Which Shanghai second-hand house app is better?

Shanghai Second-hand Real Estate was a good Shanghai second-hand real estate app. It had many advantages. First of all, it focused on the Shanghai area and provided the most comprehensive information. Buyers or renters could quickly locate their favorite houses according to different screening criteria such as area, house type, price, etc. Whether it was a high-end apartment in the city center or a livable villa, they could find it. Secondly, the information was updated in a timely manner to ensure accuracy. Every day, a large number of new second-hand houses were put on the shelves, allowing users to obtain the latest housing information in time to avoid missing out on good houses. Moreover, the housing information had been strictly screened and was authentic, making users feel more at ease when buying and renting houses. Finally, the APP had a powerful interaction function. The user could view information such as pictures, prices, and detailed descriptions of the property, and communicate directly with the landlord or agent online.

1 answer
2026-08-10 13:45

Python crawling data saved in txt format

There are several ways to save data in txt-format in Python: 1. Using the open and write functions: - If you want to save string or byte-type data (but you can't directly save arrays), you can use this method. For example, the following code saves a string to the test.txt: ```python test = "This is a test string" with open('test.txt', 'w') as f: f.write(test) ``` 2. Using the np.save function: - This method can be used to save array type data to a txt-file. For example, if there is an array to save: ```python import numpy as np test = np.array([1, 2, 3]) np.save('test.txt', test, fmt='%d') ``` 3. When it comes to saving the data as a txt-file after data crawling, if you use the pandas library to read the data, for example, read the data from the dsv file and save it as a txt-file: - Method 1: Store the data in the data frame into a txt-file (using the pandas library). If the data is read from a file called train_dataset.dsv., the code is as follows: ```python import pandas as pd data_train = pd.read_csv("train_dataset.csv", encoding='utf - 8',sep='|') train_content = pd.DataFrame(data_train.content) train_content.to_csv("train_content.txt",sep ="\t",index=False) ``` - Method 2: Save the string to a txt-file: ```python # file=open("train_content.txt',"w") #" w "for writing" w+"for reading and writing # file.write(train_content) # file.close() ``` 4. To save the crawled data in a specific format (such as saving the data as txy after serializing it): - Save in JSon sequence (suitable for converting objects such as a dictionary into a JSon string and saving it to txttext): ```python import json data = {"name": "Alice", "age": 25} json_data = json.dumps(data) with open('data.txt', 'w') as f: f.write(json_data) ``` - If you use Pickle to serialize (convert Python objects into a sequence of words, save them, and then de-serialize them when you read them): ```python import pickle data = {"name": "Alice", "age": 25} serialized_data = pickle.dumps(data) with open('data.txt', 'wb') as f: f.write(serialized_data) ``` - Xml serializing (convert the data into an Xml element, serialize it into a string, and save it in txt): ```python import xml.etree.ElementTree as ET data = {"name": "Alice", "age": 25} root = ET.Element("data") for key, value in data.items(): child = ET.SubElement(root, key) child.text = str(value) xml_data = ET.tostring(root, encoding="utf - 8", method="xml") with open('data.txt', 'w') as f: f.write(xml_data.decode()) ``` <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>

1 answer
2026-08-10 13:45

Yu Wenle Wesley Series Cast List

In "Wesley the Adventurer," the actors included Yu Wenle (as Wesley), Hu Ran (as Bai Su), Ren Dahua (as Boss Bai), Lin Jiadong (as Deng Shi), Wen Kailing, etc. In "Wesley the Adventurer," the main actors were Yu Wenle (as Wesley), Hu Ran (as Bai Su), Wen Yongshan (as Fang Tianya), Huang Haoran (as Luoka), Wu Yunlong (as John Luo), Ye Xiangming (as Zhu Xiaobao), etc. <a href="/?from=ask_words" style="color:red" target="_blank">Read more exciting novels for free</a>

1 answer
2026-08-10 13:45

What does a Yuan Venerate think?

Yuan Venerate's reviews were mixed. On the positive side, it performed well in terms of results. It had more than 100 million views and more than 100 million downloads. It was regarded as one of the better works in the online literature industry. Some people thought that the writing was excellent and the ratings were heaven-defying. It was a masterpiece worth watching. The animated version also had many exciting aspects, such as the famous scenes, the wonderful ending, the better the plot, and the battle plot in the animation. There were also readers who thought that the plot of the novel was not simple and cliché. It was both sadistic and sweet. The score was as high as 9.7 and they were not tired of it. However, there were also many readers who criticized it. The storyline was said to be more serious, and foreign readers commented that it was very repetitive. The protagonist's behavior and plot development were relatively fixed. For example, the protagonist offended a villain of a higher level than himself and defeated the enemy and successfully leveled up. He kept entering similar secret spaces, and the instance also had self-replicating situations. In terms of character creation, the label of the main character being " online IQ " was also questioned. In the book, there were cases where the supporting characters ignored the potential of the main character and ridiculed the main character. They had low EQ, which did not meet the setting of " online IQ."

1 answer
2026-08-10 13:45

Raising Brother (Pseudo-Orthopedics)

The foster brother in the pseudo-orthopedic relationship referred to the role of an elder brother who was not related by blood but became a brother and sister in name due to adoption and other reasons. In some literary works or movies, the adopted brother in this relationship might have an emotional relationship with the nominal sister. This kind of relationship setting was taboo and controversial. It challenged ethics and could easily mislead the values of the audience, especially the young audience. However, it also satisfied the curiosity of some audiences towards taboo love. In some works, through wonderful plots and delicate emotional descriptions, such as family grudges, business competitions, and other elements, the emotional lines of the characters under such relationships would be more complicated and attractive. While waiting for the TV series, he could also read the exciting content related to this site!

1 answer
2026-08-10 13:44

Sun Wukong's Character and Traits

In the event of defeating the White Bone Demon three times, Sun Wukong had shown many characteristics. First of all, he abhorred evil as his enemy. Facing the White Bone Demon who disguised himself as a village girl, an old woman, and an old man, he was determined to kill the demon to protect Tang Sanzang. He would not allow the demon to approach and murder his master. The second was loyalty. Although Tang Sanzang could not distinguish between human and demon, repeatedly blamed him for wanton murder and recited the Golden Hoop Incantation to punish him, and even wrote a letter of reprimand to drive him away in the end, he still worried about Tang Sanzang's safety. Once Zhu Bajie came to ask for help, he would forget the past and go to save his master. He would rather be misunderstood by his master, bear the pain of the Golden Hoop Incantation, and risk being expelled than give up on killing the evil demon, White Bone Spirit. Watching Journey to the West: Sun Wukong Beats the White Bone Demon Three Times is not enough. Everyone is welcome to click to read the novel!

1 answer
2026-08-10 13:44
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z