The Lounge

[Boredom] Wallpaper stealer | HD Walleys!

Submitted by Sozin, , Thread ID: 2783

Thread Closed
Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
374
Credits:
11K
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!

AndresXZ09
Closed Account
Level:
0
Reputation:
30
Posts:
1.22K
Likes:
139
Credits:
1.51K
12-04-2015, 09:14 PM
#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!

linkzy
No pressure, no diamonds
Level:
0
Reputation:
181
Posts:
5.34K
Likes:
341
Credits:
54
12-04-2015, 09:15 PM
#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!

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
374
Credits:
11K
OP
12-04-2015, 09:15 PM
#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!

Tropical
Fulltime Member
Level:
0
Reputation:
35
Posts:
1.04K
Likes:
54
Credits:
117
12-04-2015, 09:32 PM
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!

A
User Icon
\(_o)/
Level:
0
Reputation:
206
Posts:
5.52K
Likes:
1.24K
Credits:
50.7K
12-04-2015, 09:43 PM
Warned
#6
Nice idea. Will use it in the future.
Thanks

RE: [Boredom] Wallpaper stealer | HD Walleys!

Nasyr
Forum Janitor
Administrators
Level:
54
Reputation:
284
Posts:
8.05K
Likes:
959
Credits:
80
12-04-2015, 10:23 PM
#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!

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
374
Credits:
11K
OP
13-04-2015, 08:07 AM
#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!

Tom
Tom yum soup <3
Prime
Level:
0
Reputation:
45
Posts:
1.51K
Likes:
97
Credits:
1.62K
13-04-2015, 11:54 AM
#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!

Sozin
Nan Ihier Gelair Mordor
Divine
Level:
0
Reputation:
91
Posts:
2.33K
Likes:
374
Credits:
11K
OP
13-04-2015, 01:49 PM
#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: 1 Guest(s)