|
|
|
15
inxilpro
This is a random password generator that produces understandable passwords based on word lists. I've only included a 3 entry world list because you should chose a list based on your password requirements and your users. If you need to generate passwords that are 14 characters in length, you will want a different list than if you're generating 8 character passwords. And depending on your users, you may want to use certain lists. The list I use is about 4000 words that are 5-7 characters long, all well-known words that have had potentially objectionable content removed. For security reasons I don't want to include this list.
A note on security: though this generates relatively strong passwords for the average user, they are particularly susceptible to brute-force attacks. This is even more an issue if somehow your word list gets compromised. I would not recommend using this function for anything where a highly secure password is needed.
A note on choosing your list: You'll also see that I've built the system to avoid generating passwords with zeros and ones in them. This is because zero and upper-case "o" can be confused as can one, lower-case "L" and upper-case "i." When choosing my word list I was also sure to strip out all words that start with the letter "o" or "i" (to prevent the optional ucfirst() from creating 0/O and I/1 confusion) and words that contain the letter "L" (to prevent l/1 confusion). I find that this greatly helps with preventing confusion, but again weakens the security of the passwords some. It's your choice.
A note on security: though this generates relatively strong passwords for the average user, they are particularly susceptible to brute-force attacks. This is even more an issue if somehow your word list gets compromised. I would not recommend using this function for anything where a highly secure password is needed.
A note on choosing your list: You'll also see that I've built the system to avoid generating passwords with zeros and ones in them. This is because zero and upper-case "o" can be confused as can one, lower-case "L" and upper-case "i." When choosing my word list I was also sure to strip out all words that start with the letter "o" or "i" (to prevent the optional ucfirst() from creating 0/O and I/1 confusion) and words that contain the letter "L" (to prevent l/1 confusion). I find that this greatly helps with preventing confusion, but again weakens the security of the passwords some. It's your choice.
2
Here's a code block about iban validation with php.
1
Hello Coders,
Here's a useful php code block for your projects to control server status.
You can report a server status result by using these codes. I hope you'll like it. Also; i suggest you to rest for a while on 2 Kişilik Oyunlar and Oyunlar site to fun. I think you'll like them. I wish you success on your softwares.
Best codings!
Here's a useful php code block for your projects to control server status.
You can report a server status result by using these codes. I hope you'll like it. Also; i suggest you to rest for a while on 2 Kişilik Oyunlar and Oyunlar site to fun. I think you'll like them. I wish you success on your softwares.
Best codings!
-2
Here's a code block for your projects to get shorter long urls.
It can be used any type of your projects. I hope you'll like it; i suggest you to take information about ozon tedavisi from here.
Have a nice work.
It can be used any type of your projects. I hope you'll like it; i suggest you to take information about ozon tedavisi from here.
Have a nice work.
-2
You can use this script in your projects when you need an image upload function. It checks file type, file size and error report. I also want you to check giochi di spongebob and gratis mahjong too. I hope you will like this code line.
-2
Hello coders,
I want to share with you another codeblock that you can use to resize an image in your projects.
I want to share with you another codeblock that you can use to resize an image in your projects.
-2
Hi coders,
Here's a code block that you can use it in your projects easily. It provides you to show random images.
I hope that you'll like it. I'll also use it in 2 spieler spiele and gute spiele web sites. You can follow them from it.
Best wishes.
Here's a code block that you can use it in your projects easily. It provides you to show random images.
I hope that you'll like it. I'll also use it in 2 spieler spiele and gute spiele web sites. You can follow them from it.
Best wishes.
-2
Hello Php Coders,
We are together after a while. I'll share with you a special function that you can take a website's information with it. You can also check this url to take a look on denizli kız yurdu web pages.
I hope this codeblok will be useful for your projects.
Best codings.
We are together after a while. I'll share with you a special function that you can take a website's information with it. You can also check this url to take a look on denizli kız yurdu web pages.
I hope this codeblok will be useful for your projects.
Best codings.
14
daysBeteenDates will calculate the number of days between 2 dates in the form of 'YYYY-MM-DD'.
6
The resize_image function allows you to resize a GIF, JPEG or PNG file to any dimension you wish and put an optional black border around the image. Here's an explanation of the arguements:
$image_path: The complete path to the image to be resized
$max_width: Maximum width of the resized image. Leave 0 if you want to specify only the height and have the width auto-scale.
$max_height: Maximum height of the resized image. Leave 0 if you want to specify only the width and have the height auto-scale.
$file_prefix: This will prepend a string onto the resized image filename. If you want to create a thumbnail image and keep the original, set $file_prefix = 'thumb'.
$dir: Allows you to save the resized image to a sub directory under the $image_path directory. If you want to save thumbnail images to images/thumbs, set $dir = 'thumbs'.
$border: boolean, 1 = border, 0 = no border
$mime: Image mime type. (image/jpeg, image/gif, image/png)
$image_path: The complete path to the image to be resized
$max_width: Maximum width of the resized image. Leave 0 if you want to specify only the height and have the width auto-scale.
$max_height: Maximum height of the resized image. Leave 0 if you want to specify only the width and have the height auto-scale.
$file_prefix: This will prepend a string onto the resized image filename. If you want to create a thumbnail image and keep the original, set $file_prefix = 'thumb'.
$dir: Allows you to save the resized image to a sub directory under the $image_path directory. If you want to save thumbnail images to images/thumbs, set $dir = 'thumbs'.
$border: boolean, 1 = border, 0 = no border
$mime: Image mime type. (image/jpeg, image/gif, image/png)







