freespeech 1.0.87 → 1.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +15 -19
- data/VERSION_NUMBER +1 -1
- data/{other/cleanup → cleanup} +0 -1
- data/documentation/page +1 -2
- data/gem_data/VERSION_NUMBER +1 -1
- data/index.html +89 -91
- data/other/experimental_code/ABOUT_S +10 -1
- data/other/experimental_code/a/a.out +0 -0
- data/other/experimental_code/a/hello_world +0 -0
- data/other/experimental_code/a/six +0 -0
- data/other/experimental_code/c_program_faster +0 -0
- data/other/experimental_code/odi +10 -4
- data/other/experimental_code/orig +20 -11
- data/other/experimental_code/pr.rb +1 -1
- metadata +8 -5
- /data/other/experimental_code/{description_of_what_ive_done_old.pdf → Resume.pdf} +0 -0
- /data/other/experimental_code/{merge.rb → merge} +0 -0
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
This is the entire stock history for the entire toronto stock exchange
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
|
|
3
5
|
This information is given out very publically from many different sources and websites.
|
|
4
6
|
|
|
7
|
+
|
|
8
|
+
|
|
5
9
|
Use this information for any purpose within reason.
|
|
6
10
|
|
|
11
|
+
|
|
12
|
+
|
|
7
13
|
I do not condone or support any illegal activity.
|
|
8
14
|
|
|
9
|
-
|
|
15
|
+
|
|
16
|
+
If I should or need to remove this from this repository, then please contact me and I can do so.
|
|
17
|
+
|
|
18
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/other/experimental_code/odi
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
cd
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
|
|
4
|
+
for i in Desktop/*; do gio set -t string "$i" metadata::caja-icon-position 00,00 ; caja -q &>/dev/null; done
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
a
|
|
5
|
-
a += (
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
|
|
4
|
+
a= ('a' .. 'z').to_a
|
|
5
|
+
a += ('A' .. 'Z').to_a
|
|
6
|
+
a += (0 .. 9).to_a
|
|
7
|
+
foo = (((0..199).to_a.map do |i|
|
|
8
|
+
a.sample.to_s
|
|
8
9
|
end).join)
|
|
9
10
|
|
|
10
|
-
main_text =
|
|
11
|
+
main_text = <<EOF
|
|
11
12
|
From: <gregorycohenvideos@gmail.com>
|
|
12
13
|
To: gregorycohenvideos@gmail.com
|
|
13
14
|
MIME-Version: 1.0
|
|
@@ -18,11 +19,15 @@ Content-Type: text/plain; charset=utf-8
|
|
|
18
19
|
Content-Transfer-Encoding: 7bit\n\nMessage\n
|
|
19
20
|
EOF
|
|
20
21
|
|
|
22
|
+
|
|
21
23
|
for arg in ARGV; file_text = File.read arg
|
|
22
|
-
|
|
23
|
-
|
|
24
|
+
if file_text == foo
|
|
25
|
+
raise
|
|
24
26
|
end
|
|
25
|
-
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
main_text += <<EOF
|
|
26
31
|
|
|
27
32
|
--#{foo}
|
|
28
33
|
Content-Disposition: attachment; filename="#{arg}"
|
|
@@ -30,11 +35,15 @@ Content-Type: text/plain
|
|
|
30
35
|
|
|
31
36
|
#{file_text}
|
|
32
37
|
|
|
33
|
-
EOF
|
|
38
|
+
EOF
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
end
|
|
34
42
|
|
|
35
43
|
main_text += "--#{foo}--"
|
|
36
44
|
puts main_text
|
|
37
45
|
|
|
38
46
|
IO.popen("himalaya send", "w") do |f|
|
|
39
|
-
|
|
47
|
+
f.print main_text.gsub("\n", "\r\n")
|
|
40
48
|
end
|
|
49
|
+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: freespeech
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.88
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregory Cohen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-06-
|
|
11
|
+
date: 2023-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |+
|
|
14
14
|
Trying to help with democracy.
|
|
@@ -132,6 +132,7 @@ files:
|
|
|
132
132
|
- "./bin/yellow_bold"
|
|
133
133
|
- "./bin/yellow_bold_underline"
|
|
134
134
|
- "./bin/yellow_underline"
|
|
135
|
+
- "./cleanup"
|
|
135
136
|
- "./democracy.gemspec"
|
|
136
137
|
- "./discourse generator 1/PROGRAM.rb"
|
|
137
138
|
- "./discourse generator 1/RANDOM_INPUT_TEST_OUT"
|
|
@@ -23290,7 +23291,6 @@ files:
|
|
|
23290
23291
|
- "./other/best_programming_language/emeraldc.cr"
|
|
23291
23292
|
- "./other/best_programming_language/example.c"
|
|
23292
23293
|
- "./other/best_programming_language/out_0.c"
|
|
23293
|
-
- "./other/cleanup"
|
|
23294
23294
|
- "./other/democracy.gemspec"
|
|
23295
23295
|
- "./other/discourse_generator_desktop_widget/.qmake.stash"
|
|
23296
23296
|
- "./other/discourse_generator_desktop_widget/a.cpp"
|
|
@@ -23310,7 +23310,10 @@ files:
|
|
|
23310
23310
|
- "./other/emerald-browser/src/ss.h"
|
|
23311
23311
|
- "./other/emerald-browser/test/a.cpp"
|
|
23312
23312
|
- "./other/experimental_code/ABOUT_S"
|
|
23313
|
+
- "./other/experimental_code/Resume.pdf"
|
|
23313
23314
|
- "./other/experimental_code/a/a (1).tar.gz"
|
|
23315
|
+
- "./other/experimental_code/a/a.out"
|
|
23316
|
+
- "./other/experimental_code/a/hello_world"
|
|
23314
23317
|
- "./other/experimental_code/a/help"
|
|
23315
23318
|
- "./other/experimental_code/a/main_v1.cpp"
|
|
23316
23319
|
- "./other/experimental_code/a/my_libs_gregory/.libs/mod_my_libs_gregory.lai"
|
|
@@ -23322,8 +23325,8 @@ files:
|
|
|
23322
23325
|
- "./other/experimental_code/a/nginx.conf"
|
|
23323
23326
|
- "./other/experimental_code/a/six"
|
|
23324
23327
|
- "./other/experimental_code/c_prog"
|
|
23328
|
+
- "./other/experimental_code/c_program_faster"
|
|
23325
23329
|
- "./other/experimental_code/crypto"
|
|
23326
|
-
- "./other/experimental_code/description_of_what_ive_done_old.pdf"
|
|
23327
23330
|
- "./other/experimental_code/find_abs_best"
|
|
23328
23331
|
- "./other/experimental_code/get_data"
|
|
23329
23332
|
- "./other/experimental_code/github"
|
|
@@ -23332,7 +23335,7 @@ files:
|
|
|
23332
23335
|
- "./other/experimental_code/loop.js"
|
|
23333
23336
|
- "./other/experimental_code/m.c"
|
|
23334
23337
|
- "./other/experimental_code/man/foo.rb"
|
|
23335
|
-
- "./other/experimental_code/merge
|
|
23338
|
+
- "./other/experimental_code/merge"
|
|
23336
23339
|
- "./other/experimental_code/odi"
|
|
23337
23340
|
- "./other/experimental_code/orig"
|
|
23338
23341
|
- "./other/experimental_code/pr.rb"
|
|
File without changes
|
|
File without changes
|