You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: data/github-repos.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
---
4
4
5
-
### Data Scraping Tools (Best and Limited)
5
+
### Data Scraping Tools
6
6
*[Scrapy](https://github.com/scrapy/scrapy) - A robust, open-source framework for web scraping in Python, widely adopted for its scalability.
7
7
*[BeautifulSoup](https://github.com/wention/BeautifulSoup4) - A Python library for extracting information from HTML and XML documents efficiently.
8
8
*[Playwright](https://github.com/microsoft/playwright) - A modern automation library supporting multiple languages and ideal for scraping dynamic websites.
Copy file name to clipboardExpand all lines: scripts/main.js
+58-7Lines changed: 58 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -76,12 +76,63 @@ function renderSidebar(files) {
76
76
77
77
asyncfunctionloadPage(file){
78
78
try{
79
-
constresponse=awaitfetch(file);
80
-
if(!response.ok){
81
-
thrownewError(`Failed to load ${file}: ${response.statusText}`);
79
+
lethtmlContent;
80
+
if(file==="data/README.md"){
81
+
htmlContent=`
82
+
<h2>Overview</h2>
83
+
<p class="boldS mb-4 text-lg font-normal text-gray-500 dark:text-gray-400">The repository <a href="https://github.com/SIDDHU123M/CodehubX">CodehubX</a> is a curated collection of diverse resources for developers, students, and tech enthusiasts. It features an extensive range of websites and tools, categorized into multiple sections for easy navigation. Whether you're interested in AI, entertainment, cybersecurity, or even creating a fake identity, CodehubX offers valuable tools and resources to enhance your journey.</p>
84
+
<p class="boldS mb-4 text-lg font-normal text-gray-500 dark:text-gray-400">Explore various categories, each containing carefully selected websites with detailed descriptions, ensuring you can easily find what you need.</p>
<p class="boldS mb-4 text-lg font-normal text-gray-500 dark:text-gray-400">Explore educational and professional resources for growth and development.</p>
<p class="boldS mb-4 text-lg font-normal text-gray-500 dark:text-gray-400">Create and manage temporary identities with ease.</p>
122
+
</li>
123
+
</ol>
124
+
125
+
<h2>Important Note</h2>
126
+
<p class="boldS mb-4 text-lg font-normal text-gray-500 dark:text-gray-400">If any URL is not working or you think something needs an update, please report it to <a href="mailto:[email protected]" class="text-blue-500">[email protected]</a>.</p>
127
+
`;
128
+
}else{
129
+
constresponse=awaitfetch(file);
130
+
if(!response.ok){
131
+
thrownewError(`Failed to load ${file}: ${response.statusText}`);
0 commit comments