The Lounge

[Boredom] Wallpaper stealer | HD Walleys!

Submitted by Sozin, , Thread ID: 2783

Thread Closed
12-04-2015, 09:12 PM
#1
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [Boredom] Wallpaper stealer | HD Walleys!

#2
12-04-2015, 09:12 PM
AmN Wrote:
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<

In your blog I found a spanish word "Adios", do you speak spanish?

RE: [Boredom] Wallpaper stealer | HD Walleys!

#3
Gimme the script and ill give you the chocolate :3
| A | v4hl| Addicted | Senpai | Sui | Sensei | H | fdigl |


RE: [Boredom] Wallpaper stealer | HD Walleys!

OP
#4
12-04-2015, 09:14 PM
AndresXZ09 Wrote:
12-04-2015, 09:12 PM
AmN Wrote:
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<

In your blog I found a spanish word "Adios", do you speak spanish?

Nope. Learned from Dante.
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [Boredom] Wallpaper stealer | HD Walleys!

This post was last modified: 12-04-2015, 09:48 PM by Tropical
#5
12-04-2015, 09:12 PM
AmN Wrote:
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<

About regex, how do you write something like this where it pulls images and such?

RE: [Boredom] Wallpaper stealer | HD Walleys!

Warned
#6
Nice idea. Will use it in the future.
Thanks

RE: [Boredom] Wallpaper stealer | HD Walleys!

#7
I'm more interested that you own a website than anything else Smile
Please read the award requirements here before applying for them.
Rules and Regulations | Support Section | How to use Hide Tags
Don't message me to join a group, simply request to join one here.

RE: [Boredom] Wallpaper stealer | HD Walleys!

OP
#8
12-04-2015, 09:32 PM
Tropical Wrote:
12-04-2015, 09:12 PM
AmN Wrote:
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<

About regex, how do you write something like this where it pulls images and such?

Google Regex.

$regex = '#(<img\ssrc="([\d]+)")#;
preg_match_all( $regex, $string, $matches);
foreach( $matches[1] AS $match)
{
echo "Src of image: {$match}";
}

above code will match all strings have an <img src="link"> type of image src in the given HTML code (here $string)
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.

RE: [Boredom] Wallpaper stealer | HD Walleys!

#9
13-04-2015, 08:07 AM
AmN Wrote:
12-04-2015, 09:32 PM
Tropical Wrote:
12-04-2015, 09:12 PM
AmN Wrote:
So I was bored to death and I decided to steal all the wallpapers of a website.

http://askamn.com/wallpapers.php

PRess F5 and you will get new ones.

*No noob. I did not download and upload those millions of images to my server. I just wrote a regex in php and pulled the images from there <.<

About regex, how do you write something like this where it pulls images and such?

Google Regex.

$regex = '#(<img\ssrc="([\d]+)")#;
preg_match_all( $regex, $string, $matches);
foreach( $matches[1] AS $match)
{
echo "Src of image: {$match}";
}

above code will match all strings have an <img src="link"> type of image src in the given HTML code (here $string)

Could you post a tutorial? I'm kind of noob at this ;p

RE: [Boredom] Wallpaper stealer | HD Walleys!

OP
#10
Yeah, soon I wil.
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.


Users browsing this thread: 5 Guest(s)