ezii 0.0.0.1

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.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/ezii-client/Gemfile +6 -0
  3. data/ezii-client/Gemfile.lock +32 -0
  4. data/ezii-client/Procfile +2 -0
  5. data/ezii-client/README.md +16 -0
  6. data/ezii-client/chat.txt +1446 -0
  7. data/ezii-client/config.ru +1 -0
  8. data/ezii-client/fake.rb +5 -0
  9. data/ezii-client/managables/programs/game_aided_manufacturing/functions/base_command.rb +26 -0
  10. data/ezii-client/managables/programs/game_aided_manufacturing/functions/mouse_y_axis_to_3d_z_axis.rb +4 -0
  11. data/ezii-client/managables/programs/game_aided_manufacturing/functions/record_audio_and_send_to_wit.rb +18 -0
  12. data/ezii-client/managables/programs/game_aided_manufacturing/functions/rotate_camera_axis_using_mouse_drag.rb +37 -0
  13. data/ezii-client/managables/programs/game_aided_manufacturing/functions/selection_cube.rb +35 -0
  14. data/ezii-client/managables/programs/game_aided_manufacturing/gam.rb +388 -0
  15. data/ezii-client/managables/programs/game_aided_manufacturing/gems.locked +75 -0
  16. data/ezii-client/managables/programs/game_aided_manufacturing/gems.rb +10 -0
  17. data/ezii-client/managables/programs/game_aided_manufacturing/lib/drb_server.rb +13 -0
  18. data/ezii-client/managables/programs/game_aided_manufacturing/lib/mittsu_monkeypatches/box_geometry.rb +5 -0
  19. data/ezii-client/managables/programs/game_aided_manufacturing/runnable.rb +20 -0
  20. data/ezii-client/managables/programs/game_aided_manufacturing/shapes/cube.rb +29 -0
  21. data/ezii-client/managables/programs/game_aided_manufacturing/sig/runable.rbi +9 -0
  22. data/ezii-client/managables/programs/game_aided_manufacturing/test.sh +5 -0
  23. data/ezii-client/managables/programs/game_aided_manufacturing/test/commands/test_move_cube.rb +18 -0
  24. data/ezii-client/managables/programs/game_aided_manufacturing/test/commands/test_selection_cube.rb +31 -0
  25. data/ezii-client/managables/programs/game_aided_manufacturing/test/test_command_remapping.rb +30 -0
  26. data/ezii-client/managables/programs/game_aided_manufacturing/test/test_helper.rb +75 -0
  27. data/ezii-client/managables/services/chat-bot-integrations/chat.txt +15 -0
  28. data/ezii-client/managables/services/chat-bot-integrations/gems.locked +66 -0
  29. data/ezii-client/managables/services/chat-bot-integrations/gems.rb +18 -0
  30. data/ezii-client/managables/services/chat-bot-integrations/gitter_zircon.rb +644 -0
  31. data/ezii-client/managables/services/chat-bot-integrations/regexes.rb +240 -0
  32. data/ezii-client/managables/services/chat-bot-integrations/setup-mac-os-x.sh +0 -0
  33. data/ezii-client/managables/services/chat-bot-integrations/setup.sh +1 -0
  34. data/ezii-client/managables/services/chat-bot-integrations/start.sh +3 -0
  35. data/ezii-client/managables/services/error-inspect/simplest-log +1 -0
  36. data/ezii-client/managables/services/error-inspect/simplest-log-init +1 -0
  37. data/ezii-client/managables/services/livestream-interactive/Twitch.Tv/ascii_nebuchadnezzar +9 -0
  38. data/ezii-client/managables/services/livestream-interactive/Twitch.Tv/chat.txt +1 -0
  39. data/ezii-client/managables/services/livestream-interactive/Twitch.Tv/twitch_zircon.rb +61 -0
  40. data/ezii-client/managables/services/livestream-interactive/Twitch.Tv/zion_fleet.rb +198 -0
  41. data/ezii-client/managables/services/livestream-interactive/chat.txt +40 -0
  42. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/README.md +3 -0
  43. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/__main__.js +58 -0
  44. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/black-out-random-word.js +74 -0
  45. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/random-sentence.js +57 -0
  46. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/random-wikipedia-page.js +25 -0
  47. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/random-words.js +34 -0
  48. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/rare-enough-word.js +41 -0
  49. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/functions/wikipedia-page.js +35 -0
  50. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/package.json +20 -0
  51. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/statistics/count-word.js +12 -0
  52. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/utils/log-to-natural-database.js +10 -0
  53. data/ezii-client/managables/services/stdlib-dot-com/koma/qanda-api@dev/word2vec-models/test-text8-vector.bin +0 -0
  54. data/ezii-client/managament_interface/gems.locked +13 -0
  55. data/ezii-client/managament_interface/gems.rb +3 -0
  56. data/ezii-client/managament_interface/management_interface +4 -0
  57. data/ezii-client/managament_interface/runnable.rb +30 -0
  58. data/ezii-client/rocknrolla +1 -0
  59. data/ezii-client/start.sh +2 -0
  60. data/ezii-client/test.wav +0 -0
  61. data/ezii-misc/detect-intent-from-git-patch.rb +46 -0
  62. data/ezii-server/Gemfile +23 -0
  63. data/ezii-server/Gemfile.lock +84 -0
  64. data/ezii-server/README.md +13 -0
  65. data/ezii-server/config.ru +2 -0
  66. data/ezii-server/eezee.rb +1243 -0
  67. data/ezii-server/httpsprojecteulernetproblem=155.png +0 -0
  68. data/ezii-server/httpsprojecteulernetproblem=205.png +0 -0
  69. data/ezii-server/httpsprojecteulernetproblem=228.png +0 -0
  70. data/ezii-server/httpsprojecteulernetproblem=262.png +0 -0
  71. data/ezii-server/httpsprojecteulernetproblem=3.png +0 -0
  72. data/ezii-server/httpsprojecteulernetproblem=333.png +0 -0
  73. data/ezii-server/httpsprojecteulernetproblem=334.png +0 -0
  74. data/ezii-server/httpsprojecteulernetproblem=337.png +0 -0
  75. data/ezii-server/httpsprojecteulernetproblem=426.png +0 -0
  76. data/ezii-server/httpsprojecteulernetproblem=442.png +0 -0
  77. data/ezii-server/httpsprojecteulernetproblem=449.png +0 -0
  78. data/ezii-server/httpsprojecteulernetproblem=497.png +0 -0
  79. data/ezii-server/httpsprojecteulernetproblem=51.png +0 -0
  80. data/ezii-server/httpsprojecteulernetproblem=514.png +0 -0
  81. data/ezii-server/httpsprojecteulernetproblem=520.png +0 -0
  82. data/ezii-server/httpsprojecteulernetproblem=571.png +0 -0
  83. data/ezii-server/httpsprojecteulernetproblem=587.png +0 -0
  84. data/ezii-server/httpsprojecteulernetproblem=588.png +0 -0
  85. data/ezii-server/httpsprojecteulernetproblem=599.png +0 -0
  86. data/ezii-server/httpsprojecteulernetproblem=72.png +0 -0
  87. data/ezii-server/httpsprojecteulernetproblem=93.png +0 -0
  88. data/ezii-server/regexes +258 -0
  89. data/ezii-server/sample.wav +0 -0
  90. data/ezii.gemspec +13 -0
  91. metadata +132 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dcc661b39e7792d0581ee923e7f8d1f7de366581
4
+ data.tar.gz: a89c46f411e06ca657505ae746f9a590381d125c
5
+ SHA512:
6
+ metadata.gz: 8253dd1953193e65c05c4cee81151bb1e482868c9b8755add2dcc7348937cc4d7fd8fbe89e26c96a940bf7e88025bfa20ecf998ec74b2f7a8c8236cff35c3457
7
+ data.tar.gz: 8079e01e22feed0dc898709a036445829274cb422c58f84a7293cf75fcd8f0c7c33bff59d3032348faade07fb51270c5ddd5d522afd376d098fc22bfaa10656e
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rack'
4
+ gem 'zircon', git: 'https://github.com/ezii123/ruby-irc.git'
5
+ gem 'colorize'
6
+ gem 'sinatra'
@@ -0,0 +1,32 @@
1
+ GIT
2
+ remote: https://github.com/ezii123/ruby-irc.git
3
+ revision: b40496d72d8fa8590375a85c5684deb45c3fcd70
4
+ specs:
5
+ zircon (0.0.8)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ colorize (0.8.1)
11
+ mustermann (1.0.3)
12
+ rack (2.0.7)
13
+ rack-protection (2.0.5)
14
+ rack
15
+ sinatra (2.0.5)
16
+ mustermann (~> 1.0)
17
+ rack (~> 2.0)
18
+ rack-protection (= 2.0.5)
19
+ tilt (~> 2.0)
20
+ tilt (2.0.9)
21
+
22
+ PLATFORMS
23
+ ruby
24
+
25
+ DEPENDENCIES
26
+ colorize
27
+ rack
28
+ sinatra
29
+ zircon!
30
+
31
+ BUNDLED WITH
32
+ 2.0.2
@@ -0,0 +1,2 @@
1
+ web: bundle exec ruby fake.rb
2
+ worker: bundle exec rackup
@@ -0,0 +1,16 @@
1
+ [![Gitter](https://badges.gitter.im/qanda-api/Lobby.svg)](https://gitter.im/qanda-api/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
2
+
3
+ # gam
4
+
5
+ Game Aided Manufacturing
6
+
7
+
8
+
9
+ ```ruby
10
+
11
+ # ENV variables for heroku
12
+
13
+
14
+ TWITCH_CHANNEL
15
+
16
+ ```
@@ -0,0 +1,1446 @@
1
+ Welcome, GLHF!
2
+ Your host is tmi.twitch.tv
3
+ This server is rather new
4
+ -
5
+ -
6
+ You are in a maze of twisty passages, all alike.
7
+ >
8
+
9
+ =
10
+ #jamiepinelive
11
+ thanks
12
+ hi dad
13
+ Hi Daddy lewolfLewd
14
+ achhoo
15
+ stop sneezing on new shit goddamn
16
+ LOL
17
+ HeyGuys
18
+ Hellooooooooo!!! :D
19
+ That's how Byte marks his territory
20
+ dogs piss, byte sneezes
21
+ Everything
22
+ Hello
23
+ GAYYY
24
+ GAYYY
25
+ GAYYY
26
+ GAYYY
27
+ GAYYY
28
+ KappaPride
29
+ BI*
30
+ Man putty sucks
31
+ Use KiTTY
32
+ use WSL
33
+
34
+ WSL POGGERS
35
+ RIP Stream
36
+ Just use Xsplit 4Head
37
+ WSL is still bad lmfao, but better then kitty tbh
38
+ Xsplit is fucking stupid lmfao
39
+ obs outplays it all the tie
40
+ Twitch made their own streaming software now
41
+ time*
42
+ Twitch Studio or smth
43
+ The "Programmers" role on discord is that just for Notify devs or?
44
+ any programmer
45
+ https://www.twitch.tv/broadcast/studio
46
+ Oh
47
+ Where's my role then LUL
48
+ Thinking the same @iDerp Haha
49
+ i guess twitch studio will fix all obs issues
50
+
51
+ Follow Notify on twitter: https://twitter.com/NotifyTeam & Jamie too: https://twitter.com/jamiepine
52
+
53
+ Race Car Controled Streaming Pog
54
+ !today
55
+ Jamie is rebuilding Pulse (https://pulsejs.org) to improve mobile performance and code maintainability. Read more here: https://lnk.notify.me/pulse-v2
56
+ We are just chilling KappaHD
57
+ You want to put my screen as am coding POGGERS
58
+ Kinda weird question but should you handle/implement debounce on the frontend or the backend?
59
+ Okay thanks :D
60
+
61
+ why is there a black bar on your keyboard
62
+ to hide what hes typin
63
+ I had a issue where I could spam a button on the frontend and the whole thing would go haywire
64
+ lets say somebody asked you how much it would cost to buy notify source, how much would you say it would be?
65
+ had to pop out for a bit but now i've got coco pops
66
+ Why would you be typing a password when you use a password manger Kappa
67
+ Hi jamie, how are you?
68
+ Whens Notify Enterprise, self-hosted version coming out Kappa
69
+ Like Github Enterprise Kappa
70
+ I use casear cipher for all my user passwords LUL
71
+ im waiting for someone to make a machine learning program to watch through all ur vods and create a recreation of notify
72
+ 2055 datagutt
73
+ does notify support mixer?
74
+ jamie isnt an obvious joke
75
+ *its
76
+ how much for all the vods Kappa
77
+ One thing you forgot about. Jamie did not live stream everything. So you WILL be missing a lot of code from the project.
78
+ patreon tier: access the vods
79
+ I recorded every stream ever since u started
80
+ And would also have to try to get the env set right as there is no docs on the code if I am right.
81
+ Bill you only have like 1% of the code. Good Luck.
82
+ :)
83
+
84
+ Damn
85
+ bill i used windows so you have all my code already
86
+ i feel like microsoft if they wanted to could create a better notify within like a month
87
+ Let me just recreate Notify. Give me a few moment.......
88
+ probably less if they wanted to
89
+ microsoft has enoght money so they could if they wanted to LUL
90
+ bill you should invest in notify
91
+ Google has all your data. So they can recreate it Kappa
92
+ I think it would be 10x easier to replicate the functionality of notify than trying to replicate the source from stream LUL
93
+ they could buy out notify
94
+ When is the mobile app launcing?
95
+ soon
96
+ Anyone could write code and create there own version of Notify. Kappa
97
+ is notify gonna go public
98
+ anytime
99
+ Just takes a lot of time to create a app
100
+ the domain name makes all the difference
101
+ notify.googlesites.com :)
102
+ notify.google.com Kappa
103
+ MrGoogle coming soon POGGERS
104
+ google.notify
105
+ @jamiepinelive did you learn programming before you started the project or through it?
106
+ verify me on notify notfiy/microsoft
107
+ What would you do if a company like Google or MSFT was to come to you and want to buy notify?
108
+ Follow Notify on twitter: https://twitter.com/NotifyTeam & Jamie too: https://twitter.com/jamiepine
109
+ PepoThink
110
+
111
+ Who needs cookies
112
+ me
113
+ 🍪
114
+ fair
115
+ i could use a cookie rn
116
+ What cookies are we talking about
117
+ here datagutt :) / 🍪
118
+ 🍪
119
+ ronlaniado these ofc 🍪
120
+ Windows Hello Face Login is pretty nice.
121
+ You have peanut butter cookies
122
+ It always just works
123
+ windows? get outta here
124
+ what data said
125
+ ronlaniado ofc 🥜 🍪
126
+ Nice
127
+ delish
128
+ :)
129
+ why is there a black bar
130
+ his keyboard has boobs
131
+ gotta censor them
132
+ damn
133
+ facts
134
+ bruh
135
+ how you debug a app on visual studio code?
136
+ think PepoThink
137
+ why does ypur keyboard have boobs how does that happen
138
+ We're on the internet Jamie. We don't use our brain.
139
+ !commands add !blackbox Why do you think jamie has the black box covering his keyboard?
140
+ @Jackdouglas_ -> The command "!blackbox" has been added successfully.
141
+ he is hiding the code monkaS
142
+ btw the cam is delayed
143
+ :)
144
+
145
+ you can delay voice in obs LULW
146
+ sweater pink on one cam and white on the other PepoThink
147
+ what happened to the documentary
148
+ Soon™
149
+ just desync your voice irl
150
+ add a command !when that says Soon™
151
+ !when
152
+ nah
153
+ for every question
154
+ oh well nevermind then jack guess ill cry
155
+ detroit episode?
156
+ the documentary is right now
157
+ show benis
158
+ it is live
159
+ fax
160
+ 📠
161
+ printer.iderp.io
162
+ !youtube
163
+ https://youtube.com/jamiepine
164
+ jamie i saw the pic of all the boxes from ur new products u bought but holy shit
165
+ i didnt know you buffed the stream THIS much
166
+ wth
167
+ jamie has expensive wiener energy
168
+ free stuff PogChamp
169
+ which is the worst sentence i've ever said
170
+ JDFGLK FJ??? EXCUSE YOU
171
+ I COULD AFFORD A QUARTER OF THE PRICE OF ONE OF THOSE PRODUCTS
172
+ DEAR GOD
173
+
174
+ PogChamp PogChamp
175
+ What is the printer link do?
176
+ Jamie's sister is a witch. Confirmed. Kappa
177
+ @jackdouglas_ what does the link do?
178
+ imagine going for windows when all ur other team mates use apple's OS
179
+ LUL
180
+ ask iderp
181
+ Does it print in a printer somewhere LUL
182
+ LOL
183
+ ARCH
184
+ I may have spammed the link..... Kappa
185
+ ARCH MASTERACE LUL
186
+ Enjoy the wasted ink iderp
187
+ macbook 2010 series Kappa
188
+ hey jamie
189
+ Arch master race <3 https://timcole.me/ss/FNXohOthuY.png
190
+ yes you're very cool tim
191
+ now update your profile picture
192
+ Just in case you didn't know, Adam is live
193
+ LUL
194
+ hey tim has a similar hardware config to me
195
+ wew
196
+ i unironically like ur setup actually, its proof u dont need a crap ton of money to make something aes
197
+ esp the desk
198
+ CoolStoryBob
199
+ thats modern javascript development for ya
200
+ lots of moving pieces that nobody knows how works Kappa
201
+
202
+ What websites does notify.me supports?
203
+ !support
204
+ Need support, DM us on twitter https://twitter.com/notifyteam
205
+ !platforms
206
+ Supported platforms: Youtube, Twitch, Discord, Mixer, Twitter, Reddit, Instagram, Soundcloud, Facebook, Snapchat. (Supported platforms for posting)
207
+ !connections
208
+ Supported platforms: Youtube, Twitch, Discord, Mixer. Incoming platforms: Twitter, Reddit, Instagram, Soundcloud, Facebook, Snapchat.
209
+ Follow Notify on twitter: https://twitter.com/NotifyTeam & Jamie too: https://twitter.com/jamiepine
210
+ depends, you teach me what i need to know and consider it done. @jamiepinelive you dont even need to pay me a whole lot, i'd rather help for the sake of contribution
211
+ I am going to use it then it supports all the sites i use good job :)
212
+ !pulse
213
+ !pulse
214
+ !pulse
215
+ Check out the Pulse Framework, created and maintained by Jamie & The Notify Team https://pulsejs.org (View the Github at https://github.com/jamiepine/pulse)
216
+ LUL
217
+ does it support pornhub 🤔
218
+ Jamie's gonna code PogChamp
219
+ only on notify.xxx @bill
220
+ what purpose are the tests for? raw resource usage/hardware strain?
221
+ I'm contacting twitch support because my monthly prime sub never works
222
+ yeah sure flex your like 800 pound camera why dont you
223
+ LUL
224
+ Where did he get all this money for like 3 macbooks and shit
225
+ investors squid
226
+ so you met with 100 thieves? who was pumping up detroit but is now moving to LA?
227
+
228
+ actually wait it just hit me, 5 macbooks are like 9500 pounds
229
+ that's chonk
230
+ I mean. I could also take a macbook. xD
231
+ So I can chat better support
232
+ in twitch chat lol
233
+ convince jamie to hire you at jobs@notify.me and who knows ;p
234
+ yo man love the setup
235
+ I don't think so. 14 y/o lol
236
+ age to an extent doesnt matter to jamie i think, as long as you're mature about your work and ethic/attitude
237
+ @ripSquidd
238
+ ok still tho
239
+ !x
240
+ ACTION runs: git commit -m "x"
241
+ helpful nightbot
242
+ !commit
243
+ ACTION runs git commit -m "<<<<<<<<<<<<<<< HEAD"
244
+ Support fixed my free sub now
245
+ wew, thats like marques brownlee levels of quality
246
+ +1
247
+ u live i missed u\
248
+ Don't shot me monkaS
249
+ shoot*
250
+ my sub ends today =(
251
+ jamie not showing his twitter analytics on film Kappa
252
+ My sub already ended FeelsBadMan
253
+
254
+ out of sheer curiosity what are the file sizes @jamiepinelive
255
+ Are you gonna add sub emotes?
256
+ Red Cam POGGERS
257
+ Sub Emotes when?
258
+ dont make the same mistake linus sebastian did
259
+ you'll regret it
260
+ poggy woggy toggy
261
+ 1 right steered and 1 left steered
262
+ hey MrBoolean
263
+ Hey Jacky boy
264
+ oh my god dont call him jacky boy
265
+ who do you think you are XD
266
+ Famsquad
267
+ LULW
268
+ Hi @jamiepinelive , i can't stay long cuz im in school LUL
269
+ ModestTim mrdemo1Heart
270
+ ACTION @jamiepinelive stayhyBottle You've been live for just over 1 hour. By this point in your broadcast you should have consumed at least 4oz (120mL) of water to maintain optimum hydration.
271
+ I got computer science in 10mins LUL
272
+
273
+ have fun converting binary to denary
274
+ somputer ccience
275
+ GAYYY
276
+ KappaPride
277
+ no u
278
+ waw\
279
+ calm down iderp
280
+ 🍆 modestGasm
281
+ 69 viwers
282
+ Lit
283
+ Follow Notify on twitter: https://twitter.com/NotifyTeam & Jamie too: https://twitter.com/jamiepine
284
+ now its a stack
285
+ 64
286
+ NUMBER
287
+ STRING
288
+ 64
289
+ RUBY
290
+ 64.0
291
+ RUBY
292
+ 64.0
293
+ RUBY
294
+ 64
295
+ PYTHON
296
+ TBI
297
+ PYTHON
298
+ TBI
299
+ NUMBER
300
+ STRING
301
+ 64
302
+ RUBY
303
+ 64.0
304
+ RUBY
305
+ 64.0
306
+ RUBY
307
+ 64
308
+ PYTHON
309
+ TBI
310
+ PYTHON
311
+ TBI
312
+ NUMBER
313
+ STRING
314
+ 64.0
315
+ RUBY
316
+ 64.0
317
+ RUBY
318
+ 64.0
319
+ RUBY
320
+ 64
321
+ PYTHON
322
+ TBI
323
+ PYTHON
324
+ TBI
325
+ NUMBER
326
+ STRING
327
+ 64.0
328
+ RUBY
329
+ 64.0
330
+ RUBY
331
+ 64.0
332
+ RUBY
333
+ 64
334
+ PYTHON
335
+ TBI
336
+ PYTHON
337
+ TBI
338
+ NUMBER
339
+ STRING
340
+ 64
341
+ RUBY
342
+ 64.0
343
+ RUBY
344
+ 64.0
345
+ RUBY
346
+ 64
347
+ PYTHON
348
+ TBI
349
+ PYTHON
350
+ TBI
351
+ NUMBER
352
+ STRING
353
+ 64
354
+ RUBY
355
+ 64.0
356
+ RUBY
357
+ 64.0
358
+ RUBY
359
+ 64
360
+ PYTHON
361
+ TBI
362
+ PYTHON
363
+ TBI
364
+ NUMBER
365
+ STRING
366
+ 64.0
367
+ RUBY
368
+ 64.0
369
+ RUBY
370
+ 64.0
371
+ RUBY
372
+ 64
373
+ PYTHON
374
+ TBI
375
+ PYTHON
376
+ TBI
377
+ NUMBER
378
+ STRING
379
+ 64.0
380
+ RUBY
381
+ 64.0
382
+ RUBY
383
+ 64.0
384
+ RUBY
385
+ 64
386
+ PYTHON
387
+ TBI
388
+ PYTHON
389
+ TBI
390
+ NUMBER
391
+ STRING
392
+ 64
393
+ RUBY
394
+ 64.0
395
+ RUBY
396
+ 64.0
397
+ RUBY
398
+ 64
399
+ PYTHON
400
+ TBI
401
+ PYTHON
402
+ TBI
403
+ NUMBER
404
+ STRING
405
+ 64.0
406
+ RUBY
407
+ 64.0
408
+ RUBY
409
+ 64.0
410
+ RUBY
411
+ 64
412
+ PYTHON
413
+ TBI
414
+ PYTHON
415
+ TBI
416
+ NUMBER
417
+ STRING
418
+ 64.0
419
+ RUBY
420
+ 64.0
421
+ RUBY
422
+ 64.0
423
+ RUBY
424
+ 64
425
+ PYTHON
426
+ TBI
427
+ PYTHON
428
+ TBI
429
+ NUMBER
430
+ STRING
431
+ 64.0
432
+ RUBY
433
+ 64.0
434
+ RUBY
435
+ 64.0
436
+ RUBY
437
+ 64
438
+ PYTHON
439
+ TBI
440
+ PYTHON
441
+ TBI
442
+ pogs
443
+ NUMBER
444
+ STRING
445
+ 64
446
+ RUBY
447
+ 64.0
448
+ RUBY
449
+ 64.0
450
+ RUBY
451
+ 64
452
+ PYTHON
453
+ TBI
454
+ PYTHON
455
+ TBI
456
+ be here when mine expries
457
+ =)
458
+ NUMBER
459
+ STRING
460
+ 64.0
461
+ RUBY
462
+ 64.0
463
+ RUBY
464
+ 64.0
465
+ RUBY
466
+ 64
467
+ PYTHON
468
+ TBI
469
+ PYTHON
470
+ TBI
471
+ NUMBER
472
+ STRING
473
+ 64.0
474
+ RUBY
475
+ 64.0
476
+ RUBY
477
+ 64.0
478
+ RUBY
479
+ 64
480
+ PYTHON
481
+ TBI
482
+ PYTHON
483
+ TBI
484
+ no thank you
485
+ NUMBER
486
+ STRING
487
+ 64.0
488
+ RUBY
489
+ 64.0
490
+ RUBY
491
+ 64.0
492
+ RUBY
493
+ 64
494
+ PYTHON
495
+ TBI
496
+ PYTHON
497
+ TBI
498
+ NUMBER
499
+ STRING
500
+ 64
501
+ RUBY
502
+ 64.0
503
+ RUBY
504
+ 64.0
505
+ RUBY
506
+ 64
507
+ PYTHON
508
+ TBI
509
+ PYTHON
510
+ TBI
511
+ haha
512
+ NUMBER
513
+ STRING
514
+ 64
515
+ RUBY
516
+ 64.0
517
+ RUBY
518
+ 64.0
519
+ RUBY
520
+ 64
521
+ PYTHON
522
+ TBI
523
+ PYTHON
524
+ TBI
525
+ NUMBER
526
+ STRING
527
+ 64.0
528
+ RUBY
529
+ 64.0
530
+ RUBY
531
+ 64.0
532
+ RUBY
533
+ 64
534
+ PYTHON
535
+ TBI
536
+ PYTHON
537
+ TBI
538
+ dont you need to swipe from right to left?
539
+ NUMBER
540
+ STRING
541
+ 64.0
542
+ RUBY
543
+ 64.0
544
+ RUBY
545
+ 64.0
546
+ RUBY
547
+ 64
548
+ PYTHON
549
+ TBI
550
+ PYTHON
551
+ TBI
552
+ NUMBER
553
+ STRING
554
+ 64
555
+ RUBY
556
+ 64.0
557
+ RUBY
558
+ 64.0
559
+ RUBY
560
+ 64
561
+ PYTHON
562
+ TBI
563
+ PYTHON
564
+ TBI
565
+ NUMBER
566
+ STRING
567
+ 64
568
+ RUBY
569
+ 64.0
570
+ RUBY
571
+ 64.0
572
+ RUBY
573
+ 64
574
+ PYTHON
575
+ TBI
576
+ PYTHON
577
+ TBI
578
+ NUMBER
579
+ STRING
580
+ 64.0
581
+ RUBY
582
+ 64.0
583
+ RUBY
584
+ 64.0
585
+ RUBY
586
+ 64
587
+ PYTHON
588
+ TBI
589
+ PYTHON
590
+ TBI
591
+ NUMBER
592
+ STRING
593
+ 64.0
594
+ RUBY
595
+ 64.0
596
+ RUBY
597
+ 64.0
598
+ RUBY
599
+ 64
600
+ PYTHON
601
+ TBI
602
+ PYTHON
603
+ TBI
604
+ Hey
605
+ NUMBER
606
+ STRING
607
+ 64
608
+ RUBY
609
+ 64.0
610
+ RUBY
611
+ 64.0
612
+ RUBY
613
+ 64
614
+ PYTHON
615
+ TBI
616
+ PYTHON
617
+ TBI
618
+ NUMBER
619
+ STRING
620
+ 64.0
621
+ RUBY
622
+ 64.0
623
+ RUBY
624
+ 64.0
625
+ RUBY
626
+ 64
627
+ PYTHON
628
+ TBI
629
+ PYTHON
630
+ TBI
631
+ NUMBER
632
+ STRING
633
+ 64.0
634
+ RUBY
635
+ 64.0
636
+ RUBY
637
+ 64.0
638
+ RUBY
639
+ 64
640
+ PYTHON
641
+ TBI
642
+ PYTHON
643
+ TBI
644
+ NUMBER
645
+ STRING
646
+ 64.0
647
+ RUBY
648
+ 64.0
649
+ RUBY
650
+ 64.0
651
+ RUBY
652
+ 64
653
+ PYTHON
654
+ TBI
655
+ PYTHON
656
+ TBI
657
+ NUMBER
658
+ STRING
659
+ 64
660
+ RUBY
661
+ 64.0
662
+ RUBY
663
+ 64.0
664
+ RUBY
665
+ 64
666
+ PYTHON
667
+ TBI
668
+ PYTHON
669
+ TBI
670
+ NUMBER
671
+ STRING
672
+ 64.0
673
+ RUBY
674
+ 64.0
675
+ RUBY
676
+ 64.0
677
+ RUBY
678
+ 64
679
+ PYTHON
680
+ TBI
681
+ PYTHON
682
+ TBI
683
+ NUMBER
684
+ STRING
685
+ 64.0
686
+ RUBY
687
+ 64.0
688
+ RUBY
689
+ 64.0
690
+ RUBY
691
+ 64
692
+ PYTHON
693
+ TBI
694
+ PYTHON
695
+ TBI
696
+ NUMBER
697
+ STRING
698
+ 64.0
699
+ RUBY
700
+ 64.0
701
+ RUBY
702
+ 64.0
703
+ RUBY
704
+ 64
705
+ PYTHON
706
+ TBI
707
+ PYTHON
708
+ TBI
709
+ NUMBER
710
+ STRING
711
+ 64
712
+ RUBY
713
+ 64.0
714
+ RUBY
715
+ 64.0
716
+ RUBY
717
+ 64
718
+ PYTHON
719
+ TBI
720
+ PYTHON
721
+ TBI
722
+ NUMBER
723
+ STRING
724
+ 64
725
+ RUBY
726
+ 64.0
727
+ RUBY
728
+ 64.0
729
+ RUBY
730
+ 64
731
+ PYTHON
732
+ TBI
733
+ PYTHON
734
+ TBI
735
+ NUMBER
736
+ STRING
737
+ 64.0
738
+ RUBY
739
+ 64.0
740
+ RUBY
741
+ 64.0
742
+ RUBY
743
+ 64
744
+ PYTHON
745
+ TBI
746
+ PYTHON
747
+ TBI
748
+ NUMBER
749
+ STRING
750
+ 64.0
751
+ RUBY
752
+ 64.0
753
+ RUBY
754
+ 64.0
755
+ RUBY
756
+ 64
757
+ PYTHON
758
+ TBI
759
+ PYTHON
760
+ TBI
761
+ NUMBER
762
+ STRING
763
+ 64
764
+ RUBY
765
+ 64.0
766
+ RUBY
767
+ 64.0
768
+ RUBY
769
+ 64
770
+ PYTHON
771
+ TBI
772
+ PYTHON
773
+ TBI
774
+
775
+ NUMBER
776
+ STRING
777
+ 64.0
778
+ RUBY
779
+ 64.0
780
+ RUBY
781
+ 64.0
782
+ RUBY
783
+ 64
784
+ PYTHON
785
+ TBI
786
+ PYTHON
787
+ TBI
788
+ NUMBER
789
+ STRING
790
+ 64.0
791
+ RUBY
792
+ 64.0
793
+ RUBY
794
+ 64.0
795
+ RUBY
796
+ 64
797
+ PYTHON
798
+ TBI
799
+ PYTHON
800
+ TBI
801
+ NUMBER
802
+ STRING
803
+ 64.0
804
+ RUBY
805
+ 64.0
806
+ RUBY
807
+ 64.0
808
+ RUBY
809
+ 64
810
+ PYTHON
811
+ TBI
812
+ PYTHON
813
+ TBI
814
+ NUMBER
815
+ STRING
816
+ 64
817
+ RUBY
818
+ 64.0
819
+ RUBY
820
+ 64.0
821
+ RUBY
822
+ 64
823
+ PYTHON
824
+ TBI
825
+ PYTHON
826
+ TBI
827
+ NUMBER
828
+ STRING
829
+ 64.0
830
+ RUBY
831
+ 64.0
832
+ RUBY
833
+ 64.0
834
+ RUBY
835
+ 64
836
+ PYTHON
837
+ TBI
838
+ PYTHON
839
+ TBI
840
+ NUMBER
841
+ STRING
842
+ 64.0
843
+ RUBY
844
+ 64.0
845
+ RUBY
846
+ 64.0
847
+ RUBY
848
+ 64
849
+ PYTHON
850
+ TBI
851
+ PYTHON
852
+ TBI
853
+ NUMBER
854
+ STRING
855
+ 64.0
856
+ RUBY
857
+ 64.0
858
+ RUBY
859
+ 64.0
860
+ RUBY
861
+ 64
862
+ PYTHON
863
+ TBI
864
+ PYTHON
865
+ TBI
866
+ NUMBER
867
+ STRING
868
+ 64
869
+ RUBY
870
+ 64.0
871
+ RUBY
872
+ 64.0
873
+ RUBY
874
+ 64
875
+ PYTHON
876
+ TBI
877
+ PYTHON
878
+ TBI
879
+ NUMBER
880
+ STRING
881
+ 64.0
882
+ RUBY
883
+ 64.0
884
+ RUBY
885
+ 64.0
886
+ RUBY
887
+ 64
888
+ PYTHON
889
+ TBI
890
+ PYTHON
891
+ TBI
892
+ NUMBER
893
+ STRING
894
+ 64.0
895
+ RUBY
896
+ 64.0
897
+ RUBY
898
+ 64.0
899
+ RUBY
900
+ 64
901
+ PYTHON
902
+ TBI
903
+ PYTHON
904
+ TBI
905
+ NUMBER
906
+ STRING
907
+ 64.0
908
+ RUBY
909
+ 64.0
910
+ RUBY
911
+ 64.0
912
+ RUBY
913
+ 64
914
+ PYTHON
915
+ TBI
916
+ PYTHON
917
+ TBI
918
+ NUMBER
919
+ STRING
920
+ 64
921
+ RUBY
922
+ 64.0
923
+ RUBY
924
+ 64.0
925
+ RUBY
926
+ 64
927
+ PYTHON
928
+ TBI
929
+ PYTHON
930
+ TBI
931
+ @jamiepinelive Got to go to computer science class, see you later LUL LUL
932
+ NUMBER
933
+ STRING
934
+ 64
935
+ RUBY
936
+ 64.0
937
+ RUBY
938
+ 64.0
939
+ RUBY
940
+ 64
941
+ PYTHON
942
+ TBI
943
+ PYTHON
944
+ TBI
945
+ NUMBER
946
+ STRING
947
+ 64.0
948
+ RUBY
949
+ 64.0
950
+ RUBY
951
+ 64.0
952
+ RUBY
953
+ 64
954
+ PYTHON
955
+ TBI
956
+ PYTHON
957
+ TBI
958
+ NUMBER
959
+ STRING
960
+ 64.0
961
+ RUBY
962
+ 64.0
963
+ RUBY
964
+ 64.0
965
+ RUBY
966
+ 64
967
+ PYTHON
968
+ TBI
969
+ PYTHON
970
+ TBI
971
+ NUMBER
972
+ STRING
973
+ 64
974
+ RUBY
975
+ 64.0
976
+ RUBY
977
+ 64.0
978
+ RUBY
979
+ 64
980
+ PYTHON
981
+ TBI
982
+ PYTHON
983
+ TBI
984
+ NUMBER
985
+ STRING
986
+ 64.0
987
+ RUBY
988
+ 64.0
989
+ RUBY
990
+ 64.0
991
+ RUBY
992
+ 64
993
+ PYTHON
994
+ TBI
995
+ PYTHON
996
+ TBI
997
+ NUMBER
998
+ STRING
999
+ 64.0
1000
+ RUBY
1001
+ 64.0
1002
+ RUBY
1003
+ 64.0
1004
+ RUBY
1005
+ 64
1006
+ PYTHON
1007
+ TBI
1008
+ PYTHON
1009
+ TBI
1010
+ NUMBER
1011
+ STRING
1012
+ 64.0
1013
+ RUBY
1014
+ 64.0
1015
+ RUBY
1016
+ 64.0
1017
+ RUBY
1018
+ 64
1019
+ PYTHON
1020
+ TBI
1021
+ PYTHON
1022
+ TBI
1023
+ NUMBER
1024
+ STRING
1025
+ 64
1026
+ RUBY
1027
+ 64.0
1028
+ RUBY
1029
+ 64.0
1030
+ RUBY
1031
+ 64
1032
+ PYTHON
1033
+ TBI
1034
+ PYTHON
1035
+ TBI
1036
+ NUMBER
1037
+ STRING
1038
+ 64.0
1039
+ RUBY
1040
+ 64.0
1041
+ RUBY
1042
+ 64.0
1043
+ RUBY
1044
+ 64
1045
+ PYTHON
1046
+ TBI
1047
+ PYTHON
1048
+ TBI
1049
+ NUMBER
1050
+ STRING
1051
+ 64.0
1052
+ RUBY
1053
+ 64.0
1054
+ RUBY
1055
+ 64.0
1056
+ RUBY
1057
+ 64
1058
+ PYTHON
1059
+ TBI
1060
+ PYTHON
1061
+ TBI
1062
+ HeyGuys
1063
+ NUMBER
1064
+ STRING
1065
+ 64.0
1066
+ RUBY
1067
+ 64.0
1068
+ RUBY
1069
+ 64.0
1070
+ RUBY
1071
+ 64
1072
+ PYTHON
1073
+ TBI
1074
+ PYTHON
1075
+ TBI
1076
+ NUMBER
1077
+ STRING
1078
+ 64
1079
+ RUBY
1080
+ 64.0
1081
+ RUBY
1082
+ 64.0
1083
+ RUBY
1084
+ 64
1085
+ PYTHON
1086
+ TBI
1087
+ PYTHON
1088
+ TBI
1089
+ NUMBER
1090
+ STRING
1091
+ 64.0
1092
+ RUBY
1093
+ 64.0
1094
+ RUBY
1095
+ 64.0
1096
+ RUBY
1097
+ 64
1098
+ PYTHON
1099
+ TBI
1100
+ PYTHON
1101
+ TBI
1102
+ NUMBER
1103
+ STRING
1104
+ 64.0
1105
+ RUBY
1106
+ 64.0
1107
+ RUBY
1108
+ 64.0
1109
+ RUBY
1110
+ 64
1111
+ PYTHON
1112
+ TBI
1113
+ PYTHON
1114
+ TBI
1115
+ how do you plan to monetize your application? (if you don't mind, it's cool if you'd rather not answer) I just see an application like this having problems monetizing unless you dish ads left and right.
1116
+ NUMBER
1117
+ STRING
1118
+ 64.0
1119
+ RUBY
1120
+ 64.0
1121
+ RUBY
1122
+ 64.0
1123
+ RUBY
1124
+ 64
1125
+ PYTHON
1126
+ TBI
1127
+ PYTHON
1128
+ TBI
1129
+ NUMBER
1130
+ STRING
1131
+ 64
1132
+ RUBY
1133
+ 64.0
1134
+ RUBY
1135
+ 64.0
1136
+ RUBY
1137
+ 64
1138
+ PYTHON
1139
+ TBI
1140
+ PYTHON
1141
+ TBI
1142
+ NUMBER
1143
+ STRING
1144
+ 64
1145
+ RUBY
1146
+ 64.0
1147
+ RUBY
1148
+ 64.0
1149
+ RUBY
1150
+ 64
1151
+ PYTHON
1152
+ TBI
1153
+ PYTHON
1154
+ TBI
1155
+ NUMBER
1156
+ STRING
1157
+ 64.0
1158
+ RUBY
1159
+ 64.0
1160
+ RUBY
1161
+ 64.0
1162
+ RUBY
1163
+ 64
1164
+ PYTHON
1165
+ TBI
1166
+ PYTHON
1167
+ TBI
1168
+ NUMBER
1169
+ STRING
1170
+ 64.0
1171
+ RUBY
1172
+ 64.0
1173
+ RUBY
1174
+ 64.0
1175
+ RUBY
1176
+ 64
1177
+ PYTHON
1178
+ TBI
1179
+ PYTHON
1180
+ TBI
1181
+ NUMBER
1182
+ STRING
1183
+ 64
1184
+ RUBY
1185
+ 64.0
1186
+ RUBY
1187
+ 64.0
1188
+ RUBY
1189
+ 64
1190
+ PYTHON
1191
+ TBI
1192
+ PYTHON
1193
+ TBI
1194
+ can i be in the meeting im good at meetings
1195
+ NUMBER
1196
+ STRING
1197
+ 64
1198
+ RUBY
1199
+ 64.0
1200
+ RUBY
1201
+ 64.0
1202
+ RUBY
1203
+ 64
1204
+ PYTHON
1205
+ TBI
1206
+ PYTHON
1207
+ TBI
1208
+ =))
1209
+ NUMBER
1210
+ STRING
1211
+ 64.0
1212
+ RUBY
1213
+ 64.0
1214
+ RUBY
1215
+ 64.0
1216
+ RUBY
1217
+ 64
1218
+ PYTHON
1219
+ TBI
1220
+ PYTHON
1221
+ TBI
1222
+ NUMBER
1223
+ STRING
1224
+ 64.0
1225
+ RUBY
1226
+ 64.0
1227
+ RUBY
1228
+ 64.0
1229
+ RUBY
1230
+ 64
1231
+ PYTHON
1232
+ TBI
1233
+ PYTHON
1234
+ TBI
1235
+ NUMBER
1236
+ STRING
1237
+ 64
1238
+ RUBY
1239
+ 64.0
1240
+ RUBY
1241
+ 64.0
1242
+ RUBY
1243
+ 64
1244
+ PYTHON
1245
+ TBI
1246
+ PYTHON
1247
+ TBI
1248
+ NUMBER
1249
+ STRING
1250
+ 64.0
1251
+ RUBY
1252
+ 64.0
1253
+ RUBY
1254
+ 64.0
1255
+ RUBY
1256
+ 64
1257
+ PYTHON
1258
+ TBI
1259
+ PYTHON
1260
+ TBI
1261
+ NUMBER
1262
+ STRING
1263
+ 64.0
1264
+ RUBY
1265
+ 64.0
1266
+ RUBY
1267
+ 64.0
1268
+ RUBY
1269
+ 64
1270
+ PYTHON
1271
+ TBI
1272
+ PYTHON
1273
+ TBI
1274
+ NUMBER
1275
+ STRING
1276
+ 64.0
1277
+ RUBY
1278
+ 64.0
1279
+ RUBY
1280
+ 64.0
1281
+ RUBY
1282
+ 64
1283
+ PYTHON
1284
+ TBI
1285
+ PYTHON
1286
+ TBI
1287
+ Are you going to add sub emotes anytime?
1288
+ NUMBER
1289
+ STRING
1290
+ 64
1291
+ RUBY
1292
+ 64.0
1293
+ RUBY
1294
+ 64.0
1295
+ RUBY
1296
+ 64
1297
+ PYTHON
1298
+ TBI
1299
+ PYTHON
1300
+ TBI
1301
+ NUMBER
1302
+ STRING
1303
+ 64.0
1304
+ RUBY
1305
+ 64.0
1306
+ RUBY
1307
+ 64.0
1308
+ RUBY
1309
+ 64
1310
+ PYTHON
1311
+ TBI
1312
+ PYTHON
1313
+ TBI
1314
+ NUMBER
1315
+ STRING
1316
+ 64.0
1317
+ RUBY
1318
+ 64.0
1319
+ RUBY
1320
+ 64.0
1321
+ RUBY
1322
+ 64
1323
+ PYTHON
1324
+ TBI
1325
+ PYTHON
1326
+ TBI
1327
+ NUMBER
1328
+ STRING
1329
+ 64.0
1330
+ RUBY
1331
+ 64.0
1332
+ RUBY
1333
+ 64.0
1334
+ RUBY
1335
+ 64
1336
+ PYTHON
1337
+ TBI
1338
+ PYTHON
1339
+ TBI
1340
+ NUMBER
1341
+ STRING
1342
+ 64
1343
+ RUBY
1344
+ 64.0
1345
+ RUBY
1346
+ 64.0
1347
+ RUBY
1348
+ 64
1349
+ PYTHON
1350
+ TBI
1351
+ PYTHON
1352
+ TBI
1353
+ NUMBER
1354
+ STRING
1355
+ 64
1356
+ RUBY
1357
+ 64.0
1358
+ RUBY
1359
+ 64.0
1360
+ RUBY
1361
+ 64
1362
+ PYTHON
1363
+ TBI
1364
+ PYTHON
1365
+ TBI
1366
+ NUMBER
1367
+ STRING
1368
+ 64.0
1369
+ RUBY
1370
+ 64.0
1371
+ RUBY
1372
+ 64.0
1373
+ RUBY
1374
+ 64
1375
+ PYTHON
1376
+ TBI
1377
+ PYTHON
1378
+ TBI
1379
+ NUMBER
1380
+ STRING
1381
+ 64.0
1382
+ RUBY
1383
+ 64.0
1384
+ RUBY
1385
+ 64.0
1386
+ RUBY
1387
+ 64
1388
+ PYTHON
1389
+ TBI
1390
+ PYTHON
1391
+ TBI
1392
+ NUMBER
1393
+ STRING
1394
+ 64
1395
+ RUBY
1396
+ 64.0
1397
+ RUBY
1398
+ 64.0
1399
+ RUBY
1400
+ 64
1401
+ PYTHON
1402
+ TBI
1403
+ PYTHON
1404
+ TBI
1405
+ NUMBER
1406
+ STRING
1407
+ 64
1408
+ RUBY
1409
+ 64.0
1410
+ RUBY
1411
+ 64.0
1412
+ RUBY
1413
+ 64
1414
+ PYTHON
1415
+ TBI
1416
+ PYTHON
1417
+ TBI
1418
+ NUMBER
1419
+ STRING
1420
+ 64.0
1421
+ RUBY
1422
+ 64.0
1423
+ RUBY
1424
+ 64.0
1425
+ RUBY
1426
+ 64
1427
+ PYTHON
1428
+ TBI
1429
+ PYTHON
1430
+ TBI
1431
+ NUMBER
1432
+ STRING
1433
+ 64.0
1434
+ RUBY
1435
+ 64.0
1436
+ RUBY
1437
+ 64.0
1438
+ RUBY
1439
+ 64
1440
+ PYTHON
1441
+ TBI
1442
+ PYTHON
1443
+ TBI
1444
+ NUMBER
1445
+ STRING
1446
+ 64