为创世纪图书馆(Library Genesis)作镜像
- 简介
Library Genesis的Wikipedia条目中的介绍是:
Library Genesis or LibGen is a search engine for articles and books on various topics,which allows free access to content that is otherwise paywalled or not digitized elsewhere. Among others it carries PDFs of content from Elsevier's ScienceDirect web-portal.
In 2015, the website became involved in a legal case when Elsevier accused it of providing pirate access to articles and books. LibGen is reported to be registered in both Russia and Amsterdam, making it unclear which legislation applies, and whether defendants will show up in a United States court hearing. LibGen is blocked by a number of ISPs in the United Kingdom, but such DNS-based blocks are claimed to do little to deter access. In late October 2015, a New York district court ordered LibGen to shut down and to suspend use of the domain name (libgen.org), but the site is accessible through alternate domains.
As of July 2016, the database contains more than 52 million articles from about 50,000 publications.
- 以上为非常简短的介绍,但可以看出,①创世纪图书馆可以穿透付费墙②资源非常多,包含书籍论文等等③被起诉,多个ISP拒绝访问
- 地址:
- 图书馆论坛:
- 资料来源:
- 用户上传
- 通过已付费账号从付费数据库下载的数据
Sci-Hub的资源:SCI-HUB与Library Genesis协同工作:当用户请求论文的时,首先数据库中查找,找到直接下载,找不到使用付费账号从付费数据库中下载,首先同步到Library Genesis,然后提供给用户下载
- hacker communities
- 下载方式:
- 直接下载
- BT
- DC++
- eD2k
- *Usenet
- 组件:
- 源
- 数据库
- Web服务器
- 源:
- libgen:http://域名或IP地址/libgen/repository_torrent/
- scimag:http://域名或IP地址/scimag/repository_torrent/
- comics:ftp://域名或IP地址/comics0/
- fiction:http://域名或IP地址/foreignfiction/repository_torrent/
- libgen(Usenet):http://域名或IP/libgen/repository_nzb/
- pictures:http://域名或IP地址/pictures/
- 数据库:
- Dumps:http://域名或IP地址/dbdumps/
- Web服务器源码:
- http://域名或IP地址/libgen/code/
- http://域名或IP地址/scimag/code/
- http://域名或IP地址/foreignfiction/code/
- http://域名或IP地址/comics/code/
- 实现细节参见:https://genofond.org/viewtopic.php?f=17&t=791
为创世纪图书馆(Library Genesis)作镜像的更多相关文章
- 图形学创世纪——写在SIGGRAPH 40年的边上
40年的边上" title="图形学创世纪--写在SIGGRAPH 40年的边上"> 前言: SIGGRAPH是由ACM SIGGRAPH(美国计算机协会计算机图形 ...
- Poetize4 创世纪
3037: 创世纪 Time Limit: 5 Sec Memory Limit: 128 MBSubmit: 123 Solved: 66[Submit][Status] Description ...
- 编程哲学之C#篇:01——创世纪
我们能否像神一样地创建一个世界? 对于创建世界而言,程序员的创作能力最接近于神--相对于导演,作家,漫画家而言,他们创建的世界(作品)一旦完成,就再也不会变化,创建的角色再也不会成长.而程序员创建的世 ...
- 【BZOJ3037/2068】创世纪/[Poi2004]SZP 树形DP
[BZOJ3037]创世纪 Description applepi手里有一本书<创世纪>,里面记录了这样一个故事……上帝手中有着N 种被称作“世界元素”的东西,现在他要把它们中的一部分投放 ...
- [bzoj3037/2068]创世纪[Poi2004]SZP_树形dp_并查集_基环树
创世纪 SZP bzoj-3037/2068 Poi-2004 题目大意:给你n个物品,每个物品可以且仅可以控制一个物品.问:选取一些物品,使得对于任意的一个被选取的物品来讲,都存在一个没有被选取的物 ...
- CH6401 创世纪
6401 创世纪 0x60「图论」例题 描述 上帝手中有 N(N≤10^6) 种世界元素,每种元素可以限制另外1种元素,把第 i 种世界元素能够限制的那种世界元素记为 A[i].现在,上帝要把它们中的 ...
- JZOJ 3929. 【NOIP2014模拟11.6】创世纪
3929. [NOIP2014模拟11.6]创世纪 (Standard IO) Time Limits: 1000 ms Memory Limits: 65536 KB Description 上帝手 ...
- T1创世纪(原创)
创世纪 这是我的第一道原创题 题解: 这道题的核心算法是:加维度的最短路+贪心 状态:\(dis[i][j][t][a]\)表示在 \(t\) 时,到达 \((i,j)\) ,当前共造\(a\)只&q ...
- bzoj3037 创世纪
两种解法: 一.树状DP /*by SilverN*/ #include<iostream> #include<algorithm> #include<cstring&g ...
随机推荐
- 用spring的@Scheduled实现定时任务
先在spring的配置文件中添加扫描 在applicationContext.xml中添加 <task:annotation-driven/>,我用的是idea有提示功能 选择第一个后会 ...
- 遇到的[]bug
"Runtime Error Message:reference binding to null pointer of type 'struct value_type' Last execu ...
- html页面通过http访问mysql数据库中的内容,实现用户登录的功能
需求: 通过html编写用户登录页面,页面内容包括用户名.密码和登录按钮,点击登录后访问login.php文件,使用按钮默认的submit提交用户名和密码,在login.php中访问mysql数据库, ...
- Leetcode中sort排序遇到的一些问题
class Solution { public: static bool cmp(vector<int>a,vector<int>b) { ]-a[]<b[]-b[]; ...
- 2019-04(1)(Python学习)
9.1 迭代器 创建迭代器的3种方法: 方法一: 容器对象添加 __iter__() 和 __next__() 方法(Python 2.7 中是 next()):__iter__() 返回迭代器对象本 ...
- python jieba 库分词结合Wordcloud词云统计
import jieba jieba.add_word("福军") jieba.add_word("少安") excludes={"一个", ...
- Windows防火墙开启ping,禁ping的配置方法
Windows 7,Win 2008 R2,2012 R2: Windows防火墙 --> 高级设置 --> 入站规则 --> 在列表里找到“文件和打印机共享(回显请求 - ICMP ...
- Flask-Session 简单使用
一 知识点 1. 安装 flask 1.0.2 使用Flask-Session,其实必须需要配置的只有这几个地方: 注意!!!!!!: 1. 需要配置的地方1 # flask_session 中的S ...
- Module 的语法
模块功能主要由两个命令构成:export和import.export命令用于规定模块的对外接口,import命令用于输入其他模块提供的功能. 一个模块就是一个独立的文件.该文件内部的所有变量,外部无法 ...
- windows server 2016安装
slmgr /skms kms.03k.org slmgr /ato slmgr /ipk WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY kms服务器: https://03k.org/ ...