Jump to content
aelius

Read the fucking manuals

Recommended Posts

@nedo: Raman permanent si o sa mai adaug. Vad ca a dat "randament" postul asta aici si am gasit mai multi "colegi" dispusi sa ma ajute.

@Paul4games: Sigur, poti da PM in caz ca link-ul nu are banda sau este acasa, sau poti posta link-ul aici, le luam si le punem in acelasi loc.

@flux: Multumesc

@black01: Nu sunt facute de mine, sunt adunate dupa internet si le-am avut acasa. Daca tot le-am luat, am zis sa le fac publice pentru a se bucura toata lumea de informatie. Poti face ce vrei cu ele, logic.

Probabil ca o sa gasim o metoda buna de a le ordona si a putea cauta cand este nevoie. Deocamdata "sunt varsate" intr-un director cu autoindex.

Link to comment
Share on other sites

Poate vrei sa folosesti asta,poate cuiva ii trebuie doar o carte :) . Cine stie poate vrei sa o folosesti


<?php
function link_my_dir($directory , $ignore = array() , $exceptions = array("." , "..")){
$out = "";
if ($handle = opendir($directory)) {
$tokens = explode(DIRECTORY_SEPARATOR , $directory);
$out .= '<div class="push">';
if(!empty($ignore)){
$out .= $tokens[count($tokens) - 1 ].'<br/>';
$out .= '<div class="push">';
}
while (false !== ($file = readdir($handle))) {
if (!in_array($file,$exceptions)) {
if(is_dir($directory.DIRECTORY_SEPARATOR.$file) && !in_array($directory.DIRECTORY_SEPARATOR.$file , $ignore)){
$ignore[] = $directory.DIRECTORY_SEPARATOR.$file;
$out .= link_my_dir($directory.DIRECTORY_SEPARATOR.$file , $ignore);
}else{
$out .= '<a href="'.$directory.DIRECTORY_SEPARATOR.$file.'">'.$file.'</a><br/>';
}
}
}
if(!empty($ignore)){
$out .= '</div>';
}
$out .= '</div>';
closedir($handle);
}
return $out;
}

?>
<html lang="en">
<meta charset="UTF-8" />
<title>Archive</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
function startDownload(file_path)
{
window.open(file_path,'Download');
}

$(document).ready(function(){
$("a").live('click',function(event){
startDownload($(this).attr("href"));
});
});

</script>
<style>
.push{
margin-left:25px;
}

body{
background-color:#fff;
text-align:left;
color:#444;
}

a{
text-decoration:none;
}

a:hover{
color:red;
}
</style>
<body>

<?php
$dir_path = "var/www";// edit aici
echo link_my_dir($dir_path);

?>


</body>
</html>

Link to comment
Share on other sites

From @Kabron

Beginning_Ruby__From_Novice_to_Professional__Second_Edition__Beginning_from_Novice_to_Professional http://docs.rtfm.us/Users/Kabron/__Beginning_Ruby__From_Novice_to_Professional__Second_Edition__Beginning_from_Novice_to_Professional_.pdf

Gray_Hat_Hacking_The_Ethical_Hackers_Handbook__3rd_Edition http://docs.rtfm.us/Users/Kabron/__Gray_Hat_Hacking_The_Ethical_Hackers_Handbook__3rd_Edition.pdf

Managed_Code_Rootkits__Hooking_Into_Runtime_Environments http://docs.rtfm.us/Users/Kabron/__Managed_Code_Rootkits__Hooking_Into_Runtime_Environments.pdf

Secrets_and_Lies__Digital_Security_in_a_Networked_World http://docs.rtfm.us/Users/Kabron/__Secrets_and_Lies__Digital_Security_in_a_Networked_World.pdf

The_Web_Application_Hacker__039_s_Handbook__Finding_and_Exploiting_Security_Flaws http://docs.rtfm.us/Users/Kabron/__The_Web_Application_Hacker__039_s_Handbook__Finding_and_Exploiting_Security_Flaws.pdf

Webbots__Spiders__and_Screen_Scrapers__A_Guide_to_Developing_Internet_Agents_with_PHP_CURL http://docs.rtfm.us/Users/Kabron/__Webbots__Spiders__and_Screen_Scrapers__A_Guide_to_Developing_Internet_Agents_with_PHP_CURL.pdf

User note: "am uitat s? precizez c? Secrets & Lies Digital Security in a Networked World nu este complet? sunt 423 de pagini în total , varianta de pe LNU este de 200+ , voi face update la ea imediat ce apare , pân? atunci citim a?a"

Thanks!

// Vad ca a dat randament initiativa asta. Astept PM de la oricine doreste sa contribuie. Cartile o sa fie puse in Index of /Users/ deocamdata (pana gasim o solutie buna de indexare si sortare a lor)

Link to comment
Share on other sites

Salut,

Scriptul tau este super, insa daca il pui "sa proceseze" mii de fisiere, o sa stea minute intregi. M-am apucat sa fac o baza de date mysql. O sa fac un thread separat si daca doreste cineva sa contribuie, este binevenit.

Multumesc

Poate vrei sa folosesti asta,poate cuiva ii trebuie doar o carte :) . Cine stie poate vrei sa o folosesti


<?php
function link_my_dir($directory , $ignore = array() , $exceptions = array("." , "..")){
$out = "";
if ($handle = opendir($directory)) {
$tokens = explode(DIRECTORY_SEPARATOR , $directory);
$out .= '<div class="push">';
if(!empty($ignore)){
$out .= $tokens[count($tokens) - 1 ].'<br/>';
$out .= '<div class="push">';
}
while (false !== ($file = readdir($handle))) {
if (!in_array($file,$exceptions)) {
if(is_dir($directory.DIRECTORY_SEPARATOR.$file) && !in_array($directory.DIRECTORY_SEPARATOR.$file , $ignore)){
$ignore[] = $directory.DIRECTORY_SEPARATOR.$file;
$out .= link_my_dir($directory.DIRECTORY_SEPARATOR.$file , $ignore);
}else{
$out .= '<a href="'.$directory.DIRECTORY_SEPARATOR.$file.'">'.$file.'</a><br/>';
}
}
}
if(!empty($ignore)){
$out .= '</div>';
}
$out .= '</div>';
closedir($handle);
}
return $out;
}

?>
<html lang="en">
<meta charset="UTF-8" />
<title>Archive</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
function startDownload(file_path)
{
window.open(file_path,'Download');
}

$(document).ready(function(){
$("a").live('click',function(event){
startDownload($(this).attr("href"));
});
});

</script>
<style>
.push{
margin-left:25px;
}

body{
background-color:#fff;
text-align:left;
color:#444;
}

a{
text-decoration:none;
}

a:hover{
color:red;
}
</style>
<body>

<?php
$dir_path = "var/www";// edit aici
echo link_my_dir($dir_path);

?>


</body>
</html>

Link to comment
Share on other sites

*bump*

O mic? parte din colec?ie

ML (39.3Mb)

http://dl.transfer.ro/ML-transfer_RO-29feb-1eaa6e.zip

noSQL (68.6Mb)

http://dl.transfer.ro/noSQL-transfer_RO-29feb-fe4b4b.zip

Compiler Theory (414.4Mb)

http://dl.transfer.ro/Compiler_Theory-transfer_RO-29feb-d19cad.zip

Algorithms and Data Structures (536.8Mb)

http://dl.transfer.ro/Algorithms_and_Data_Structures-transfer_RO-29feb-e5d78a.zip

Nu le mai urc pe ifile.it.

Desc?rca?i-le cât sunt linkurile calde! ;-)

@Tex: eu a? vrea s? contribui cu ebooks care nu sunt deja pe rtfm.

Te ajut? dac? î?i trimit un fi?ier care are urm?toarea form? pentru procesul de "avem/n-avem"?

f2799f147d2517c77207cca095719c298f4fc28e ./__Illustrating_C__Revised_edition__ANSI_ISO_Version_.pdf

0a3cd7d7e8ef3cbde5faed5fd596a1e9d033d9a6 ./C in A Nutshell 2006.chm

31805af9386ad684b8e3c6ac3638cf56ba58f39d ./C Pocket Reference 2002.chm

decdf409e642af0a975b35c6c3f8add16a83fcb0 ./C_programming_in_Linux.pdf

79e59ace08e7cd5dd2a3ff152134e566db7a3a0c ./C Programming - Just the Faqs.pdf

3775014ca6be04524d6dd49bc4b7ed31b89cbfee ./C_Traps_Pitfalls.pdf

1146505b19c868c14275bdf17e7be6d29abdb448 ./CUDA by Example.pdf

9330aaadb8c69522afa083e7443bf44ff1518bb7 ./C with excellence.djvu

a15808b1b789d9c5f24e0d5a337c8df2e26d989a ./Data Structures and Algorithm Analysis in C - Mark Allen Weiss.chm

716fa8549a6249779e054343862bc3a38dcbed18 ./Embedded C.pdf

a7419ef2196728e28416fc0f995be747857a8f28 ./Expert C Programming.pdf

ed52b337ffd60777b2c578b1dc3bf2d444057a03 ./Kernighan & Ritchie - The C Programming Language.pdf

ccef62f43f55a77952d5940a199c561ad1ceebb5 ./K& R - solutions.zip

bb7e10b538111d5e41c182351b8df9445aea076d ./Mastering Algorithms with C.chm

8c8e87715b99bf9fe761960244c6ec0e8258fb81 ./Modern_Compiler_Implementation_in_C.djvu

59e4574e6cfdb8e49f224a3c0209c20508f2fa39 ./more_programming_pearls.pdf

0b9edaf088a62b74d43f80123560945a6ceaf1a8 ./Pointers_on_C.pdf

b38fa4acabf3e465fa7f62a78b9cf74dd3156c3d ./Practical C Programming. 3rd Ed.pdf

cc4f260199861b56d456c2241cf4322378a24f46 ./Programmer's Guite to nCurses.pdf

1b044328f7931c2f9cdb00889c2b1aadafbc8172 ./Programming in C.pdf

f1c1561944c3f8a2701ca93df3ee8506d8b11eb8 ./Programming in C 3rd Edition.pdf

b67fa319a0c0ee68d0c3f15af2c2d72acca7d97f ./Programming in C - UNIX System Calls and Subroutines using C 1999.chm

a1b861deb73b8a394339b4e368f070ee87c463d4 ./programming pearls 1st.pdf

29d4589e6e36e15d308e217a04010ad8a817fcc4 ./Programming Pearls.pdf

85dee996b03a36a08c91522ce8893e0e9af5f24b ./TCP IP Sockets In C.pdf

e4f7950146f0e3bea18b128a8ff76447b9923fc7 ./The C Puzzle Book.pdf

3863005bc75f0a78e2371c1f69ceb1bb0f9bc1c7 ./The_New_C_Standard_A_Cultural_and_Economic_Commentary.pdf

8084806c58c57f28cf8303401e8325c2ecb050f9 ./The Standard C Library.djvu

etc.

Era bun ?i un ISBN extractor + Amazon API foo, dar tot amân din lips? de timp.

Link to comment
Share on other sites

Build Your First Website: Getting Started with HTML & CSS - CURS

Build Your Own Web Site, 2nd Ed. - E-Book

Valoare totala 49$ - gratis limitat pe geekgam.es .

Regulile sunt simple,joci 3 jocuri pe zi si ai in fiecare zi cate o carte/curs.

EDIT: Mirror aici - http://www.mediafire.com/view/?9ww64shn087ijt1

Edited by GraphLog
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...