Skip to content

Commit 06a7b35

Browse files
committed
Replace http:// with https://
1 parent 31075eb commit 06a7b35

File tree

177 files changed

+216
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+216
-217
lines changed

Analyzers/perl_code_analyzer.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 04 January 2015
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
#
99
## Analyze your Perl code and see whether you are or not a true Perl hacker!
1010
#
1111

1212
# More info about this script:
13-
# http://trizenx.blogspot.com/2015/01/perl-code-analyzer.html
13+
# https://trizenx.blogspot.com/2015/01/perl-code-analyzer.html
1414

1515
use utf8;
1616
use 5.010;

Analyzers/word_suffix_top.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 05 April 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
# Word suffix top
99

Audio/wave-cmp.pl

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 22 March 2015
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# Find similar audio files by comparing their waveforms.
99

1010
# Review:
11-
# http://trizenx.blogspot.ro/2015/03/similar-audio-files.html
11+
# https://trizenx.blogspot.com/2015/03/similar-audio-files.html
1212

1313
#
1414
## The waveform is processed block by block:
@@ -106,7 +106,7 @@ sub version {
106106
my $limit_x = $width - $sq_x;
107107
my $limit_y = int($height / 2) - $sq_y; # analyze only the first half
108108

109-
# Source: http://en.wikipedia.org/wiki/Audio_file_format#List_of_formats
109+
# Source: https://en.wikipedia.org/wiki/Audio_file_format#List_of_formats
110110
my @audio_formats = qw(
111111
3gp
112112
act

Audio/wave-cmp2.pl

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
# License: GPLv3
55
# Date: 22 March 2015
66
# Edit: 04 September 2015
7-
# Website: http://github.com/trizen
7+
# Website: https://github.com/trizen
88

99
# Find similar audio files by comparing their waveforms.
1010

1111
# Review:
12-
# http://trizenx.blogspot.ro/2015/03/similar-audio-files.html
12+
# https://trizenx.blogspot.com/2015/03/similar-audio-files.html
1313

1414
# Requirements:
1515
# - ffmpeg: https://ffmpeg.org
@@ -85,7 +85,7 @@ sub version {
8585

8686
my $size = $width * $height;
8787

88-
# Source: http://en.wikipedia.org/wiki/Audio_file_format#List_of_formats
88+
# Source: https://en.wikipedia.org/wiki/Audio_file_format#List_of_formats
8989
my @audio_formats = qw(
9090
3gp
9191
act

Compression/lzhc_file_compression.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# License: GPLv3
55
# Created on: 21 May 2014
66
# Latest edit on: 26 April 2015
7-
# Website: http://github.com/trizen
7+
# Website: https://github.com/trizen
88

99
# A new type of LZ compression + Huffman coding, featuring a very short decompression time.
1010

Compression/tac_file_compression.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 01 May 2015
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
#
99
## The arithmetic coding algorithm.
1010
#
1111

12-
# See: http://en.wikipedia.org/wiki/Arithmetic_coding#Arithmetic_coding_as_a_generalized_change_of_radix
12+
# See: https://en.wikipedia.org/wiki/Arithmetic_coding#Arithmetic_coding_as_a_generalized_change_of_radix
1313

1414
use 5.010;
1515
use strict;

Compression/tzip2_file_compression.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 12 August 2013
6-
# Website: http://trizenx.blogspot.com
6+
# Website: https://trizenx.blogspot.com
77

88
#
99
## A very simple file compressor.

Compression/tzip_file_compression.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Șuteu "Trizen" Daniel
44
# License: GPLv3
55
# Date: 12 August 2013
6-
# Website: http://trizenx.blogspot.com
6+
# Website: https://trizenx.blogspot.com
77

88
#
99
## A very simple file compressor.

Decoders/base64_decoding-tutorial.pl

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# This short tutorial explains the basics behind the base64 decoding
55
# Written by Trizen under the GPL.
66
#
7-
# See also: http://en.wikipedia.org/wiki/Uuencoding
8-
# http://en.wikipedia.org/wiki/Base64
7+
# See also: https://en.wikipedia.org/wiki/Uuencoding
8+
# https://en.wikipedia.org/wiki/Base64
99

1010
my $base64 = 'SnVzdCBhbm90aGVyIFBlcmwgaGFja2VyLAo='; # base64
1111

@@ -36,7 +36,7 @@
3636
# print unpack('u', ':2G5S="!A;F]T:&5R(%!E<FP@:&%C:V5R+ H');
3737

3838
# Compact code 1 (with substitution)
39-
# Code from http://en.wikipedia.org/wiki/Uuencoding
39+
# Code from https://en.wikipedia.org/wiki/Uuencoding
4040
sub base64_decode_1 {
4141
my ($base64) = @_;
4242
$base64 =~ tr|A-Za-z0-9+=/||cd; # remove non-base64 chars
@@ -89,7 +89,7 @@ sub base64_decode_3 {
8989

9090
# Faster still :)
9191
# Coded by Gisle Aas
92-
# http://search.cpan.org/~gaas/MIME-Base64-Perl-1.00/lib/MIME/Base64/Perl.pm
92+
# https://metacpan.org/release/GAAS/MIME-Base64-Perl-1.00/source/lib/MIME/Base64/Perl.pm
9393
sub base64_decode_4 {
9494
my ($str) = @_;
9595
$str =~ tr|A-Za-z0-9+=/||cd; # remove non-base64 chars

Decoders/cnp_info.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# CNP info
99

1010
# See also:
11-
# http://ro.wikipedia.org/wiki/Cod_numeric_personal
11+
# https://ro.wikipedia.org/wiki/Cod_numeric_personal
1212

1313
use 5.010;
1414
use strict;

Encoding/int2bytes.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Șuteu "Trizen" Daniel
44
# License: GPLv3
55
# Date: 18 August 2013
6-
# http://trizenx.blogspot.com
6+
# https://trizenx.blogspot.com
77

88
# Get all the shortest possible combinations of byte values for a large integer.
99

Encoding/length_encoder.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 04 May 2015
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# A very basic length encoder
99

Encoding/tlen_encoding.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 04 May 2015
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# A very basic length encoder
99

File Readers/n_repeated_lines.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 25 April 2014
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# Print only the lines that repeat n times in one or more files.
99
# usage: perl n_repeated_lines.pl [n] [file1.txt] [...]

File Readers/tailz

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Reads from the end of the file for efficiency.
55

66
# Originally coded by zentara on 06 September 2002:
7-
# http://www.perlmonks.org/index.pl?node_id=195768
7+
# https://www.perlmonks.org/index.pl?node_id=195768
88

99
# Improved by Trizen on 11 February 2012
1010

File Workers/filename_cmp_del.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 16 June 2014
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# Delete files from [del dir] which does NOT exists in [cmp dir]
99
# NOTE: Only the base names are compared, without their extensions!

File Workers/make_filenames_portable.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 16 June 2014
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# Replace unsafe characters with safe characters in filenames
99
# making the files portable to another FS (like FAT32)

File Workers/sub_renamer.pl

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sub help {
4747
$0 -s -p=75 ~/Videos
4848
4949
Copyright (C) 2014 Daniel "Trizen" Șuteu <trizenx\@gmail\.com>
50-
License: GPLv3 or later, at your choice. See <http://www.gnu.org/licenses/gpl>
50+
License: GPLv3 or later, at your choice. See <https://www.gnu.org/licenses/gpl>
5151
HELP
5252

5353
exit($code // 0);
@@ -64,7 +64,7 @@ sub help {
6464
my @dirs = grep { -d } @ARGV;
6565
@dirs || help(2);
6666

67-
# Source: http://en.wikipedia.org/wiki/Video_file_format
67+
# Source: https://en.wikipedia.org/wiki/Video_file_format
6868
my @video_formats = qw(
6969
avi
7070
mp4
@@ -97,7 +97,7 @@ sub help {
9797
yuv
9898
);
9999

100-
# Source: http://en.wikipedia.org/wiki/Subtitle_%28captioning%29#Subtitle_formats
100+
# Source: https://en.wikipedia.org/wiki/Subtitle_%28captioning%29#Subtitle_formats
101101
my @subtitle_formats = qw(
102102
aqt
103103
gsub

Finders/dup_subtr_finder.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 11 December 2013
6-
# http://trizenx.blogspot.com
6+
# https://trizenx.blogspot.com
77

88
# Find the longest duplicated sub-strings inside a string/file (based on a given minimum length).
99

Finders/fsf.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 23 July 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
# Find files which have almost the same content (at least, mathematically).
99

Finders/fsfn.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# the same name in a given path (+Levenshtein distance).
1212

1313
# Review:
14-
# http://trizenx.blogspot.com/2013/06/finding-similar-file-names.html
14+
# https://trizenx.blogspot.com/2013/06/finding-similar-file-names.html
1515

1616
# To move files into another directory, please see:
1717
# https://github.com/trizen/perl-scripts/blob/master/File%20Workers/file-mover.pl

Finders/human-like_finder.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 20 April 2014
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# A smart human-like substring finder
99
# Steps:

Finders/longest_substring.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Finding the longest repeated substring
44

55
# Java code from:
6-
# http://stackoverflow.com/questions/10355103/finding-the-longest-repeated-substring
6+
# https://stackoverflow.com/questions/10355103/finding-the-longest-repeated-substring
77

88
use 5.010;
99
use strict;

Formatters/fstab_beautifier.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 21 March 2014
6-
# http://trizenx.blogspot.com
6+
# https://trizenx.blogspot.com
77

88
# Realign the columns of a space-delimited file (with support for comments and empty lines)
99

GD/abstract_map.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 07 June 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
#
99
## Generate a complex shape using basic mathematics.

GD/black_yellow_number_triangles.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 25 May 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
#
99
## Generate magic triangles with n gaps between numbers

GD/circular_prime_triangle.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 02 April 2016
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
# Generate a triangle with highlighted numbers in the form of: floor(sqrt(prime(i)^2 + i^2))
99

GD/circular_triangle.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 08 June 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
#
99
## Generate a circular triangle based on triangular numbers.

GD/collatz_triangle.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 21 May 2015
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
#
99
## Generate a triangle with the collatz numbers

GD/dancing_shapes.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 30 April 2014
6-
# Website: http://github.com/trizen
6+
# Website: https://github.com/trizen
77

88
# Generate mathematical shapes
99
# -- feel free to play with the numbers --

GD/elementary_cellular_automaton_generalized.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# See also:
1212
# https://en.wikipedia.org/wiki/Cellular_automaton
1313
# https://en.wikipedia.org/wiki/Elementary_cellular_automaton
14-
# http://rosettacode.org/wiki/Elementary_cellular_automaton
14+
# https://rosettacode.org/wiki/Elementary_cellular_automaton
1515

1616
# YouTube lectures:
1717
# https://www.youtube.com/watch?v=S3tYzCPuVsA

GD/factors_of_two_triangle.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 09 August 2016
6-
# http://github.com/trizen
6+
# https://github.com/trizen
77

88
#
99
## Generates a number triangle, highlighting the number of

GD/fgraph.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# License: GPLv3
55
# Date: 02 July 2014
66
# Edit: 15 July 2014
7-
# http://github.com/trizen
7+
# https://github.com/trizen
88

99
# Map a mathematical function on the xOy axis.
1010
# usage: perl fgraph.pl 'function' 'graph-size' 'from' 'to'

GD/fgraph_precision.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# License: GPLv3
55
# Date: 02 July 2014
66
# Edit: 15 July 2014
7-
# http://github.com/trizen
7+
# https://github.com/trizen
88

99
# Map a mathematical function on the xOy axis.
1010

GD/geometric_shapes.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel "Trizen" Șuteu
44
# License: GPLv3
55
# Date: 02th December 2013
6-
# Website: http://trizenx.blgospot.com
6+
# Website: https://trizenx.blgospot.com
77

88
# This script tries to generate geometric shapes with a consistent internal angle size
99

0 commit comments

Comments
 (0)