mirror of
https://github.com/2004content/rarbg.git
synced 2026-01-26 02:18:01 -08:00
Compare commits
11 Commits
ee464356e8
...
e493042b20
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e493042b20 | ||
|
|
63ad01a6e8 | ||
|
|
d73b9606f0 | ||
|
|
146945b2ef | ||
|
|
6e44da952c | ||
|
|
74d70013ba | ||
|
|
84f8e1bf9d | ||
|
|
c07795b66d | ||
|
|
83e8796130 | ||
|
|
0de8b0ddcc | ||
|
|
74a082a284 |
@@ -3,12 +3,14 @@ Backup of magnets from RARBG
|
|||||||
|
|
||||||
everything.7z holds everything that i compiled (3,468,029)
|
everything.7z holds everything that i compiled (3,468,029)
|
||||||
xrmb.7z holds all of xrmb's rarbg magnets (2,843,291)
|
xrmb.7z holds all of xrmb's rarbg magnets (2,843,291)
|
||||||
sorted holds nicely categorized and useful magnets for shows and movies
|
xrmbcsv.7z holds xrmb's exported csv
|
||||||
|
xrmbcategories holds all of xrmb's magnets categorized
|
||||||
|
sorted holds filtered/sorted useful magnets for shows and movies
|
||||||
|
|
||||||
Some of the stuff in everything.7z did not come from RARBG, but I just left it all. Xrmb's database is all from RARBG.
|
Some of the stuff in everything.7z did not come from RARBG, but I just left it all. Xrmb's database is all from RARBG.
|
||||||
|
|
||||||
This repository was mentioned on TorrentFreak -
|
This repository was mentioned on TorrentFreak.
|
||||||
https://torrentfreak.com/rarbg-over-267000-movie-tv-show-magnet-links-appear-online-230601/
|
https://torrentfreak.com/rarbg-over-267000-movie-tv-show-magnet-links-appear-online-230601/
|
||||||
|
|
||||||
More info about this project can be found on Reddit -
|
More info about this project can be found on Reddit.
|
||||||
https://www.reddit.com/r/Piracy/comments/13wn554/my_rarbg_magnet_backup_268k/
|
https://www.reddit.com/r/Piracy/comments/13wn554/my_rarbg_magnet_backup_268k/
|
||||||
|
|||||||
2668
newandprobablyrarbg.txt
Normal file
2668
newandprobablyrarbg.txt
Normal file
File diff suppressed because it is too large
Load Diff
67440
search/bluray.html
Normal file
67440
search/bluray.html
Normal file
File diff suppressed because it is too large
Load Diff
92
search/html.txt
Normal file
92
search/html.txt
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
.search-bar {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.link {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.loading-screen {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: white;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
transition: opacity 1s ease;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-screen.hidden {
|
||||||
|
opacity: 0;
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-spinner {
|
||||||
|
border: 16px solid #f3f3f3;
|
||||||
|
border-radius: 50%;
|
||||||
|
border-top: 16px solid blue;
|
||||||
|
width: 120px;
|
||||||
|
height: 120px;
|
||||||
|
animation: spin 2s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="loading-screen" class="loading-screen">
|
||||||
|
<div class="loading-spinner"></div>
|
||||||
|
</div>
|
||||||
|
<input type="text" id="search-bar" class="search-bar" placeholder="Search for a link...">
|
||||||
|
<button onclick="window.location.href='web.html'">Load Movies WebRip links</button>
|
||||||
|
<button onclick="window.location.href='bluray.html'">Load Movies BluRay links</button>
|
||||||
|
<button onclick="window.location.href='showsrarbg.html'">Load RARBG shows links</button>
|
||||||
|
<button onclick="window.location.href='showsother.html'">Load other shows links</button>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="link-list">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
window.addEventListener('load', function() {
|
||||||
|
const loadingScreen = document.getElementById('loading-screen');
|
||||||
|
loadingScreen.classList.add('hidden');
|
||||||
|
});
|
||||||
|
|
||||||
|
const searchBar = document.getElementById('search-bar');
|
||||||
|
const linkList = document.getElementById('link-list');
|
||||||
|
const links = Array.from(linkList.getElementsByClassName('link'));
|
||||||
|
|
||||||
|
searchBar.addEventListener('input', function() {
|
||||||
|
var searchValue = searchBar.value.toLowerCase().replace(/\*/g, '.*');
|
||||||
|
|
||||||
|
var regex = new RegExp(searchValue);
|
||||||
|
for (var i = 0; i < links.length; i++) {
|
||||||
|
var currentLink = links[i];
|
||||||
|
var linkText = currentLink.textContent.toLowerCase();
|
||||||
|
|
||||||
|
if (linkText.match(regex)) {
|
||||||
|
currentLink.style.display = '';
|
||||||
|
} else {
|
||||||
|
currentLink.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
35307
search/showsother.html
Normal file
35307
search/showsother.html
Normal file
File diff suppressed because it is too large
Load Diff
11792
search/showsrarbg.html
Normal file
11792
search/showsrarbg.html
Normal file
File diff suppressed because it is too large
Load Diff
49453
search/web.html
Normal file
49453
search/web.html
Normal file
File diff suppressed because it is too large
Load Diff
48972
sorted/-vxt.txt
Normal file
48972
sorted/-vxt.txt
Normal file
File diff suppressed because it is too large
Load Diff
10261
sorted/remux.txt
Normal file
10261
sorted/remux.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
xrmb/xrmbcsv.7z.001
Normal file
BIN
xrmb/xrmbcsv.7z.001
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.002
Normal file
BIN
xrmb/xrmbcsv.7z.002
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.003
Normal file
BIN
xrmb/xrmbcsv.7z.003
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.004
Normal file
BIN
xrmb/xrmbcsv.7z.004
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.005
Normal file
BIN
xrmb/xrmbcsv.7z.005
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.006
Normal file
BIN
xrmb/xrmbcsv.7z.006
Normal file
Binary file not shown.
BIN
xrmb/xrmbcsv.7z.007
Normal file
BIN
xrmb/xrmbcsv.7z.007
Normal file
Binary file not shown.
2255
xrmbcategories/xrmb-ebooks.txt
Normal file
2255
xrmbcategories/xrmb-ebooks.txt
Normal file
File diff suppressed because it is too large
Load Diff
37758
xrmbcategories/xrmb-games.txt
Normal file
37758
xrmbcategories/xrmb-games.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
xrmbcategories/xrmb-movies.7z.001
Normal file
BIN
xrmbcategories/xrmb-movies.7z.001
Normal file
Binary file not shown.
108110
xrmbcategories/xrmb-music.txt
Normal file
108110
xrmbcategories/xrmb-music.txt
Normal file
File diff suppressed because it is too large
Load Diff
3117
xrmbcategories/xrmb-software.txt
Normal file
3117
xrmbcategories/xrmb-software.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
xrmbcategories/xrmb-tv.7z.001
Normal file
BIN
xrmbcategories/xrmb-tv.7z.001
Normal file
Binary file not shown.
BIN
xrmbcategories/xrmb-xxx.7z.001
Normal file
BIN
xrmbcategories/xrmb-xxx.7z.001
Normal file
Binary file not shown.
BIN
xrmbcategories/xrmb-xxx.7z.002
Normal file
BIN
xrmbcategories/xrmb-xxx.7z.002
Normal file
Binary file not shown.
Reference in New Issue
Block a user