reddit-api 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/README.md +122 -0
- data/Rakefile +6 -0
- data/bin/console +12 -0
- data/bin/setup +8 -0
- data/data.json +2654 -0
- data/data/reddit_api.json +2038 -0
- data/exe/reddit-api +3 -0
- data/lib/reddit/api.rb +14 -0
- data/lib/reddit/api/version.rb +5 -0
- data/lib/reddit/internal/connection.rb +143 -0
- data/lib/reddit/internal/logger.rb +17 -0
- data/lib/reddit/internal/processor.rb +90 -0
- data/lib/reddit/services.rb +54 -0
- data/lib/reddit/services/user.rb +23 -0
- data/license.txt +7 -0
- data/reddit-api.gemspec +29 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 61b8bddceadeff38b92cacd9c3a7b2a915be6438
|
4
|
+
data.tar.gz: c7b005ccee5f4cdfe7ad9efc31aeb3ce7826f50b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: eb1c70262a65ebb4468ef76d6b4a247627e94e0aeee483b174c9af445c9fc09735c1c954a575fb2fbc0ac5908af625e92162d3d0d16ce8271d7be8b98b93a46f
|
7
|
+
data.tar.gz: c2390a0e929bb20cc4bf66c40a3f251887b0f3ea57dcfb17062b1fe8e00f57566f4f3157c14c32181834b8b7dd7aecb64f1eb5b09014ee1b2cd8f44a5cfd7fbe
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,122 @@
|
|
1
|
+
# Reddit API
|
2
|
+
|
3
|
+
A lightweight wrapper that is unobtrusive and intuitive to use.
|
4
|
+
|
5
|
+
Features:
|
6
|
+
- Full OAuth support and token management
|
7
|
+
- Multiple Users running in one script
|
8
|
+
- Request throttling
|
9
|
+
- Full API wrapper for all endpoints / objects
|
10
|
+
- Automatic http retry
|
11
|
+
|
12
|
+
## Installation
|
13
|
+
|
14
|
+
install it as:
|
15
|
+
|
16
|
+
$ gem install reddit-api
|
17
|
+
|
18
|
+
## Usage
|
19
|
+
|
20
|
+
Follow the Reddit API Guidelines: https://github.com/reddit/reddit/wiki/API
|
21
|
+
|
22
|
+
First get a application token / secret for sign in from: https://www.reddit.com/prefs/apps
|
23
|
+
|
24
|
+
|
25
|
+
## Creating A User
|
26
|
+
We need a user:
|
27
|
+
```ruby
|
28
|
+
user = Reddit::Services::User.new "username", "password", "script_id", "script_secret", "User Agent Title"
|
29
|
+
```
|
30
|
+
|
31
|
+
## Retrieving Data
|
32
|
+
Getting back data is simple. Use The `Reddit::Services::*` Module and functions to retrieve data.
|
33
|
+
```ruby
|
34
|
+
user_info = Reddit::Services::Account.get_me user
|
35
|
+
```
|
36
|
+
|
37
|
+
Getting back a subreddit takes a bit more info.
|
38
|
+
|
39
|
+
```ruby
|
40
|
+
subreddit_posts = Reddit::Services::Listings.get_hot user, basepath_subreddit: "subreddit_name_without_r_slash", limit:50
|
41
|
+
```
|
42
|
+
note: anytime there is a `basepath_` variable the value is substituted into the URL with whatever is after the _ .In this case "basepath_subreddit" defines the "subreddit" part of the path.
|
43
|
+
|
44
|
+
note: to list the available fields prepend `print_` to any method call as shown for `get_hot` below.
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
[1] pry(main)> subreddit_posts = Reddit::Services::Listings.print_get_hot
|
48
|
+
=> ["basepath_subreddit", "after", "before", "count", "limit", "show", "sr_detail"]
|
49
|
+
```
|
50
|
+
|
51
|
+
Getting back a comments requires multiple basepath substitutions.
|
52
|
+
```ruby
|
53
|
+
subreddit_comments = Reddit::Services::Listings.get_comments_article user, basepath_article:"article_id_from_permalink", basepath_subreddit: "subreddit_without_r_slash", limit:50
|
54
|
+
```
|
55
|
+
note: the two "basepath_" variables because the url requires not only a subreddit but a post ID in the basepath.
|
56
|
+
|
57
|
+
Debug Logging can be enabled or disabled at any time with:
|
58
|
+
|
59
|
+
## Retrieve Batches From Listing
|
60
|
+
|
61
|
+
The `Listings` group of endpoints have a helper method `batch_` that can be used in place of `get_`. Bath will make multiple calls to the endpoint and return the complete set.
|
62
|
+
|
63
|
+
A batch method must pass `page_size: #` and `max_size: #`
|
64
|
+
- `page_size` is the number of entries to request per call
|
65
|
+
- `max_size` is the maximum number of entries expected, batch may return before max_size is met because all entries have been retrieved.
|
66
|
+
- `remove_sticky` (default true, optional) removes entries that are stickied.
|
67
|
+
|
68
|
+
```ruby
|
69
|
+
subreddit_all_posts = Reddit::Services::Listings.batch_new user, basepath_subreddit: "subreddit_name_without_r_slash", page_size:100, max_size:2000
|
70
|
+
```
|
71
|
+
note: There is API limitations that limits Listing endpoints to only cache the last 1000 entries and only allows a maximum of 100 entries per page.
|
72
|
+
|
73
|
+
## Logging
|
74
|
+
|
75
|
+
```ruby
|
76
|
+
Reddit::Internal::Logger.log.level = Log4r::DEBUG
|
77
|
+
```
|
78
|
+
|
79
|
+
Valid Log Levels are `DEBUG, INFO, WARN, ERROR, FATAL`
|
80
|
+
|
81
|
+
## Examples
|
82
|
+
|
83
|
+
A simple full example to retrieve a subreddit and gather the domains
|
84
|
+
|
85
|
+
```ruby
|
86
|
+
require "reddit/api"
|
87
|
+
# Sign In User, since we are just making a maximum of 10 calls throttling has been disabled.
|
88
|
+
user = Reddit::Services::User.new "username", "password", "script_id", "secret", "user-agent-title", request_throttle: false
|
89
|
+
# Retrieve Data
|
90
|
+
til_recent = Reddit::Services::Listings.batch_new user, basepath_subreddit: "todayilearned", page_size:100, max_size:500
|
91
|
+
|
92
|
+
# Process Results (Create a hash of domain -> # of posts)
|
93
|
+
posted_urls = {}
|
94
|
+
til_recent.each do |post|
|
95
|
+
domain = post["data"]["url"].split("/")[2]
|
96
|
+
posted_urls[domain] = 0 unless posted_urls.include?(domain)
|
97
|
+
|
98
|
+
posted_urls[domain] += 1
|
99
|
+
end
|
100
|
+
# Delete One offs
|
101
|
+
posted_urls.reject! {|k,v| v < 2 }
|
102
|
+
# Display results
|
103
|
+
puts JSON.pretty_generate(posted_urls)
|
104
|
+
```
|
105
|
+
|
106
|
+
|
107
|
+
## Contributing
|
108
|
+
|
109
|
+
To run rspec a file for configuring a user is required:
|
110
|
+
|
111
|
+
data/rspec_user.json
|
112
|
+
```json
|
113
|
+
{
|
114
|
+
"user": "",
|
115
|
+
"password": "",
|
116
|
+
"service_id": "",
|
117
|
+
"secret": ""
|
118
|
+
}
|
119
|
+
```
|
120
|
+
note: rspec will fail if the reddit service are unavaliable.
|
121
|
+
|
122
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/karl-b/reddit-api.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "reddit/api"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
require "pry"
|
11
|
+
|
12
|
+
binding.pry
|
data/bin/setup
ADDED
data/data.json
ADDED
@@ -0,0 +1,2654 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"kind": "Listing",
|
4
|
+
"data": {
|
5
|
+
"modhash": null,
|
6
|
+
"children": [
|
7
|
+
{
|
8
|
+
"kind": "t3",
|
9
|
+
"data": {
|
10
|
+
"domain": "arstechnica.com",
|
11
|
+
"banned_by": null,
|
12
|
+
"media_embed": {
|
13
|
+
},
|
14
|
+
"subreddit": "hoggit",
|
15
|
+
"selftext_html": null,
|
16
|
+
"selftext": "",
|
17
|
+
"likes": null,
|
18
|
+
"suggested_sort": null,
|
19
|
+
"user_reports": [
|
20
|
+
|
21
|
+
],
|
22
|
+
"secure_media": null,
|
23
|
+
"link_flair_text": null,
|
24
|
+
"id": "446ba4",
|
25
|
+
"from_kind": null,
|
26
|
+
"gilded": 0,
|
27
|
+
"archived": false,
|
28
|
+
"clicked": false,
|
29
|
+
"report_reasons": [
|
30
|
+
|
31
|
+
],
|
32
|
+
"author": "AirborneToast",
|
33
|
+
"media": null,
|
34
|
+
"name": "t3_446ba4",
|
35
|
+
"score": 48,
|
36
|
+
"approved_by": null,
|
37
|
+
"over_18": false,
|
38
|
+
"hidden": false,
|
39
|
+
"preview": {
|
40
|
+
"images": [
|
41
|
+
{
|
42
|
+
"source": {
|
43
|
+
"url": "https://i.redditmedia.com/4ohA8JQfuxM9g8BHHwFYMMm-ndVBf06u_JNi2kkXjD0.jpg?s=8dfff9f3af36345343e7400a249ad17f",
|
44
|
+
"width": 640,
|
45
|
+
"height": 426
|
46
|
+
},
|
47
|
+
"resolutions": [
|
48
|
+
{
|
49
|
+
"url": "https://i.redditmedia.com/4ohA8JQfuxM9g8BHHwFYMMm-ndVBf06u_JNi2kkXjD0.jpg?fit=crop&crop=faces%2Centropy&arh=2&w=108&s=00d8ca60d044c014246636719f05d8ac",
|
50
|
+
"width": 108,
|
51
|
+
"height": 71
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"url": "https://i.redditmedia.com/4ohA8JQfuxM9g8BHHwFYMMm-ndVBf06u_JNi2kkXjD0.jpg?fit=crop&crop=faces%2Centropy&arh=2&w=216&s=4f77b627de7d27940b39224e979e3824",
|
55
|
+
"width": 216,
|
56
|
+
"height": 143
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"url": "https://i.redditmedia.com/4ohA8JQfuxM9g8BHHwFYMMm-ndVBf06u_JNi2kkXjD0.jpg?fit=crop&crop=faces%2Centropy&arh=2&w=320&s=3fac62ab2a53c39d3ccc1d88d37dabca",
|
60
|
+
"width": 320,
|
61
|
+
"height": 213
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"url": "https://i.redditmedia.com/4ohA8JQfuxM9g8BHHwFYMMm-ndVBf06u_JNi2kkXjD0.jpg?fit=crop&crop=faces%2Centropy&arh=2&w=640&s=639a45a46c7baf6f02e91cbf8e7f84fd",
|
65
|
+
"width": 640,
|
66
|
+
"height": 426
|
67
|
+
}
|
68
|
+
],
|
69
|
+
"variants": {
|
70
|
+
},
|
71
|
+
"id": "I83MDYSMHOAh517ALf7yDFCydWNirb7n0zt_EpVDiBw"
|
72
|
+
}
|
73
|
+
]
|
74
|
+
},
|
75
|
+
"thumbnail": "http://b.thumbs.redditmedia.com/9GC2O816JVJoGLYA6F89Sp7DNNYnXcEon9oxKTrLDec.jpg",
|
76
|
+
"subreddit_id": "t5_2tifv",
|
77
|
+
"edited": false,
|
78
|
+
"link_flair_css_class": null,
|
79
|
+
"author_flair_css_class": null,
|
80
|
+
"downs": 0,
|
81
|
+
"mod_reports": [
|
82
|
+
|
83
|
+
],
|
84
|
+
"secure_media_embed": {
|
85
|
+
},
|
86
|
+
"saved": false,
|
87
|
+
"removal_reason": null,
|
88
|
+
"post_hint": "link",
|
89
|
+
"stickied": false,
|
90
|
+
"from": null,
|
91
|
+
"is_self": false,
|
92
|
+
"from_id": null,
|
93
|
+
"permalink": "/r/hoggit/comments/446ba4/fk_yeah_hogs_remain_in_business_until_at_least/",
|
94
|
+
"locked": false,
|
95
|
+
"hide_score": false,
|
96
|
+
"created": 1454636017.0,
|
97
|
+
"url": "http://arstechnica.com/information-technology/2016/02/a-10-to-fly-until-2022-as-dod-test-chief-warns-against-f-35-block-buy/",
|
98
|
+
"author_flair_text": null,
|
99
|
+
"quarantine": false,
|
100
|
+
"title": "F**k yeah! Hogs remain in business until at least 2022",
|
101
|
+
"created_utc": 1454607217.0,
|
102
|
+
"ups": 48,
|
103
|
+
"upvote_ratio": 0.86,
|
104
|
+
"num_comments": 63,
|
105
|
+
"visited": false,
|
106
|
+
"num_reports": 0,
|
107
|
+
"distinguished": null
|
108
|
+
}
|
109
|
+
}
|
110
|
+
],
|
111
|
+
"after": null,
|
112
|
+
"before": null
|
113
|
+
}
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"kind": "Listing",
|
117
|
+
"data": {
|
118
|
+
"modhash": null,
|
119
|
+
"children": [
|
120
|
+
{
|
121
|
+
"kind": "t1",
|
122
|
+
"data": {
|
123
|
+
"subreddit_id": "t5_2tifv",
|
124
|
+
"banned_by": null,
|
125
|
+
"removal_reason": null,
|
126
|
+
"link_id": "t3_446ba4",
|
127
|
+
"likes": null,
|
128
|
+
"replies": {
|
129
|
+
"kind": "Listing",
|
130
|
+
"data": {
|
131
|
+
"modhash": null,
|
132
|
+
"children": [
|
133
|
+
{
|
134
|
+
"kind": "t1",
|
135
|
+
"data": {
|
136
|
+
"subreddit_id": "t5_2tifv",
|
137
|
+
"banned_by": null,
|
138
|
+
"removal_reason": null,
|
139
|
+
"link_id": "t3_446ba4",
|
140
|
+
"likes": null,
|
141
|
+
"replies": {
|
142
|
+
"kind": "Listing",
|
143
|
+
"data": {
|
144
|
+
"modhash": null,
|
145
|
+
"children": [
|
146
|
+
{
|
147
|
+
"kind": "t1",
|
148
|
+
"data": {
|
149
|
+
"subreddit_id": "t5_2tifv",
|
150
|
+
"banned_by": null,
|
151
|
+
"removal_reason": null,
|
152
|
+
"link_id": "t3_446ba4",
|
153
|
+
"likes": null,
|
154
|
+
"replies": {
|
155
|
+
"kind": "Listing",
|
156
|
+
"data": {
|
157
|
+
"modhash": null,
|
158
|
+
"children": [
|
159
|
+
{
|
160
|
+
"kind": "t1",
|
161
|
+
"data": {
|
162
|
+
"subreddit_id": "t5_2tifv",
|
163
|
+
"banned_by": null,
|
164
|
+
"removal_reason": null,
|
165
|
+
"link_id": "t3_446ba4",
|
166
|
+
"likes": null,
|
167
|
+
"replies": {
|
168
|
+
"kind": "Listing",
|
169
|
+
"data": {
|
170
|
+
"modhash": null,
|
171
|
+
"children": [
|
172
|
+
{
|
173
|
+
"kind": "t1",
|
174
|
+
"data": {
|
175
|
+
"subreddit_id": "t5_2tifv",
|
176
|
+
"banned_by": null,
|
177
|
+
"removal_reason": null,
|
178
|
+
"link_id": "t3_446ba4",
|
179
|
+
"likes": null,
|
180
|
+
"replies": {
|
181
|
+
"kind": "Listing",
|
182
|
+
"data": {
|
183
|
+
"modhash": null,
|
184
|
+
"children": [
|
185
|
+
{
|
186
|
+
"kind": "t1",
|
187
|
+
"data": {
|
188
|
+
"subreddit_id": "t5_2tifv",
|
189
|
+
"banned_by": null,
|
190
|
+
"removal_reason": null,
|
191
|
+
"link_id": "t3_446ba4",
|
192
|
+
"likes": null,
|
193
|
+
"replies": {
|
194
|
+
"kind": "Listing",
|
195
|
+
"data": {
|
196
|
+
"modhash": null,
|
197
|
+
"children": [
|
198
|
+
{
|
199
|
+
"kind": "t1",
|
200
|
+
"data": {
|
201
|
+
"subreddit_id": "t5_2tifv",
|
202
|
+
"banned_by": null,
|
203
|
+
"removal_reason": null,
|
204
|
+
"link_id": "t3_446ba4",
|
205
|
+
"likes": null,
|
206
|
+
"replies": {
|
207
|
+
"kind": "Listing",
|
208
|
+
"data": {
|
209
|
+
"modhash": null,
|
210
|
+
"children": [
|
211
|
+
{
|
212
|
+
"kind": "t1",
|
213
|
+
"data": {
|
214
|
+
"subreddit_id": "t5_2tifv",
|
215
|
+
"banned_by": null,
|
216
|
+
"removal_reason": null,
|
217
|
+
"link_id": "t3_446ba4",
|
218
|
+
"likes": null,
|
219
|
+
"replies": {
|
220
|
+
"kind": "Listing",
|
221
|
+
"data": {
|
222
|
+
"modhash": null,
|
223
|
+
"children": [
|
224
|
+
{
|
225
|
+
"kind": "t1",
|
226
|
+
"data": {
|
227
|
+
"subreddit_id": "t5_2tifv",
|
228
|
+
"banned_by": null,
|
229
|
+
"removal_reason": null,
|
230
|
+
"link_id": "t3_446ba4",
|
231
|
+
"likes": null,
|
232
|
+
"replies": {
|
233
|
+
"kind": "Listing",
|
234
|
+
"data": {
|
235
|
+
"modhash": null,
|
236
|
+
"children": [
|
237
|
+
{
|
238
|
+
"kind": "t1",
|
239
|
+
"data": {
|
240
|
+
"subreddit_id": "t5_2tifv",
|
241
|
+
"banned_by": null,
|
242
|
+
"removal_reason": null,
|
243
|
+
"link_id": "t3_446ba4",
|
244
|
+
"likes": null,
|
245
|
+
"replies": {
|
246
|
+
"kind": "Listing",
|
247
|
+
"data": {
|
248
|
+
"modhash": null,
|
249
|
+
"children": [
|
250
|
+
{
|
251
|
+
"kind": "more",
|
252
|
+
"data": {
|
253
|
+
"count": 0,
|
254
|
+
"parent_id": "t1_czoxmg9",
|
255
|
+
"children": [
|
256
|
+
"czoz7ur"
|
257
|
+
],
|
258
|
+
"name": "t1_czoz7ur",
|
259
|
+
"id": "czoz7ur"
|
260
|
+
}
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"after": null,
|
264
|
+
"before": null
|
265
|
+
}
|
266
|
+
},
|
267
|
+
"user_reports": [
|
268
|
+
|
269
|
+
],
|
270
|
+
"saved": false,
|
271
|
+
"id": "czoxmg9",
|
272
|
+
"gilded": 0,
|
273
|
+
"archived": false,
|
274
|
+
"report_reasons": [
|
275
|
+
|
276
|
+
],
|
277
|
+
"author": "Stone_313",
|
278
|
+
"parent_id": "t1_czox6pe",
|
279
|
+
"score": 2,
|
280
|
+
"approved_by": null,
|
281
|
+
"controversiality": 0,
|
282
|
+
"body": "That sounds like the air forces way to say 'welcome to Iraq' xD\n\nThe combat landings/takeoffs really would make me think that this is not how this thing is suppose to fly. I mean those no restriction takeoffs by fighters are cool as fuck but it's really weird seeing big transpos pulling that hard after takeoff..",
|
283
|
+
"edited": false,
|
284
|
+
"author_flair_css_class": "",
|
285
|
+
"downs": 0,
|
286
|
+
"body_html": "<div class=\"md\"><p>That sounds like the air forces way to say &#39;welcome to Iraq&#39; xD</p>\n\n<p>The combat landings/takeoffs really would make me think that this is not how this thing is suppose to fly. I mean those no restriction takeoffs by fighters are cool as fuck but it&#39;s really weird seeing big transpos pulling that hard after takeoff..</p>\n</div>",
|
287
|
+
"subreddit": "hoggit",
|
288
|
+
"name": "t1_czoxmg9",
|
289
|
+
"score_hidden": false,
|
290
|
+
"stickied": false,
|
291
|
+
"created": 1454718002.0,
|
292
|
+
"author_flair_text": "Bingo Fuel",
|
293
|
+
"created_utc": 1454689202.0,
|
294
|
+
"distinguished": null,
|
295
|
+
"mod_reports": [
|
296
|
+
|
297
|
+
],
|
298
|
+
"num_reports": 0,
|
299
|
+
"ups": 2
|
300
|
+
}
|
301
|
+
}
|
302
|
+
],
|
303
|
+
"after": null,
|
304
|
+
"before": null
|
305
|
+
}
|
306
|
+
},
|
307
|
+
"user_reports": [
|
308
|
+
|
309
|
+
],
|
310
|
+
"saved": false,
|
311
|
+
"id": "czox6pe",
|
312
|
+
"gilded": 0,
|
313
|
+
"archived": false,
|
314
|
+
"report_reasons": [
|
315
|
+
|
316
|
+
],
|
317
|
+
"author": "TankerD18",
|
318
|
+
"parent_id": "t1_czowtit",
|
319
|
+
"score": 3,
|
320
|
+
"approved_by": null,
|
321
|
+
"controversiality": 0,
|
322
|
+
"body": "I've never been aboard a really crazy combat takeoff but I rode a C-130 into Mosul back during the hottest part of the surge and holy fucking shit man... A combat landing from the cargo compartment is scary as shit. You are just minding your own business, hating your life cause you're riding in the back of a C-130 then next thing you know you're falling the fuck out of the sky like a brick. To the uninitiated (which I was, I was going in to my first tour) you feel like you're gonna die. The seatbelt is the only thing holding you in the seat, might as well be one of those zero-gravity experience flights. Then you're falling, falling, falling, your life is flashing before your eyes then the plane pulls back hard as hell, reverse thrust throttles up and you stop really quick.\n\nScarier than hell when you don't know it's coming, but man was it cool. ",
|
323
|
+
"edited": false,
|
324
|
+
"author_flair_css_class": null,
|
325
|
+
"downs": 0,
|
326
|
+
"body_html": "<div class=\"md\"><p>I&#39;ve never been aboard a really crazy combat takeoff but I rode a C-130 into Mosul back during the hottest part of the surge and holy fucking shit man... A combat landing from the cargo compartment is scary as shit. You are just minding your own business, hating your life cause you&#39;re riding in the back of a C-130 then next thing you know you&#39;re falling the fuck out of the sky like a brick. To the uninitiated (which I was, I was going in to my first tour) you feel like you&#39;re gonna die. The seatbelt is the only thing holding you in the seat, might as well be one of those zero-gravity experience flights. Then you&#39;re falling, falling, falling, your life is flashing before your eyes then the plane pulls back hard as hell, reverse thrust throttles up and you stop really quick.</p>\n\n<p>Scarier than hell when you don&#39;t know it&#39;s coming, but man was it cool. </p>\n</div>",
|
327
|
+
"subreddit": "hoggit",
|
328
|
+
"name": "t1_czox6pe",
|
329
|
+
"score_hidden": false,
|
330
|
+
"stickied": false,
|
331
|
+
"created": 1454717335.0,
|
332
|
+
"author_flair_text": null,
|
333
|
+
"created_utc": 1454688535.0,
|
334
|
+
"distinguished": null,
|
335
|
+
"mod_reports": [
|
336
|
+
|
337
|
+
],
|
338
|
+
"num_reports": 0,
|
339
|
+
"ups": 3
|
340
|
+
}
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"after": null,
|
344
|
+
"before": null
|
345
|
+
}
|
346
|
+
},
|
347
|
+
"user_reports": [
|
348
|
+
|
349
|
+
],
|
350
|
+
"saved": false,
|
351
|
+
"id": "czowtit",
|
352
|
+
"gilded": 0,
|
353
|
+
"archived": false,
|
354
|
+
"report_reasons": [
|
355
|
+
|
356
|
+
],
|
357
|
+
"author": "Stone_313",
|
358
|
+
"parent_id": "t1_czorx7b",
|
359
|
+
"score": 2,
|
360
|
+
"approved_by": null,
|
361
|
+
"controversiality": 0,
|
362
|
+
"body": "Soviet ATGM very stronk but not accurate. :P\n\nDo they actually do the [combat takeoff/landings](https://www.youtube.com/watch?v=Ca3NFShK5Xs)?",
|
363
|
+
"edited": false,
|
364
|
+
"author_flair_css_class": "",
|
365
|
+
"downs": 0,
|
366
|
+
"body_html": "<div class=\"md\"><p>Soviet ATGM very stronk but not accurate. :P</p>\n\n<p>Do they actually do the <a href=\"https://www.youtube.com/watch?v=Ca3NFShK5Xs\">combat takeoff/landings</a>?</p>\n</div>",
|
367
|
+
"subreddit": "hoggit",
|
368
|
+
"name": "t1_czowtit",
|
369
|
+
"score_hidden": false,
|
370
|
+
"stickied": false,
|
371
|
+
"created": 1454716789.0,
|
372
|
+
"author_flair_text": "Bingo Fuel",
|
373
|
+
"created_utc": 1454687989.0,
|
374
|
+
"distinguished": null,
|
375
|
+
"mod_reports": [
|
376
|
+
|
377
|
+
],
|
378
|
+
"num_reports": 0,
|
379
|
+
"ups": 2
|
380
|
+
}
|
381
|
+
}
|
382
|
+
],
|
383
|
+
"after": null,
|
384
|
+
"before": null
|
385
|
+
}
|
386
|
+
},
|
387
|
+
"user_reports": [
|
388
|
+
|
389
|
+
],
|
390
|
+
"saved": false,
|
391
|
+
"id": "czorx7b",
|
392
|
+
"gilded": 0,
|
393
|
+
"archived": false,
|
394
|
+
"report_reasons": [
|
395
|
+
|
396
|
+
],
|
397
|
+
"author": "TankerD18",
|
398
|
+
"parent_id": "t1_czonsis",
|
399
|
+
"score": 2,
|
400
|
+
"approved_by": null,
|
401
|
+
"controversiality": 0,
|
402
|
+
"body": "Haha right? Yeah they missed every time, luckily. Every missile they were shooting was some old ass Soviet POS, makes you scratch your head when you think about where they were probably getting them from. But I wont go into that on here. ",
|
403
|
+
"edited": false,
|
404
|
+
"author_flair_css_class": null,
|
405
|
+
"downs": 0,
|
406
|
+
"body_html": "<div class=\"md\"><p>Haha right? Yeah they missed every time, luckily. Every missile they were shooting was some old ass Soviet POS, makes you scratch your head when you think about where they were probably getting them from. But I wont go into that on here. </p>\n</div>",
|
407
|
+
"subreddit": "hoggit",
|
408
|
+
"name": "t1_czorx7b",
|
409
|
+
"score_hidden": false,
|
410
|
+
"stickied": false,
|
411
|
+
"created": 1454707956.0,
|
412
|
+
"author_flair_text": null,
|
413
|
+
"created_utc": 1454679156.0,
|
414
|
+
"distinguished": null,
|
415
|
+
"mod_reports": [
|
416
|
+
|
417
|
+
],
|
418
|
+
"num_reports": 0,
|
419
|
+
"ups": 2
|
420
|
+
}
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"after": null,
|
424
|
+
"before": null
|
425
|
+
}
|
426
|
+
},
|
427
|
+
"user_reports": [
|
428
|
+
|
429
|
+
],
|
430
|
+
"saved": false,
|
431
|
+
"id": "czonsis",
|
432
|
+
"gilded": 0,
|
433
|
+
"archived": false,
|
434
|
+
"report_reasons": [
|
435
|
+
|
436
|
+
],
|
437
|
+
"author": "Stone_313",
|
438
|
+
"parent_id": "t1_czog01e",
|
439
|
+
"score": 2,
|
440
|
+
"approved_by": null,
|
441
|
+
"controversiality": 0,
|
442
|
+
"body": "I'm not suprised tbh. It's a big fat target..",
|
443
|
+
"edited": false,
|
444
|
+
"author_flair_css_class": "",
|
445
|
+
"downs": 0,
|
446
|
+
"body_html": "<div class=\"md\"><p>I&#39;m not suprised tbh. It&#39;s a big fat target..</p>\n</div>",
|
447
|
+
"subreddit": "hoggit",
|
448
|
+
"name": "t1_czonsis",
|
449
|
+
"score_hidden": false,
|
450
|
+
"stickied": false,
|
451
|
+
"created": 1454693315.0,
|
452
|
+
"author_flair_text": "Bingo Fuel",
|
453
|
+
"created_utc": 1454664515.0,
|
454
|
+
"distinguished": null,
|
455
|
+
"mod_reports": [
|
456
|
+
|
457
|
+
],
|
458
|
+
"num_reports": 0,
|
459
|
+
"ups": 2
|
460
|
+
}
|
461
|
+
}
|
462
|
+
],
|
463
|
+
"after": null,
|
464
|
+
"before": null
|
465
|
+
}
|
466
|
+
},
|
467
|
+
"user_reports": [
|
468
|
+
|
469
|
+
],
|
470
|
+
"saved": false,
|
471
|
+
"id": "czog01e",
|
472
|
+
"gilded": 0,
|
473
|
+
"archived": false,
|
474
|
+
"report_reasons": [
|
475
|
+
|
476
|
+
],
|
477
|
+
"author": "TankerD18",
|
478
|
+
"parent_id": "t1_czo7vdk",
|
479
|
+
"score": 2,
|
480
|
+
"approved_by": null,
|
481
|
+
"controversiality": 0,
|
482
|
+
"body": "When I was in Iraq they tried to hit them with ATGMs when they were taking off. ",
|
483
|
+
"edited": false,
|
484
|
+
"author_flair_css_class": null,
|
485
|
+
"downs": 0,
|
486
|
+
"body_html": "<div class=\"md\"><p>When I was in Iraq they tried to hit them with ATGMs when they were taking off. </p>\n</div>",
|
487
|
+
"subreddit": "hoggit",
|
488
|
+
"name": "t1_czog01e",
|
489
|
+
"score_hidden": false,
|
490
|
+
"stickied": false,
|
491
|
+
"created": 1454673112.0,
|
492
|
+
"author_flair_text": null,
|
493
|
+
"created_utc": 1454644312.0,
|
494
|
+
"distinguished": null,
|
495
|
+
"mod_reports": [
|
496
|
+
|
497
|
+
],
|
498
|
+
"num_reports": 0,
|
499
|
+
"ups": 2
|
500
|
+
}
|
501
|
+
}
|
502
|
+
],
|
503
|
+
"after": null,
|
504
|
+
"before": null
|
505
|
+
}
|
506
|
+
},
|
507
|
+
"user_reports": [
|
508
|
+
|
509
|
+
],
|
510
|
+
"saved": false,
|
511
|
+
"id": "czo7vdk",
|
512
|
+
"gilded": 0,
|
513
|
+
"archived": false,
|
514
|
+
"report_reasons": [
|
515
|
+
|
516
|
+
],
|
517
|
+
"author": "Stone_313",
|
518
|
+
"parent_id": "t1_czo4yag",
|
519
|
+
"score": 3,
|
520
|
+
"approved_by": null,
|
521
|
+
"controversiality": 0,
|
522
|
+
"body": "Agreed. You could prolly hit it with an RPG during daytime.. :P",
|
523
|
+
"edited": false,
|
524
|
+
"author_flair_css_class": "",
|
525
|
+
"downs": 0,
|
526
|
+
"body_html": "<div class=\"md\"><p>Agreed. You could prolly hit it with an RPG during daytime.. :P</p>\n</div>",
|
527
|
+
"subreddit": "hoggit",
|
528
|
+
"name": "t1_czo7vdk",
|
529
|
+
"score_hidden": false,
|
530
|
+
"stickied": false,
|
531
|
+
"created": 1454660069.0,
|
532
|
+
"author_flair_text": "Bingo Fuel",
|
533
|
+
"created_utc": 1454631269.0,
|
534
|
+
"distinguished": null,
|
535
|
+
"mod_reports": [
|
536
|
+
|
537
|
+
],
|
538
|
+
"num_reports": 0,
|
539
|
+
"ups": 3
|
540
|
+
}
|
541
|
+
}
|
542
|
+
],
|
543
|
+
"after": null,
|
544
|
+
"before": null
|
545
|
+
}
|
546
|
+
},
|
547
|
+
"user_reports": [
|
548
|
+
|
549
|
+
],
|
550
|
+
"saved": false,
|
551
|
+
"id": "czo4yag",
|
552
|
+
"gilded": 0,
|
553
|
+
"archived": false,
|
554
|
+
"report_reasons": [
|
555
|
+
|
556
|
+
],
|
557
|
+
"author": "TankerD18",
|
558
|
+
"parent_id": "t1_czntd4y",
|
559
|
+
"score": 4,
|
560
|
+
"approved_by": null,
|
561
|
+
"controversiality": 0,
|
562
|
+
"body": "Good luck dodging anything in a big ol' C-130. ",
|
563
|
+
"edited": false,
|
564
|
+
"author_flair_css_class": null,
|
565
|
+
"downs": 0,
|
566
|
+
"body_html": "<div class=\"md\"><p>Good luck dodging anything in a big ol&#39; C-130. </p>\n</div>",
|
567
|
+
"subreddit": "hoggit",
|
568
|
+
"name": "t1_czo4yag",
|
569
|
+
"score_hidden": false,
|
570
|
+
"stickied": false,
|
571
|
+
"created": 1454655428.0,
|
572
|
+
"author_flair_text": null,
|
573
|
+
"created_utc": 1454626628.0,
|
574
|
+
"distinguished": null,
|
575
|
+
"mod_reports": [
|
576
|
+
|
577
|
+
],
|
578
|
+
"num_reports": 0,
|
579
|
+
"ups": 4
|
580
|
+
}
|
581
|
+
}
|
582
|
+
],
|
583
|
+
"after": null,
|
584
|
+
"before": null
|
585
|
+
}
|
586
|
+
},
|
587
|
+
"user_reports": [
|
588
|
+
|
589
|
+
],
|
590
|
+
"saved": false,
|
591
|
+
"id": "czntd4y",
|
592
|
+
"gilded": 0,
|
593
|
+
"archived": false,
|
594
|
+
"report_reasons": [
|
595
|
+
|
596
|
+
],
|
597
|
+
"author": "Stone_313",
|
598
|
+
"parent_id": "t1_cznst2z",
|
599
|
+
"score": 13,
|
600
|
+
"approved_by": null,
|
601
|
+
"controversiality": 0,
|
602
|
+
"body": "AC-130's hunt at night mostly due to them being such a big ass target. Also lack of maneuverability and slow speeds makes MANPADS even bigger threat during daytime.",
|
603
|
+
"edited": false,
|
604
|
+
"author_flair_css_class": "",
|
605
|
+
"downs": 0,
|
606
|
+
"body_html": "<div class=\"md\"><p>AC-130&#39;s hunt at night mostly due to them being such a big ass target. Also lack of maneuverability and slow speeds makes MANPADS even bigger threat during daytime.</p>\n</div>",
|
607
|
+
"subreddit": "hoggit",
|
608
|
+
"name": "t1_czntd4y",
|
609
|
+
"score_hidden": false,
|
610
|
+
"stickied": false,
|
611
|
+
"created": 1454639284.0,
|
612
|
+
"author_flair_text": "Bingo Fuel",
|
613
|
+
"created_utc": 1454610484.0,
|
614
|
+
"distinguished": null,
|
615
|
+
"mod_reports": [
|
616
|
+
|
617
|
+
],
|
618
|
+
"num_reports": 0,
|
619
|
+
"ups": 13
|
620
|
+
}
|
621
|
+
},
|
622
|
+
{
|
623
|
+
"kind": "t1",
|
624
|
+
"data": {
|
625
|
+
"subreddit_id": "t5_2tifv",
|
626
|
+
"banned_by": null,
|
627
|
+
"removal_reason": null,
|
628
|
+
"link_id": "t3_446ba4",
|
629
|
+
"likes": null,
|
630
|
+
"replies": {
|
631
|
+
"kind": "Listing",
|
632
|
+
"data": {
|
633
|
+
"modhash": null,
|
634
|
+
"children": [
|
635
|
+
{
|
636
|
+
"kind": "t1",
|
637
|
+
"data": {
|
638
|
+
"subreddit_id": "t5_2tifv",
|
639
|
+
"banned_by": null,
|
640
|
+
"removal_reason": null,
|
641
|
+
"link_id": "t3_446ba4",
|
642
|
+
"likes": null,
|
643
|
+
"replies": {
|
644
|
+
"kind": "Listing",
|
645
|
+
"data": {
|
646
|
+
"modhash": null,
|
647
|
+
"children": [
|
648
|
+
{
|
649
|
+
"kind": "t1",
|
650
|
+
"data": {
|
651
|
+
"subreddit_id": "t5_2tifv",
|
652
|
+
"banned_by": null,
|
653
|
+
"removal_reason": null,
|
654
|
+
"link_id": "t3_446ba4",
|
655
|
+
"likes": null,
|
656
|
+
"replies": {
|
657
|
+
"kind": "Listing",
|
658
|
+
"data": {
|
659
|
+
"modhash": null,
|
660
|
+
"children": [
|
661
|
+
{
|
662
|
+
"kind": "t1",
|
663
|
+
"data": {
|
664
|
+
"subreddit_id": "t5_2tifv",
|
665
|
+
"banned_by": null,
|
666
|
+
"removal_reason": null,
|
667
|
+
"link_id": "t3_446ba4",
|
668
|
+
"likes": null,
|
669
|
+
"replies": {
|
670
|
+
"kind": "Listing",
|
671
|
+
"data": {
|
672
|
+
"modhash": null,
|
673
|
+
"children": [
|
674
|
+
{
|
675
|
+
"kind": "t1",
|
676
|
+
"data": {
|
677
|
+
"subreddit_id": "t5_2tifv",
|
678
|
+
"banned_by": null,
|
679
|
+
"removal_reason": null,
|
680
|
+
"link_id": "t3_446ba4",
|
681
|
+
"likes": null,
|
682
|
+
"replies": "",
|
683
|
+
"user_reports": [
|
684
|
+
|
685
|
+
],
|
686
|
+
"saved": false,
|
687
|
+
"id": "cznxbt9",
|
688
|
+
"gilded": 0,
|
689
|
+
"archived": false,
|
690
|
+
"report_reasons": [
|
691
|
+
|
692
|
+
],
|
693
|
+
"author": "Stone_313",
|
694
|
+
"parent_id": "t1_cznx1nv",
|
695
|
+
"score": 3,
|
696
|
+
"approved_by": null,
|
697
|
+
"controversiality": 0,
|
698
|
+
"body": "[Under the wings](http://i.kinja-img.com/gawker-media/image/upload/s--fBUPx-XP--/c_scale,fl_progressive,q_80,w_800/ywi1pin5syukxy6zynq1.jpg). It also has a system called '[Gunslinger](http://media.defenseindustrydaily.com/images/ORD_Harvest_HAWK_Derringer_Door_US_NAVAIR_lg.jpg)' that allows it to basically drop AGM-176 Griffin missiles and glide bombs..\n\n*edit - better gunslinger pic",
|
699
|
+
"edited": 1454616722.0,
|
700
|
+
"author_flair_css_class": "",
|
701
|
+
"downs": 0,
|
702
|
+
"body_html": "<div class=\"md\"><p><a href=\"http://i.kinja-img.com/gawker-media/image/upload/s--fBUPx-XP--/c_scale,fl_progressive,q_80,w_800/ywi1pin5syukxy6zynq1.jpg\">Under the wings</a>. It also has a system called &#39;<a href=\"http://media.defenseindustrydaily.com/images/ORD_Harvest_HAWK_Derringer_Door_US_NAVAIR_lg.jpg\">Gunslinger</a>&#39; that allows it to basically drop AGM-176 Griffin missiles and glide bombs..</p>\n\n<p>*edit - better gunslinger pic</p>\n</div>",
|
703
|
+
"subreddit": "hoggit",
|
704
|
+
"name": "t1_cznxbt9",
|
705
|
+
"score_hidden": false,
|
706
|
+
"stickied": false,
|
707
|
+
"created": 1454644678.0,
|
708
|
+
"author_flair_text": "Bingo Fuel",
|
709
|
+
"created_utc": 1454615878.0,
|
710
|
+
"distinguished": null,
|
711
|
+
"mod_reports": [
|
712
|
+
|
713
|
+
],
|
714
|
+
"num_reports": 0,
|
715
|
+
"ups": 3
|
716
|
+
}
|
717
|
+
}
|
718
|
+
],
|
719
|
+
"after": null,
|
720
|
+
"before": null
|
721
|
+
}
|
722
|
+
},
|
723
|
+
"user_reports": [
|
724
|
+
|
725
|
+
],
|
726
|
+
"saved": false,
|
727
|
+
"id": "cznx1nv",
|
728
|
+
"gilded": 0,
|
729
|
+
"archived": false,
|
730
|
+
"report_reasons": [
|
731
|
+
|
732
|
+
],
|
733
|
+
"author": "ClimbingC",
|
734
|
+
"parent_id": "t1_cznvp9j",
|
735
|
+
"score": 3,
|
736
|
+
"approved_by": null,
|
737
|
+
"controversiality": 0,
|
738
|
+
"body": "Regarding the bombs, do they store them inside the aircraft and just lob them out the back ramp (I'm imagining a very muscular air load master type with an LGBon his shoulder just throwing them out the back door)? I guess it could carry quite a few of them.",
|
739
|
+
"edited": false,
|
740
|
+
"author_flair_css_class": null,
|
741
|
+
"downs": 0,
|
742
|
+
"body_html": "<div class=\"md\"><p>Regarding the bombs, do they store them inside the aircraft and just lob them out the back ramp (I&#39;m imagining a very muscular air load master type with an LGBon his shoulder just throwing them out the back door)? I guess it could carry quite a few of them.</p>\n</div>",
|
743
|
+
"subreddit": "hoggit",
|
744
|
+
"name": "t1_cznx1nv",
|
745
|
+
"score_hidden": false,
|
746
|
+
"stickied": false,
|
747
|
+
"created": 1454644308.0,
|
748
|
+
"author_flair_text": null,
|
749
|
+
"created_utc": 1454615508.0,
|
750
|
+
"distinguished": null,
|
751
|
+
"mod_reports": [
|
752
|
+
|
753
|
+
],
|
754
|
+
"num_reports": 0,
|
755
|
+
"ups": 3
|
756
|
+
}
|
757
|
+
}
|
758
|
+
],
|
759
|
+
"after": null,
|
760
|
+
"before": null
|
761
|
+
}
|
762
|
+
},
|
763
|
+
"user_reports": [
|
764
|
+
|
765
|
+
],
|
766
|
+
"saved": false,
|
767
|
+
"id": "cznvp9j",
|
768
|
+
"gilded": 0,
|
769
|
+
"archived": false,
|
770
|
+
"report_reasons": [
|
771
|
+
|
772
|
+
],
|
773
|
+
"author": "Stone_313",
|
774
|
+
"parent_id": "t1_cznuoaa",
|
775
|
+
"score": 6,
|
776
|
+
"approved_by": null,
|
777
|
+
"controversiality": 0,
|
778
|
+
"body": "Ofc they CAN be used during the day if they are really needed. But there is only 47 of them, and they make a big target for all sorts of weapons(apperantly they like to operate at 7k feet'ish). So it's really a disaster waiting to happen. So it's cheaper and safer to get the hogs, vipers/etc to provide CAS during the daytime ops.\n\nAnd from what i have gathered, the stinger(AC-130W) model actually can carry laser guided bombs(GBU-39) now. So it doesn't have to loiter straight over the targets to provide that precision whoop-ass. D:\n\nFYI, i'm no expert on the AC-130, these are just things i have gotten from the interwebs, and as we all know, it's not exactly 100% accurate info. :P",
|
779
|
+
"edited": false,
|
780
|
+
"author_flair_css_class": "",
|
781
|
+
"downs": 0,
|
782
|
+
"body_html": "<div class=\"md\"><p>Ofc they CAN be used during the day if they are really needed. But there is only 47 of them, and they make a big target for all sorts of weapons(apperantly they like to operate at 7k feet&#39;ish). So it&#39;s really a disaster waiting to happen. So it&#39;s cheaper and safer to get the hogs, vipers/etc to provide CAS during the daytime ops.</p>\n\n<p>And from what i have gathered, the stinger(AC-130W) model actually can carry laser guided bombs(GBU-39) now. So it doesn&#39;t have to loiter straight over the targets to provide that precision whoop-ass. D:</p>\n\n<p>FYI, i&#39;m no expert on the AC-130, these are just things i have gotten from the interwebs, and as we all know, it&#39;s not exactly 100% accurate info. :P</p>\n</div>",
|
783
|
+
"subreddit": "hoggit",
|
784
|
+
"name": "t1_cznvp9j",
|
785
|
+
"score_hidden": false,
|
786
|
+
"stickied": false,
|
787
|
+
"created": 1454642463.0,
|
788
|
+
"author_flair_text": "Bingo Fuel",
|
789
|
+
"created_utc": 1454613663.0,
|
790
|
+
"distinguished": null,
|
791
|
+
"mod_reports": [
|
792
|
+
|
793
|
+
],
|
794
|
+
"num_reports": 0,
|
795
|
+
"ups": 6
|
796
|
+
}
|
797
|
+
}
|
798
|
+
],
|
799
|
+
"after": null,
|
800
|
+
"before": null
|
801
|
+
}
|
802
|
+
},
|
803
|
+
"user_reports": [
|
804
|
+
|
805
|
+
],
|
806
|
+
"saved": false,
|
807
|
+
"id": "cznuoaa",
|
808
|
+
"gilded": 0,
|
809
|
+
"archived": false,
|
810
|
+
"report_reasons": [
|
811
|
+
|
812
|
+
],
|
813
|
+
"author": "AviatorMoser",
|
814
|
+
"parent_id": "t1_cznudwq",
|
815
|
+
"score": 1,
|
816
|
+
"approved_by": null,
|
817
|
+
"controversiality": 0,
|
818
|
+
"body": "I see the expense side that's for sure.\n\nBut is the nocturnal limitation still true today? I thought I heard recently they are now being used in day ops because they are being upgraded to cope with the MANPAD threat.",
|
819
|
+
"edited": false,
|
820
|
+
"author_flair_css_class": null,
|
821
|
+
"downs": 0,
|
822
|
+
"body_html": "<div class=\"md\"><p>I see the expense side that&#39;s for sure.</p>\n\n<p>But is the nocturnal limitation still true today? I thought I heard recently they are now being used in day ops because they are being upgraded to cope with the MANPAD threat.</p>\n</div>",
|
823
|
+
"subreddit": "hoggit",
|
824
|
+
"name": "t1_cznuoaa",
|
825
|
+
"score_hidden": false,
|
826
|
+
"stickied": false,
|
827
|
+
"created": 1454641056.0,
|
828
|
+
"author_flair_text": null,
|
829
|
+
"created_utc": 1454612256.0,
|
830
|
+
"distinguished": null,
|
831
|
+
"mod_reports": [
|
832
|
+
|
833
|
+
],
|
834
|
+
"num_reports": 0,
|
835
|
+
"ups": 1
|
836
|
+
}
|
837
|
+
}
|
838
|
+
],
|
839
|
+
"after": null,
|
840
|
+
"before": null
|
841
|
+
}
|
842
|
+
},
|
843
|
+
"user_reports": [
|
844
|
+
|
845
|
+
],
|
846
|
+
"saved": false,
|
847
|
+
"id": "cznudwq",
|
848
|
+
"gilded": 0,
|
849
|
+
"archived": false,
|
850
|
+
"report_reasons": [
|
851
|
+
|
852
|
+
],
|
853
|
+
"author": "LazerSturgeon",
|
854
|
+
"parent_id": "t1_cznst2z",
|
855
|
+
"score": 6,
|
856
|
+
"approved_by": null,
|
857
|
+
"controversiality": 0,
|
858
|
+
"body": "AC-130's are very expensive. \n\nPlus they're big, obvious targets that also need to get quite close to their targets. This makes them susceptible to MANPADs which means they don't like to deploy them during the day.",
|
859
|
+
"edited": false,
|
860
|
+
"author_flair_css_class": "",
|
861
|
+
"downs": 0,
|
862
|
+
"body_html": "<div class=\"md\"><p>AC-130&#39;s are very expensive. </p>\n\n<p>Plus they&#39;re big, obvious targets that also need to get quite close to their targets. This makes them susceptible to MANPADs which means they don&#39;t like to deploy them during the day.</p>\n</div>",
|
863
|
+
"subreddit": "hoggit",
|
864
|
+
"name": "t1_cznudwq",
|
865
|
+
"score_hidden": false,
|
866
|
+
"stickied": false,
|
867
|
+
"created": 1454640671.0,
|
868
|
+
"author_flair_text": "Zerbob",
|
869
|
+
"created_utc": 1454611871.0,
|
870
|
+
"distinguished": null,
|
871
|
+
"mod_reports": [
|
872
|
+
|
873
|
+
],
|
874
|
+
"num_reports": 0,
|
875
|
+
"ups": 6
|
876
|
+
}
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"kind": "t1",
|
880
|
+
"data": {
|
881
|
+
"subreddit_id": "t5_2tifv",
|
882
|
+
"banned_by": null,
|
883
|
+
"removal_reason": null,
|
884
|
+
"link_id": "t3_446ba4",
|
885
|
+
"likes": null,
|
886
|
+
"replies": {
|
887
|
+
"kind": "Listing",
|
888
|
+
"data": {
|
889
|
+
"modhash": null,
|
890
|
+
"children": [
|
891
|
+
{
|
892
|
+
"kind": "t1",
|
893
|
+
"data": {
|
894
|
+
"subreddit_id": "t5_2tifv",
|
895
|
+
"banned_by": null,
|
896
|
+
"removal_reason": null,
|
897
|
+
"link_id": "t3_446ba4",
|
898
|
+
"likes": null,
|
899
|
+
"replies": {
|
900
|
+
"kind": "Listing",
|
901
|
+
"data": {
|
902
|
+
"modhash": null,
|
903
|
+
"children": [
|
904
|
+
{
|
905
|
+
"kind": "t1",
|
906
|
+
"data": {
|
907
|
+
"subreddit_id": "t5_2tifv",
|
908
|
+
"banned_by": null,
|
909
|
+
"removal_reason": null,
|
910
|
+
"link_id": "t3_446ba4",
|
911
|
+
"likes": null,
|
912
|
+
"replies": {
|
913
|
+
"kind": "Listing",
|
914
|
+
"data": {
|
915
|
+
"modhash": null,
|
916
|
+
"children": [
|
917
|
+
{
|
918
|
+
"kind": "t1",
|
919
|
+
"data": {
|
920
|
+
"subreddit_id": "t5_2tifv",
|
921
|
+
"banned_by": null,
|
922
|
+
"removal_reason": null,
|
923
|
+
"link_id": "t3_446ba4",
|
924
|
+
"likes": null,
|
925
|
+
"replies": {
|
926
|
+
"kind": "Listing",
|
927
|
+
"data": {
|
928
|
+
"modhash": null,
|
929
|
+
"children": [
|
930
|
+
{
|
931
|
+
"kind": "t1",
|
932
|
+
"data": {
|
933
|
+
"subreddit_id": "t5_2tifv",
|
934
|
+
"banned_by": null,
|
935
|
+
"removal_reason": null,
|
936
|
+
"link_id": "t3_446ba4",
|
937
|
+
"likes": null,
|
938
|
+
"replies": "",
|
939
|
+
"user_reports": [
|
940
|
+
|
941
|
+
],
|
942
|
+
"saved": false,
|
943
|
+
"id": "czo2q6o",
|
944
|
+
"gilded": 0,
|
945
|
+
"archived": false,
|
946
|
+
"report_reasons": [
|
947
|
+
|
948
|
+
],
|
949
|
+
"author": "tmoney321",
|
950
|
+
"parent_id": "t1_czo2nsu",
|
951
|
+
"score": -1,
|
952
|
+
"approved_by": null,
|
953
|
+
"controversiality": 0,
|
954
|
+
"body": "I love AC130s. I spent about an hour yesterday watching gun cam footage and listening to how the crew communicates during a sortie.",
|
955
|
+
"edited": false,
|
956
|
+
"author_flair_css_class": null,
|
957
|
+
"downs": 0,
|
958
|
+
"body_html": "<div class=\"md\"><p>I love AC130s. I spent about an hour yesterday watching gun cam footage and listening to how the crew communicates during a sortie.</p>\n</div>",
|
959
|
+
"subreddit": "hoggit",
|
960
|
+
"name": "t1_czo2q6o",
|
961
|
+
"score_hidden": false,
|
962
|
+
"stickied": false,
|
963
|
+
"created": 1454652118.0,
|
964
|
+
"author_flair_text": null,
|
965
|
+
"created_utc": 1454623318.0,
|
966
|
+
"distinguished": null,
|
967
|
+
"mod_reports": [
|
968
|
+
|
969
|
+
],
|
970
|
+
"num_reports": 0,
|
971
|
+
"ups": -1
|
972
|
+
}
|
973
|
+
}
|
974
|
+
],
|
975
|
+
"after": null,
|
976
|
+
"before": null
|
977
|
+
}
|
978
|
+
},
|
979
|
+
"user_reports": [
|
980
|
+
|
981
|
+
],
|
982
|
+
"saved": false,
|
983
|
+
"id": "czo2nsu",
|
984
|
+
"gilded": 0,
|
985
|
+
"archived": false,
|
986
|
+
"report_reasons": [
|
987
|
+
|
988
|
+
],
|
989
|
+
"author": "AviatorMoser",
|
990
|
+
"parent_id": "t1_czo1mqr",
|
991
|
+
"score": 2,
|
992
|
+
"approved_by": null,
|
993
|
+
"controversiality": 0,
|
994
|
+
"body": "TIL I learned why our defense budget is the largest in the world.\n\n\"MOAR AC-130s!\"",
|
995
|
+
"edited": false,
|
996
|
+
"author_flair_css_class": null,
|
997
|
+
"downs": 0,
|
998
|
+
"body_html": "<div class=\"md\"><p>TIL I learned why our defense budget is the largest in the world.</p>\n\n<p>&quot;MOAR AC-130s!&quot;</p>\n</div>",
|
999
|
+
"subreddit": "hoggit",
|
1000
|
+
"name": "t1_czo2nsu",
|
1001
|
+
"score_hidden": false,
|
1002
|
+
"stickied": false,
|
1003
|
+
"created": 1454652020.0,
|
1004
|
+
"author_flair_text": null,
|
1005
|
+
"created_utc": 1454623220.0,
|
1006
|
+
"distinguished": null,
|
1007
|
+
"mod_reports": [
|
1008
|
+
|
1009
|
+
],
|
1010
|
+
"num_reports": 0,
|
1011
|
+
"ups": 2
|
1012
|
+
}
|
1013
|
+
}
|
1014
|
+
],
|
1015
|
+
"after": null,
|
1016
|
+
"before": null
|
1017
|
+
}
|
1018
|
+
},
|
1019
|
+
"user_reports": [
|
1020
|
+
|
1021
|
+
],
|
1022
|
+
"saved": false,
|
1023
|
+
"id": "czo1mqr",
|
1024
|
+
"gilded": 0,
|
1025
|
+
"archived": false,
|
1026
|
+
"report_reasons": [
|
1027
|
+
|
1028
|
+
],
|
1029
|
+
"author": "tmoney321",
|
1030
|
+
"parent_id": "t1_cznuv6y",
|
1031
|
+
"score": 3,
|
1032
|
+
"approved_by": null,
|
1033
|
+
"controversiality": 0,
|
1034
|
+
"body": "Holy shit, $190M! Today I learned...",
|
1035
|
+
"edited": false,
|
1036
|
+
"author_flair_css_class": null,
|
1037
|
+
"downs": 0,
|
1038
|
+
"body_html": "<div class=\"md\"><p>Holy shit, $190M! Today I learned...</p>\n</div>",
|
1039
|
+
"subreddit": "hoggit",
|
1040
|
+
"name": "t1_czo1mqr",
|
1041
|
+
"score_hidden": false,
|
1042
|
+
"stickied": false,
|
1043
|
+
"created": 1454650585.0,
|
1044
|
+
"author_flair_text": null,
|
1045
|
+
"created_utc": 1454621785.0,
|
1046
|
+
"distinguished": null,
|
1047
|
+
"mod_reports": [
|
1048
|
+
|
1049
|
+
],
|
1050
|
+
"num_reports": 0,
|
1051
|
+
"ups": 3
|
1052
|
+
}
|
1053
|
+
}
|
1054
|
+
],
|
1055
|
+
"after": null,
|
1056
|
+
"before": null
|
1057
|
+
}
|
1058
|
+
},
|
1059
|
+
"user_reports": [
|
1060
|
+
|
1061
|
+
],
|
1062
|
+
"saved": false,
|
1063
|
+
"id": "cznuv6y",
|
1064
|
+
"gilded": 0,
|
1065
|
+
"archived": false,
|
1066
|
+
"report_reasons": [
|
1067
|
+
|
1068
|
+
],
|
1069
|
+
"author": "AviatorMoser",
|
1070
|
+
"parent_id": "t1_cznuqa2",
|
1071
|
+
"score": 2,
|
1072
|
+
"approved_by": null,
|
1073
|
+
"controversiality": 0,
|
1074
|
+
"body": "Yeah, I just read the unit cost for an AC-130U.\n\nHoly crap.",
|
1075
|
+
"edited": false,
|
1076
|
+
"author_flair_css_class": null,
|
1077
|
+
"downs": 0,
|
1078
|
+
"body_html": "<div class=\"md\"><p>Yeah, I just read the unit cost for an AC-130U.</p>\n\n<p>Holy crap.</p>\n</div>",
|
1079
|
+
"subreddit": "hoggit",
|
1080
|
+
"name": "t1_cznuv6y",
|
1081
|
+
"score_hidden": false,
|
1082
|
+
"stickied": false,
|
1083
|
+
"created": 1454641312.0,
|
1084
|
+
"author_flair_text": null,
|
1085
|
+
"created_utc": 1454612512.0,
|
1086
|
+
"distinguished": null,
|
1087
|
+
"mod_reports": [
|
1088
|
+
|
1089
|
+
],
|
1090
|
+
"num_reports": 0,
|
1091
|
+
"ups": 2
|
1092
|
+
}
|
1093
|
+
}
|
1094
|
+
],
|
1095
|
+
"after": null,
|
1096
|
+
"before": null
|
1097
|
+
}
|
1098
|
+
},
|
1099
|
+
"user_reports": [
|
1100
|
+
|
1101
|
+
],
|
1102
|
+
"saved": false,
|
1103
|
+
"id": "cznuqa2",
|
1104
|
+
"gilded": 0,
|
1105
|
+
"archived": false,
|
1106
|
+
"report_reasons": [
|
1107
|
+
|
1108
|
+
],
|
1109
|
+
"author": "Moofies",
|
1110
|
+
"parent_id": "t1_cznst2z",
|
1111
|
+
"score": 3,
|
1112
|
+
"approved_by": null,
|
1113
|
+
"controversiality": 0,
|
1114
|
+
"body": "Cost, survivability, flexibility, precision, and the variety of weapons available. You can have a fair few A-10s for the same cost as an AC-130, so you get operational flexibility there too.",
|
1115
|
+
"edited": false,
|
1116
|
+
"author_flair_css_class": null,
|
1117
|
+
"downs": 0,
|
1118
|
+
"body_html": "<div class=\"md\"><p>Cost, survivability, flexibility, precision, and the variety of weapons available. You can have a fair few A-10s for the same cost as an AC-130, so you get operational flexibility there too.</p>\n</div>",
|
1119
|
+
"subreddit": "hoggit",
|
1120
|
+
"name": "t1_cznuqa2",
|
1121
|
+
"score_hidden": false,
|
1122
|
+
"stickied": false,
|
1123
|
+
"created": 1454641129.0,
|
1124
|
+
"author_flair_text": null,
|
1125
|
+
"created_utc": 1454612329.0,
|
1126
|
+
"distinguished": null,
|
1127
|
+
"mod_reports": [
|
1128
|
+
|
1129
|
+
],
|
1130
|
+
"num_reports": 0,
|
1131
|
+
"ups": 3
|
1132
|
+
}
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
"kind": "t1",
|
1136
|
+
"data": {
|
1137
|
+
"subreddit_id": "t5_2tifv",
|
1138
|
+
"banned_by": null,
|
1139
|
+
"removal_reason": null,
|
1140
|
+
"link_id": "t3_446ba4",
|
1141
|
+
"likes": null,
|
1142
|
+
"replies": "",
|
1143
|
+
"user_reports": [
|
1144
|
+
|
1145
|
+
],
|
1146
|
+
"saved": false,
|
1147
|
+
"id": "czo3aoi",
|
1148
|
+
"gilded": 0,
|
1149
|
+
"archived": false,
|
1150
|
+
"report_reasons": [
|
1151
|
+
|
1152
|
+
],
|
1153
|
+
"author": "RalphNLD",
|
1154
|
+
"parent_id": "t1_cznst2z",
|
1155
|
+
"score": 3,
|
1156
|
+
"approved_by": null,
|
1157
|
+
"controversiality": 0,
|
1158
|
+
"body": "Cost, size, manoeuvrability. And you can't bus over an entire AC-130 every time a bunch of insurgents take a pot-shot at a convoy of humvees.",
|
1159
|
+
"edited": false,
|
1160
|
+
"author_flair_css_class": "",
|
1161
|
+
"downs": 0,
|
1162
|
+
"body_html": "<div class=\"md\"><p>Cost, size, manoeuvrability. And you can&#39;t bus over an entire AC-130 every time a bunch of insurgents take a pot-shot at a convoy of humvees.</p>\n</div>",
|
1163
|
+
"subreddit": "hoggit",
|
1164
|
+
"name": "t1_czo3aoi",
|
1165
|
+
"score_hidden": false,
|
1166
|
+
"stickied": false,
|
1167
|
+
"created": 1454652949.0,
|
1168
|
+
"author_flair_text": "When in doubt, apply Maverick",
|
1169
|
+
"created_utc": 1454624149.0,
|
1170
|
+
"distinguished": null,
|
1171
|
+
"mod_reports": [
|
1172
|
+
|
1173
|
+
],
|
1174
|
+
"num_reports": 0,
|
1175
|
+
"ups": 3
|
1176
|
+
}
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"kind": "t1",
|
1180
|
+
"data": {
|
1181
|
+
"subreddit_id": "t5_2tifv",
|
1182
|
+
"banned_by": null,
|
1183
|
+
"removal_reason": null,
|
1184
|
+
"link_id": "t3_446ba4",
|
1185
|
+
"likes": null,
|
1186
|
+
"replies": {
|
1187
|
+
"kind": "Listing",
|
1188
|
+
"data": {
|
1189
|
+
"modhash": null,
|
1190
|
+
"children": [
|
1191
|
+
{
|
1192
|
+
"kind": "t1",
|
1193
|
+
"data": {
|
1194
|
+
"subreddit_id": "t5_2tifv",
|
1195
|
+
"banned_by": null,
|
1196
|
+
"removal_reason": null,
|
1197
|
+
"link_id": "t3_446ba4",
|
1198
|
+
"likes": null,
|
1199
|
+
"replies": {
|
1200
|
+
"kind": "Listing",
|
1201
|
+
"data": {
|
1202
|
+
"modhash": null,
|
1203
|
+
"children": [
|
1204
|
+
{
|
1205
|
+
"kind": "t1",
|
1206
|
+
"data": {
|
1207
|
+
"subreddit_id": "t5_2tifv",
|
1208
|
+
"banned_by": null,
|
1209
|
+
"removal_reason": null,
|
1210
|
+
"link_id": "t3_446ba4",
|
1211
|
+
"likes": null,
|
1212
|
+
"replies": "",
|
1213
|
+
"user_reports": [
|
1214
|
+
|
1215
|
+
],
|
1216
|
+
"saved": false,
|
1217
|
+
"id": "cznt9jz",
|
1218
|
+
"gilded": 0,
|
1219
|
+
"archived": false,
|
1220
|
+
"report_reasons": [
|
1221
|
+
|
1222
|
+
],
|
1223
|
+
"author": "Spookies_",
|
1224
|
+
"parent_id": "t1_cznt7ja",
|
1225
|
+
"score": 2,
|
1226
|
+
"approved_by": null,
|
1227
|
+
"controversiality": 0,
|
1228
|
+
"body": "I'd assume weapon load too. ",
|
1229
|
+
"edited": false,
|
1230
|
+
"author_flair_css_class": "",
|
1231
|
+
"downs": 0,
|
1232
|
+
"body_html": "<div class=\"md\"><p>I&#39;d assume weapon load too. </p>\n</div>",
|
1233
|
+
"subreddit": "hoggit",
|
1234
|
+
"name": "t1_cznt9jz",
|
1235
|
+
"score_hidden": false,
|
1236
|
+
"stickied": false,
|
1237
|
+
"created": 1454639150.0,
|
1238
|
+
"author_flair_text": "Steam /id/: Spookies_ | Su-25A best Su-25",
|
1239
|
+
"created_utc": 1454610350.0,
|
1240
|
+
"distinguished": null,
|
1241
|
+
"mod_reports": [
|
1242
|
+
|
1243
|
+
],
|
1244
|
+
"num_reports": 0,
|
1245
|
+
"ups": 2
|
1246
|
+
}
|
1247
|
+
}
|
1248
|
+
],
|
1249
|
+
"after": null,
|
1250
|
+
"before": null
|
1251
|
+
}
|
1252
|
+
},
|
1253
|
+
"user_reports": [
|
1254
|
+
|
1255
|
+
],
|
1256
|
+
"saved": false,
|
1257
|
+
"id": "cznt7ja",
|
1258
|
+
"gilded": 0,
|
1259
|
+
"archived": false,
|
1260
|
+
"report_reasons": [
|
1261
|
+
|
1262
|
+
],
|
1263
|
+
"author": "Rafal0id",
|
1264
|
+
"parent_id": "t1_cznsyhz",
|
1265
|
+
"score": 4,
|
1266
|
+
"approved_by": null,
|
1267
|
+
"controversiality": 0,
|
1268
|
+
"body": "Cost effectiveness?",
|
1269
|
+
"edited": false,
|
1270
|
+
"author_flair_css_class": "",
|
1271
|
+
"downs": 0,
|
1272
|
+
"body_html": "<div class=\"md\"><p>Cost effectiveness?</p>\n</div>",
|
1273
|
+
"subreddit": "hoggit",
|
1274
|
+
"name": "t1_cznt7ja",
|
1275
|
+
"score_hidden": false,
|
1276
|
+
"stickied": false,
|
1277
|
+
"created": 1454639072.0,
|
1278
|
+
"author_flair_text": "An helicopter is an accident looking for a place to happen",
|
1279
|
+
"created_utc": 1454610272.0,
|
1280
|
+
"distinguished": null,
|
1281
|
+
"mod_reports": [
|
1282
|
+
|
1283
|
+
],
|
1284
|
+
"num_reports": 0,
|
1285
|
+
"ups": 4
|
1286
|
+
}
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
"kind": "t1",
|
1290
|
+
"data": {
|
1291
|
+
"subreddit_id": "t5_2tifv",
|
1292
|
+
"banned_by": null,
|
1293
|
+
"removal_reason": null,
|
1294
|
+
"link_id": "t3_446ba4",
|
1295
|
+
"likes": null,
|
1296
|
+
"replies": {
|
1297
|
+
"kind": "Listing",
|
1298
|
+
"data": {
|
1299
|
+
"modhash": null,
|
1300
|
+
"children": [
|
1301
|
+
{
|
1302
|
+
"kind": "t1",
|
1303
|
+
"data": {
|
1304
|
+
"subreddit_id": "t5_2tifv",
|
1305
|
+
"banned_by": null,
|
1306
|
+
"removal_reason": null,
|
1307
|
+
"link_id": "t3_446ba4",
|
1308
|
+
"likes": null,
|
1309
|
+
"replies": "",
|
1310
|
+
"user_reports": [
|
1311
|
+
|
1312
|
+
],
|
1313
|
+
"saved": false,
|
1314
|
+
"id": "cznufw1",
|
1315
|
+
"gilded": 0,
|
1316
|
+
"archived": false,
|
1317
|
+
"report_reasons": [
|
1318
|
+
|
1319
|
+
],
|
1320
|
+
"author": "AviatorMoser",
|
1321
|
+
"parent_id": "t1_czntm5t",
|
1322
|
+
"score": 5,
|
1323
|
+
"approved_by": null,
|
1324
|
+
"controversiality": 0,
|
1325
|
+
"body": "Yeah, in the context of COIN specifically, because I don't see either platforms doing well in an area with ample, capable AA.\n\nFrom what I've read, the AC-130 has a longer loiter time, larger ammo supply, and can be configured to use the its standard configuration today of howitzers and chain guns, or equipped to use stand-off weapons such as AGM-114 Hellfires, GBU-39 SDBs, and a GBU-44s in the Stinger II configuration.\n\nNice punch.",
|
1326
|
+
"edited": false,
|
1327
|
+
"author_flair_css_class": null,
|
1328
|
+
"downs": 0,
|
1329
|
+
"body_html": "<div class=\"md\"><p>Yeah, in the context of COIN specifically, because I don&#39;t see either platforms doing well in an area with ample, capable AA.</p>\n\n<p>From what I&#39;ve read, the AC-130 has a longer loiter time, larger ammo supply, and can be configured to use the its standard configuration today of howitzers and chain guns, or equipped to use stand-off weapons such as AGM-114 Hellfires, GBU-39 SDBs, and a GBU-44s in the Stinger II configuration.</p>\n\n<p>Nice punch.</p>\n</div>",
|
1330
|
+
"subreddit": "hoggit",
|
1331
|
+
"name": "t1_cznufw1",
|
1332
|
+
"score_hidden": false,
|
1333
|
+
"stickied": false,
|
1334
|
+
"created": 1454640745.0,
|
1335
|
+
"author_flair_text": null,
|
1336
|
+
"created_utc": 1454611945.0,
|
1337
|
+
"distinguished": null,
|
1338
|
+
"mod_reports": [
|
1339
|
+
|
1340
|
+
],
|
1341
|
+
"num_reports": 0,
|
1342
|
+
"ups": 5
|
1343
|
+
}
|
1344
|
+
}
|
1345
|
+
],
|
1346
|
+
"after": null,
|
1347
|
+
"before": null
|
1348
|
+
}
|
1349
|
+
},
|
1350
|
+
"user_reports": [
|
1351
|
+
|
1352
|
+
],
|
1353
|
+
"saved": false,
|
1354
|
+
"id": "czntm5t",
|
1355
|
+
"gilded": 0,
|
1356
|
+
"archived": false,
|
1357
|
+
"report_reasons": [
|
1358
|
+
|
1359
|
+
],
|
1360
|
+
"author": "Par4no1D",
|
1361
|
+
"parent_id": "t1_cznsyhz",
|
1362
|
+
"score": 2,
|
1363
|
+
"approved_by": null,
|
1364
|
+
"controversiality": 0,
|
1365
|
+
"body": "In COIN? not really much more survivable.",
|
1366
|
+
"edited": false,
|
1367
|
+
"author_flair_css_class": null,
|
1368
|
+
"downs": 0,
|
1369
|
+
"body_html": "<div class=\"md\"><p>In COIN? not really much more survivable.</p>\n</div>",
|
1370
|
+
"subreddit": "hoggit",
|
1371
|
+
"name": "t1_czntm5t",
|
1372
|
+
"score_hidden": false,
|
1373
|
+
"stickied": false,
|
1374
|
+
"created": 1454639619.0,
|
1375
|
+
"author_flair_text": null,
|
1376
|
+
"created_utc": 1454610819.0,
|
1377
|
+
"distinguished": null,
|
1378
|
+
"mod_reports": [
|
1379
|
+
|
1380
|
+
],
|
1381
|
+
"num_reports": 0,
|
1382
|
+
"ups": 2
|
1383
|
+
}
|
1384
|
+
}
|
1385
|
+
],
|
1386
|
+
"after": null,
|
1387
|
+
"before": null
|
1388
|
+
}
|
1389
|
+
},
|
1390
|
+
"user_reports": [
|
1391
|
+
|
1392
|
+
],
|
1393
|
+
"saved": false,
|
1394
|
+
"id": "cznsyhz",
|
1395
|
+
"gilded": 0,
|
1396
|
+
"archived": false,
|
1397
|
+
"report_reasons": [
|
1398
|
+
|
1399
|
+
],
|
1400
|
+
"author": "Spookies_",
|
1401
|
+
"parent_id": "t1_cznst2z",
|
1402
|
+
"score": 2,
|
1403
|
+
"approved_by": null,
|
1404
|
+
"controversiality": 0,
|
1405
|
+
"body": "Survivability? ",
|
1406
|
+
"edited": false,
|
1407
|
+
"author_flair_css_class": "",
|
1408
|
+
"downs": 0,
|
1409
|
+
"body_html": "<div class=\"md\"><p>Survivability? </p>\n</div>",
|
1410
|
+
"subreddit": "hoggit",
|
1411
|
+
"name": "t1_cznsyhz",
|
1412
|
+
"score_hidden": false,
|
1413
|
+
"stickied": false,
|
1414
|
+
"created": 1454638731.0,
|
1415
|
+
"author_flair_text": "Steam /id/: Spookies_ | Su-25A best Su-25",
|
1416
|
+
"created_utc": 1454609931.0,
|
1417
|
+
"distinguished": null,
|
1418
|
+
"mod_reports": [
|
1419
|
+
|
1420
|
+
],
|
1421
|
+
"num_reports": 0,
|
1422
|
+
"ups": 2
|
1423
|
+
}
|
1424
|
+
},
|
1425
|
+
{
|
1426
|
+
"kind": "t1",
|
1427
|
+
"data": {
|
1428
|
+
"subreddit_id": "t5_2tifv",
|
1429
|
+
"banned_by": null,
|
1430
|
+
"removal_reason": null,
|
1431
|
+
"link_id": "t3_446ba4",
|
1432
|
+
"likes": null,
|
1433
|
+
"replies": "",
|
1434
|
+
"user_reports": [
|
1435
|
+
|
1436
|
+
],
|
1437
|
+
"saved": false,
|
1438
|
+
"id": "czntscs",
|
1439
|
+
"gilded": 0,
|
1440
|
+
"archived": false,
|
1441
|
+
"report_reasons": [
|
1442
|
+
|
1443
|
+
],
|
1444
|
+
"author": "Cephelopodia",
|
1445
|
+
"parent_id": "t1_cznst2z",
|
1446
|
+
"score": 1,
|
1447
|
+
"approved_by": null,
|
1448
|
+
"controversiality": 0,
|
1449
|
+
"body": "I have high hopes for the Textron Scorpion, or something similar. ",
|
1450
|
+
"edited": false,
|
1451
|
+
"author_flair_css_class": "",
|
1452
|
+
"downs": 0,
|
1453
|
+
"body_html": "<div class=\"md\"><p>I have high hopes for the Textron Scorpion, or something similar. </p>\n</div>",
|
1454
|
+
"subreddit": "hoggit",
|
1455
|
+
"name": "t1_czntscs",
|
1456
|
+
"score_hidden": false,
|
1457
|
+
"stickied": false,
|
1458
|
+
"created": 1454639854.0,
|
1459
|
+
"author_flair_text": "Steam: Zilch",
|
1460
|
+
"created_utc": 1454611054.0,
|
1461
|
+
"distinguished": null,
|
1462
|
+
"mod_reports": [
|
1463
|
+
|
1464
|
+
],
|
1465
|
+
"num_reports": 0,
|
1466
|
+
"ups": 1
|
1467
|
+
}
|
1468
|
+
},
|
1469
|
+
{
|
1470
|
+
"kind": "t1",
|
1471
|
+
"data": {
|
1472
|
+
"subreddit_id": "t5_2tifv",
|
1473
|
+
"banned_by": null,
|
1474
|
+
"removal_reason": null,
|
1475
|
+
"link_id": "t3_446ba4",
|
1476
|
+
"likes": null,
|
1477
|
+
"replies": "",
|
1478
|
+
"user_reports": [
|
1479
|
+
|
1480
|
+
],
|
1481
|
+
"saved": false,
|
1482
|
+
"id": "czo272x",
|
1483
|
+
"gilded": 0,
|
1484
|
+
"archived": false,
|
1485
|
+
"report_reasons": [
|
1486
|
+
|
1487
|
+
],
|
1488
|
+
"author": "OMTH",
|
1489
|
+
"parent_id": "t1_cznst2z",
|
1490
|
+
"score": 1,
|
1491
|
+
"approved_by": null,
|
1492
|
+
"controversiality": 0,
|
1493
|
+
"body": "You'll enjoy reading this article :D \n\nhttp://foxtrotalpha.jalopnik.com/the-air-force-is-getting-a-flying-arsenal-ship-and-that-1756856445\n\nLONG LIVE THE SWING WINGS",
|
1494
|
+
"edited": false,
|
1495
|
+
"author_flair_css_class": null,
|
1496
|
+
"downs": 0,
|
1497
|
+
"body_html": "<div class=\"md\"><p>You&#39;ll enjoy reading this article :D </p>\n\n<p><a href=\"http://foxtrotalpha.jalopnik.com/the-air-force-is-getting-a-flying-arsenal-ship-and-that-1756856445\">http://foxtrotalpha.jalopnik.com/the-air-force-is-getting-a-flying-arsenal-ship-and-that-1756856445</a></p>\n\n<p>LONG LIVE THE SWING WINGS</p>\n</div>",
|
1498
|
+
"subreddit": "hoggit",
|
1499
|
+
"name": "t1_czo272x",
|
1500
|
+
"score_hidden": false,
|
1501
|
+
"stickied": false,
|
1502
|
+
"created": 1454651365.0,
|
1503
|
+
"author_flair_text": null,
|
1504
|
+
"created_utc": 1454622565.0,
|
1505
|
+
"distinguished": null,
|
1506
|
+
"mod_reports": [
|
1507
|
+
|
1508
|
+
],
|
1509
|
+
"num_reports": 0,
|
1510
|
+
"ups": 1
|
1511
|
+
}
|
1512
|
+
},
|
1513
|
+
{
|
1514
|
+
"kind": "t1",
|
1515
|
+
"data": {
|
1516
|
+
"subreddit_id": "t5_2tifv",
|
1517
|
+
"banned_by": null,
|
1518
|
+
"removal_reason": null,
|
1519
|
+
"link_id": "t3_446ba4",
|
1520
|
+
"likes": null,
|
1521
|
+
"replies": "",
|
1522
|
+
"user_reports": [
|
1523
|
+
|
1524
|
+
],
|
1525
|
+
"saved": false,
|
1526
|
+
"id": "czouml6",
|
1527
|
+
"gilded": 0,
|
1528
|
+
"archived": false,
|
1529
|
+
"report_reasons": [
|
1530
|
+
|
1531
|
+
],
|
1532
|
+
"author": "stratjeff",
|
1533
|
+
"parent_id": "t1_cznst2z",
|
1534
|
+
"score": 1,
|
1535
|
+
"approved_by": null,
|
1536
|
+
"controversiality": 0,
|
1537
|
+
"body": "Just cost, really.\n\nThe AC-130 is just as, if not more, survivable than the A-10C in many scenarios. It has much more robust defensive systems (way more survivable against manpads), and an onboard EWO for electronic threats (real world RWR's ain't perfect).\n\nIt also carries a much bigger punch and has much longer loiter time (since it can refuel and the crew has a bathroom).\n\nOther major constraints are performance (high in the mountains is hard on a fully-loaded 130) and exposure to large caliber AAA (anything over 12.7mm will reach out and touch it).",
|
1538
|
+
"edited": false,
|
1539
|
+
"author_flair_css_class": "",
|
1540
|
+
"downs": 0,
|
1541
|
+
"body_html": "<div class=\"md\"><p>Just cost, really.</p>\n\n<p>The AC-130 is just as, if not more, survivable than the A-10C in many scenarios. It has much more robust defensive systems (way more survivable against manpads), and an onboard EWO for electronic threats (real world RWR&#39;s ain&#39;t perfect).</p>\n\n<p>It also carries a much bigger punch and has much longer loiter time (since it can refuel and the crew has a bathroom).</p>\n\n<p>Other major constraints are performance (high in the mountains is hard on a fully-loaded 130) and exposure to large caliber AAA (anything over 12.7mm will reach out and touch it).</p>\n</div>",
|
1542
|
+
"subreddit": "hoggit",
|
1543
|
+
"name": "t1_czouml6",
|
1544
|
+
"score_hidden": false,
|
1545
|
+
"stickied": false,
|
1546
|
+
"created": 1454713273.0,
|
1547
|
+
"author_flair_text": "Vodka powered Frogfoot. Ingame: JeffsFrog",
|
1548
|
+
"created_utc": 1454684473.0,
|
1549
|
+
"distinguished": null,
|
1550
|
+
"mod_reports": [
|
1551
|
+
|
1552
|
+
],
|
1553
|
+
"num_reports": 0,
|
1554
|
+
"ups": 1
|
1555
|
+
}
|
1556
|
+
}
|
1557
|
+
],
|
1558
|
+
"after": null,
|
1559
|
+
"before": null
|
1560
|
+
}
|
1561
|
+
},
|
1562
|
+
"user_reports": [
|
1563
|
+
|
1564
|
+
],
|
1565
|
+
"saved": false,
|
1566
|
+
"id": "cznst2z",
|
1567
|
+
"gilded": 0,
|
1568
|
+
"archived": false,
|
1569
|
+
"report_reasons": [
|
1570
|
+
|
1571
|
+
],
|
1572
|
+
"author": "AviatorMoser",
|
1573
|
+
"parent_id": "t3_446ba4",
|
1574
|
+
"score": 15,
|
1575
|
+
"approved_by": null,
|
1576
|
+
"controversiality": 0,
|
1577
|
+
"body": "Glad to see they are still flying.\n\nBut these CAS platforms need a proper CAS replacement. They won't fly forever. What are the advantages today of A-10s over AC-130s? Is it speed? Loitering time?",
|
1578
|
+
"edited": false,
|
1579
|
+
"author_flair_css_class": null,
|
1580
|
+
"downs": 0,
|
1581
|
+
"body_html": "<div class=\"md\"><p>Glad to see they are still flying.</p>\n\n<p>But these CAS platforms need a proper CAS replacement. They won&#39;t fly forever. What are the advantages today of A-10s over AC-130s? Is it speed? Loitering time?</p>\n</div>",
|
1582
|
+
"subreddit": "hoggit",
|
1583
|
+
"name": "t1_cznst2z",
|
1584
|
+
"score_hidden": false,
|
1585
|
+
"stickied": false,
|
1586
|
+
"created": 1454638526.0,
|
1587
|
+
"author_flair_text": null,
|
1588
|
+
"created_utc": 1454609726.0,
|
1589
|
+
"distinguished": null,
|
1590
|
+
"mod_reports": [
|
1591
|
+
|
1592
|
+
],
|
1593
|
+
"num_reports": 0,
|
1594
|
+
"ups": 15
|
1595
|
+
}
|
1596
|
+
},
|
1597
|
+
{
|
1598
|
+
"kind": "t1",
|
1599
|
+
"data": {
|
1600
|
+
"subreddit_id": "t5_2tifv",
|
1601
|
+
"banned_by": null,
|
1602
|
+
"removal_reason": null,
|
1603
|
+
"link_id": "t3_446ba4",
|
1604
|
+
"likes": null,
|
1605
|
+
"replies": "",
|
1606
|
+
"user_reports": [
|
1607
|
+
|
1608
|
+
],
|
1609
|
+
"saved": false,
|
1610
|
+
"id": "cznr6d0",
|
1611
|
+
"gilded": 0,
|
1612
|
+
"archived": false,
|
1613
|
+
"report_reasons": [
|
1614
|
+
|
1615
|
+
],
|
1616
|
+
"author": "waytoolaz",
|
1617
|
+
"parent_id": "t3_446ba4",
|
1618
|
+
"score": 5,
|
1619
|
+
"approved_by": null,
|
1620
|
+
"controversiality": 0,
|
1621
|
+
"body": "Poor Lt. Gen. Bogdan.",
|
1622
|
+
"edited": false,
|
1623
|
+
"author_flair_css_class": null,
|
1624
|
+
"downs": 0,
|
1625
|
+
"body_html": "<div class=\"md\"><p>Poor Lt. Gen. Bogdan.</p>\n</div>",
|
1626
|
+
"subreddit": "hoggit",
|
1627
|
+
"name": "t1_cznr6d0",
|
1628
|
+
"score_hidden": false,
|
1629
|
+
"stickied": false,
|
1630
|
+
"created": 1454636328.0,
|
1631
|
+
"author_flair_text": null,
|
1632
|
+
"created_utc": 1454607528.0,
|
1633
|
+
"distinguished": null,
|
1634
|
+
"mod_reports": [
|
1635
|
+
|
1636
|
+
],
|
1637
|
+
"num_reports": 0,
|
1638
|
+
"ups": 5
|
1639
|
+
}
|
1640
|
+
},
|
1641
|
+
{
|
1642
|
+
"kind": "t1",
|
1643
|
+
"data": {
|
1644
|
+
"subreddit_id": "t5_2tifv",
|
1645
|
+
"banned_by": null,
|
1646
|
+
"removal_reason": null,
|
1647
|
+
"link_id": "t3_446ba4",
|
1648
|
+
"likes": null,
|
1649
|
+
"replies": {
|
1650
|
+
"kind": "Listing",
|
1651
|
+
"data": {
|
1652
|
+
"modhash": null,
|
1653
|
+
"children": [
|
1654
|
+
{
|
1655
|
+
"kind": "t1",
|
1656
|
+
"data": {
|
1657
|
+
"subreddit_id": "t5_2tifv",
|
1658
|
+
"banned_by": null,
|
1659
|
+
"removal_reason": null,
|
1660
|
+
"link_id": "t3_446ba4",
|
1661
|
+
"likes": null,
|
1662
|
+
"replies": {
|
1663
|
+
"kind": "Listing",
|
1664
|
+
"data": {
|
1665
|
+
"modhash": null,
|
1666
|
+
"children": [
|
1667
|
+
{
|
1668
|
+
"kind": "t1",
|
1669
|
+
"data": {
|
1670
|
+
"subreddit_id": "t5_2tifv",
|
1671
|
+
"banned_by": null,
|
1672
|
+
"removal_reason": null,
|
1673
|
+
"link_id": "t3_446ba4",
|
1674
|
+
"likes": null,
|
1675
|
+
"replies": {
|
1676
|
+
"kind": "Listing",
|
1677
|
+
"data": {
|
1678
|
+
"modhash": null,
|
1679
|
+
"children": [
|
1680
|
+
{
|
1681
|
+
"kind": "t1",
|
1682
|
+
"data": {
|
1683
|
+
"subreddit_id": "t5_2tifv",
|
1684
|
+
"banned_by": null,
|
1685
|
+
"removal_reason": null,
|
1686
|
+
"link_id": "t3_446ba4",
|
1687
|
+
"likes": null,
|
1688
|
+
"replies": "",
|
1689
|
+
"user_reports": [
|
1690
|
+
|
1691
|
+
],
|
1692
|
+
"saved": false,
|
1693
|
+
"id": "czo89r2",
|
1694
|
+
"gilded": 0,
|
1695
|
+
"archived": false,
|
1696
|
+
"report_reasons": [
|
1697
|
+
|
1698
|
+
],
|
1699
|
+
"author": "hexapodium",
|
1700
|
+
"parent_id": "t1_czo7ezs",
|
1701
|
+
"score": 8,
|
1702
|
+
"approved_by": null,
|
1703
|
+
"controversiality": 0,
|
1704
|
+
"body": "Some classified, some just not sufficiently documented in the public domain - i.e. the tech and even the implementation is not secret, just that the manufacturers won't release documentation in sufficient detail to make a DCS-level simulation. The DCS A-10 arguably would never have gotten made if it wasn't for its' origins as a training simulator for the ANG, and the wealth of info that provided to ED, who then asked if they could just strip the classified bits out and sell it.",
|
1705
|
+
"edited": false,
|
1706
|
+
"author_flair_css_class": null,
|
1707
|
+
"downs": 0,
|
1708
|
+
"body_html": "<div class=\"md\"><p>Some classified, some just not sufficiently documented in the public domain - i.e. the tech and even the implementation is not secret, just that the manufacturers won&#39;t release documentation in sufficient detail to make a DCS-level simulation. The DCS A-10 arguably would never have gotten made if it wasn&#39;t for its&#39; origins as a training simulator for the ANG, and the wealth of info that provided to ED, who then asked if they could just strip the classified bits out and sell it.</p>\n</div>",
|
1709
|
+
"subreddit": "hoggit",
|
1710
|
+
"name": "t1_czo89r2",
|
1711
|
+
"score_hidden": false,
|
1712
|
+
"stickied": false,
|
1713
|
+
"created": 1454660734.0,
|
1714
|
+
"author_flair_text": null,
|
1715
|
+
"created_utc": 1454631934.0,
|
1716
|
+
"distinguished": null,
|
1717
|
+
"mod_reports": [
|
1718
|
+
|
1719
|
+
],
|
1720
|
+
"num_reports": 0,
|
1721
|
+
"ups": 8
|
1722
|
+
}
|
1723
|
+
}
|
1724
|
+
],
|
1725
|
+
"after": null,
|
1726
|
+
"before": null
|
1727
|
+
}
|
1728
|
+
},
|
1729
|
+
"user_reports": [
|
1730
|
+
|
1731
|
+
],
|
1732
|
+
"saved": false,
|
1733
|
+
"id": "czo7ezs",
|
1734
|
+
"gilded": 0,
|
1735
|
+
"archived": false,
|
1736
|
+
"report_reasons": [
|
1737
|
+
|
1738
|
+
],
|
1739
|
+
"author": "cow_simulation",
|
1740
|
+
"parent_id": "t1_czo3m9c",
|
1741
|
+
"score": 1,
|
1742
|
+
"approved_by": null,
|
1743
|
+
"controversiality": 0,
|
1744
|
+
"body": "All classified and not able to be added to DCS, I assume?",
|
1745
|
+
"edited": false,
|
1746
|
+
"author_flair_css_class": null,
|
1747
|
+
"downs": 0,
|
1748
|
+
"body_html": "<div class=\"md\"><p>All classified and not able to be added to DCS, I assume?</p>\n</div>",
|
1749
|
+
"subreddit": "hoggit",
|
1750
|
+
"name": "t1_czo7ezs",
|
1751
|
+
"score_hidden": false,
|
1752
|
+
"stickied": false,
|
1753
|
+
"created": 1454659318.0,
|
1754
|
+
"author_flair_text": null,
|
1755
|
+
"created_utc": 1454630518.0,
|
1756
|
+
"distinguished": null,
|
1757
|
+
"mod_reports": [
|
1758
|
+
|
1759
|
+
],
|
1760
|
+
"num_reports": 0,
|
1761
|
+
"ups": 1
|
1762
|
+
}
|
1763
|
+
}
|
1764
|
+
],
|
1765
|
+
"after": null,
|
1766
|
+
"before": null
|
1767
|
+
}
|
1768
|
+
},
|
1769
|
+
"user_reports": [
|
1770
|
+
|
1771
|
+
],
|
1772
|
+
"saved": false,
|
1773
|
+
"id": "czo3m9c",
|
1774
|
+
"gilded": 0,
|
1775
|
+
"archived": false,
|
1776
|
+
"report_reasons": [
|
1777
|
+
|
1778
|
+
],
|
1779
|
+
"author": "DerFritzReddit",
|
1780
|
+
"parent_id": "t1_czo2kqy",
|
1781
|
+
"score": 7,
|
1782
|
+
"approved_by": null,
|
1783
|
+
"controversiality": 0,
|
1784
|
+
"body": "Oh the a10c has been modernised already. It has a helmet mounted display now, and the software is way more advanced than what we have in DCS",
|
1785
|
+
"edited": false,
|
1786
|
+
"author_flair_css_class": null,
|
1787
|
+
"downs": 0,
|
1788
|
+
"body_html": "<div class=\"md\"><p>Oh the a10c has been modernised already. It has a helmet mounted display now, and the software is way more advanced than what we have in DCS</p>\n</div>",
|
1789
|
+
"subreddit": "hoggit",
|
1790
|
+
"name": "t1_czo3m9c",
|
1791
|
+
"score_hidden": false,
|
1792
|
+
"stickied": false,
|
1793
|
+
"created": 1454653423.0,
|
1794
|
+
"author_flair_text": null,
|
1795
|
+
"created_utc": 1454624623.0,
|
1796
|
+
"distinguished": null,
|
1797
|
+
"mod_reports": [
|
1798
|
+
|
1799
|
+
],
|
1800
|
+
"num_reports": 0,
|
1801
|
+
"ups": 7
|
1802
|
+
}
|
1803
|
+
}
|
1804
|
+
],
|
1805
|
+
"after": null,
|
1806
|
+
"before": null
|
1807
|
+
}
|
1808
|
+
},
|
1809
|
+
"user_reports": [
|
1810
|
+
|
1811
|
+
],
|
1812
|
+
"saved": false,
|
1813
|
+
"id": "czo2kqy",
|
1814
|
+
"gilded": 0,
|
1815
|
+
"archived": false,
|
1816
|
+
"report_reasons": [
|
1817
|
+
|
1818
|
+
],
|
1819
|
+
"author": "-Cunning_Stunts-",
|
1820
|
+
"parent_id": "t3_446ba4",
|
1821
|
+
"score": 1,
|
1822
|
+
"approved_by": null,
|
1823
|
+
"controversiality": 0,
|
1824
|
+
"body": "I wonder if they'll upgrade them to some kind of A-10D?",
|
1825
|
+
"edited": false,
|
1826
|
+
"author_flair_css_class": null,
|
1827
|
+
"downs": 0,
|
1828
|
+
"body_html": "<div class=\"md\"><p>I wonder if they&#39;ll upgrade them to some kind of A-10D?</p>\n</div>",
|
1829
|
+
"subreddit": "hoggit",
|
1830
|
+
"name": "t1_czo2kqy",
|
1831
|
+
"score_hidden": false,
|
1832
|
+
"stickied": false,
|
1833
|
+
"created": 1454651897.0,
|
1834
|
+
"author_flair_text": null,
|
1835
|
+
"created_utc": 1454623097.0,
|
1836
|
+
"distinguished": null,
|
1837
|
+
"mod_reports": [
|
1838
|
+
|
1839
|
+
],
|
1840
|
+
"num_reports": 0,
|
1841
|
+
"ups": 1
|
1842
|
+
}
|
1843
|
+
},
|
1844
|
+
{
|
1845
|
+
"kind": "t1",
|
1846
|
+
"data": {
|
1847
|
+
"subreddit_id": "t5_2tifv",
|
1848
|
+
"banned_by": null,
|
1849
|
+
"removal_reason": null,
|
1850
|
+
"link_id": "t3_446ba4",
|
1851
|
+
"likes": null,
|
1852
|
+
"replies": {
|
1853
|
+
"kind": "Listing",
|
1854
|
+
"data": {
|
1855
|
+
"modhash": null,
|
1856
|
+
"children": [
|
1857
|
+
{
|
1858
|
+
"kind": "t1",
|
1859
|
+
"data": {
|
1860
|
+
"subreddit_id": "t5_2tifv",
|
1861
|
+
"banned_by": null,
|
1862
|
+
"removal_reason": null,
|
1863
|
+
"link_id": "t3_446ba4",
|
1864
|
+
"likes": null,
|
1865
|
+
"replies": {
|
1866
|
+
"kind": "Listing",
|
1867
|
+
"data": {
|
1868
|
+
"modhash": null,
|
1869
|
+
"children": [
|
1870
|
+
{
|
1871
|
+
"kind": "t1",
|
1872
|
+
"data": {
|
1873
|
+
"subreddit_id": "t5_2tifv",
|
1874
|
+
"banned_by": null,
|
1875
|
+
"removal_reason": null,
|
1876
|
+
"link_id": "t3_446ba4",
|
1877
|
+
"likes": null,
|
1878
|
+
"replies": {
|
1879
|
+
"kind": "Listing",
|
1880
|
+
"data": {
|
1881
|
+
"modhash": null,
|
1882
|
+
"children": [
|
1883
|
+
{
|
1884
|
+
"kind": "t1",
|
1885
|
+
"data": {
|
1886
|
+
"subreddit_id": "t5_2tifv",
|
1887
|
+
"banned_by": null,
|
1888
|
+
"removal_reason": null,
|
1889
|
+
"link_id": "t3_446ba4",
|
1890
|
+
"likes": null,
|
1891
|
+
"replies": {
|
1892
|
+
"kind": "Listing",
|
1893
|
+
"data": {
|
1894
|
+
"modhash": null,
|
1895
|
+
"children": [
|
1896
|
+
{
|
1897
|
+
"kind": "t1",
|
1898
|
+
"data": {
|
1899
|
+
"subreddit_id": "t5_2tifv",
|
1900
|
+
"banned_by": null,
|
1901
|
+
"removal_reason": null,
|
1902
|
+
"link_id": "t3_446ba4",
|
1903
|
+
"likes": null,
|
1904
|
+
"replies": "",
|
1905
|
+
"user_reports": [
|
1906
|
+
|
1907
|
+
],
|
1908
|
+
"saved": false,
|
1909
|
+
"id": "czo1wgf",
|
1910
|
+
"gilded": 0,
|
1911
|
+
"archived": false,
|
1912
|
+
"report_reasons": [
|
1913
|
+
|
1914
|
+
],
|
1915
|
+
"author": "tmoney321",
|
1916
|
+
"parent_id": "t1_cznxrgu",
|
1917
|
+
"score": 2,
|
1918
|
+
"approved_by": null,
|
1919
|
+
"controversiality": 0,
|
1920
|
+
"body": "If ISIS got their hands on a BUK system, original or updated, and intelligence got word before they \"test it\", I would think it would become a tier1 priority target.\n",
|
1921
|
+
"edited": false,
|
1922
|
+
"author_flair_css_class": null,
|
1923
|
+
"downs": 0,
|
1924
|
+
"body_html": "<div class=\"md\"><p>If ISIS got their hands on a BUK system, original or updated, and intelligence got word before they &quot;test it&quot;, I would think it would become a tier1 priority target.</p>\n</div>",
|
1925
|
+
"subreddit": "hoggit",
|
1926
|
+
"name": "t1_czo1wgf",
|
1927
|
+
"score_hidden": false,
|
1928
|
+
"stickied": false,
|
1929
|
+
"created": 1454650959.0,
|
1930
|
+
"author_flair_text": null,
|
1931
|
+
"created_utc": 1454622159.0,
|
1932
|
+
"distinguished": null,
|
1933
|
+
"mod_reports": [
|
1934
|
+
|
1935
|
+
],
|
1936
|
+
"num_reports": 0,
|
1937
|
+
"ups": 2
|
1938
|
+
}
|
1939
|
+
},
|
1940
|
+
{
|
1941
|
+
"kind": "t1",
|
1942
|
+
"data": {
|
1943
|
+
"subreddit_id": "t5_2tifv",
|
1944
|
+
"banned_by": null,
|
1945
|
+
"removal_reason": null,
|
1946
|
+
"link_id": "t3_446ba4",
|
1947
|
+
"likes": null,
|
1948
|
+
"replies": "",
|
1949
|
+
"user_reports": [
|
1950
|
+
|
1951
|
+
],
|
1952
|
+
"saved": false,
|
1953
|
+
"id": "czo3c2g",
|
1954
|
+
"gilded": 0,
|
1955
|
+
"archived": false,
|
1956
|
+
"report_reasons": [
|
1957
|
+
|
1958
|
+
],
|
1959
|
+
"author": "ZakuTwo",
|
1960
|
+
"parent_id": "t1_cznxrgu",
|
1961
|
+
"score": 4,
|
1962
|
+
"approved_by": null,
|
1963
|
+
"controversiality": 0,
|
1964
|
+
"body": "> captured \n\nahahahahahahaha",
|
1965
|
+
"edited": false,
|
1966
|
+
"author_flair_css_class": "",
|
1967
|
+
"downs": 0,
|
1968
|
+
"body_html": "<div class=\"md\"><blockquote>\n<p>captured </p>\n</blockquote>\n\n<p>ahahahahahahaha</p>\n</div>",
|
1969
|
+
"subreddit": "hoggit",
|
1970
|
+
"name": "t1_czo3c2g",
|
1971
|
+
"score_hidden": false,
|
1972
|
+
"stickied": false,
|
1973
|
+
"created": 1454653006.0,
|
1974
|
+
"author_flair_text": "FC3 | A-10C | M-2000C | CA | NTTR",
|
1975
|
+
"created_utc": 1454624206.0,
|
1976
|
+
"distinguished": null,
|
1977
|
+
"mod_reports": [
|
1978
|
+
|
1979
|
+
],
|
1980
|
+
"num_reports": 0,
|
1981
|
+
"ups": 4
|
1982
|
+
}
|
1983
|
+
},
|
1984
|
+
{
|
1985
|
+
"kind": "t1",
|
1986
|
+
"data": {
|
1987
|
+
"subreddit_id": "t5_2tifv",
|
1988
|
+
"banned_by": null,
|
1989
|
+
"removal_reason": null,
|
1990
|
+
"link_id": "t3_446ba4",
|
1991
|
+
"likes": null,
|
1992
|
+
"replies": {
|
1993
|
+
"kind": "Listing",
|
1994
|
+
"data": {
|
1995
|
+
"modhash": null,
|
1996
|
+
"children": [
|
1997
|
+
{
|
1998
|
+
"kind": "t1",
|
1999
|
+
"data": {
|
2000
|
+
"subreddit_id": "t5_2tifv",
|
2001
|
+
"banned_by": null,
|
2002
|
+
"removal_reason": null,
|
2003
|
+
"link_id": "t3_446ba4",
|
2004
|
+
"likes": null,
|
2005
|
+
"replies": {
|
2006
|
+
"kind": "Listing",
|
2007
|
+
"data": {
|
2008
|
+
"modhash": null,
|
2009
|
+
"children": [
|
2010
|
+
{
|
2011
|
+
"kind": "t1",
|
2012
|
+
"data": {
|
2013
|
+
"subreddit_id": "t5_2tifv",
|
2014
|
+
"banned_by": null,
|
2015
|
+
"removal_reason": null,
|
2016
|
+
"link_id": "t3_446ba4",
|
2017
|
+
"likes": null,
|
2018
|
+
"replies": {
|
2019
|
+
"kind": "Listing",
|
2020
|
+
"data": {
|
2021
|
+
"modhash": null,
|
2022
|
+
"children": [
|
2023
|
+
{
|
2024
|
+
"kind": "t1",
|
2025
|
+
"data": {
|
2026
|
+
"subreddit_id": "t5_2tifv",
|
2027
|
+
"banned_by": null,
|
2028
|
+
"removal_reason": null,
|
2029
|
+
"link_id": "t3_446ba4",
|
2030
|
+
"likes": null,
|
2031
|
+
"replies": {
|
2032
|
+
"kind": "Listing",
|
2033
|
+
"data": {
|
2034
|
+
"modhash": null,
|
2035
|
+
"children": [
|
2036
|
+
{
|
2037
|
+
"kind": "t1",
|
2038
|
+
"data": {
|
2039
|
+
"subreddit_id": "t5_2tifv",
|
2040
|
+
"banned_by": null,
|
2041
|
+
"removal_reason": null,
|
2042
|
+
"link_id": "t3_446ba4",
|
2043
|
+
"likes": null,
|
2044
|
+
"replies": {
|
2045
|
+
"kind": "Listing",
|
2046
|
+
"data": {
|
2047
|
+
"modhash": null,
|
2048
|
+
"children": [
|
2049
|
+
{
|
2050
|
+
"kind": "t1",
|
2051
|
+
"data": {
|
2052
|
+
"subreddit_id": "t5_2tifv",
|
2053
|
+
"banned_by": null,
|
2054
|
+
"removal_reason": null,
|
2055
|
+
"link_id": "t3_446ba4",
|
2056
|
+
"likes": null,
|
2057
|
+
"replies": {
|
2058
|
+
"kind": "Listing",
|
2059
|
+
"data": {
|
2060
|
+
"modhash": null,
|
2061
|
+
"children": [
|
2062
|
+
{
|
2063
|
+
"kind": "more",
|
2064
|
+
"data": {
|
2065
|
+
"count": 0,
|
2066
|
+
"parent_id": "t1_czo4ks7",
|
2067
|
+
"children": [
|
2068
|
+
|
2069
|
+
],
|
2070
|
+
"name": "t1__",
|
2071
|
+
"id": "_"
|
2072
|
+
}
|
2073
|
+
}
|
2074
|
+
],
|
2075
|
+
"after": null,
|
2076
|
+
"before": null
|
2077
|
+
}
|
2078
|
+
},
|
2079
|
+
"user_reports": [
|
2080
|
+
|
2081
|
+
],
|
2082
|
+
"saved": false,
|
2083
|
+
"id": "czo4ks7",
|
2084
|
+
"gilded": 0,
|
2085
|
+
"archived": false,
|
2086
|
+
"report_reasons": [
|
2087
|
+
|
2088
|
+
],
|
2089
|
+
"author": "Tirak117",
|
2090
|
+
"parent_id": "t1_czo4f2d",
|
2091
|
+
"score": 9,
|
2092
|
+
"approved_by": null,
|
2093
|
+
"controversiality": 0,
|
2094
|
+
"body": "The F-35A is not in service yet, so no, and the Airforce is now suffering maintenance personnel shortages thanks to their plan to retire the 'Hog fleet being thrown off by congress who understands little about aircraft procurement.\n\nThe most obvious answer from existing inventories is the F-16C, to perform the same kind of CAS that the A-10 is providing, that is to say, high altitude precision munition strikes, and they're doing that. The hog is just another bomb bus after all, with the occasional youtube video of it going BRRRRRRRRRRRRRRRRRRRRRT!, so in the grand scheme of things, this doesn't add to much. The real question is, how many hogs are left that can actually last 6 more years before they fall to pieces. It's an old airframe, and growing older.",
|
2095
|
+
"edited": false,
|
2096
|
+
"author_flair_css_class": null,
|
2097
|
+
"downs": 0,
|
2098
|
+
"body_html": "<div class=\"md\"><p>The F-35A is not in service yet, so no, and the Airforce is now suffering maintenance personnel shortages thanks to their plan to retire the &#39;Hog fleet being thrown off by congress who understands little about aircraft procurement.</p>\n\n<p>The most obvious answer from existing inventories is the F-16C, to perform the same kind of CAS that the A-10 is providing, that is to say, high altitude precision munition strikes, and they&#39;re doing that. The hog is just another bomb bus after all, with the occasional youtube video of it going BRRRRRRRRRRRRRRRRRRRRRT!, so in the grand scheme of things, this doesn&#39;t add to much. The real question is, how many hogs are left that can actually last 6 more years before they fall to pieces. It&#39;s an old airframe, and growing older.</p>\n</div>",
|
2099
|
+
"subreddit": "hoggit",
|
2100
|
+
"name": "t1_czo4ks7",
|
2101
|
+
"score_hidden": false,
|
2102
|
+
"stickied": false,
|
2103
|
+
"created": 1454654863.0,
|
2104
|
+
"author_flair_text": null,
|
2105
|
+
"created_utc": 1454626063.0,
|
2106
|
+
"distinguished": null,
|
2107
|
+
"mod_reports": [
|
2108
|
+
|
2109
|
+
],
|
2110
|
+
"num_reports": 0,
|
2111
|
+
"ups": 9
|
2112
|
+
}
|
2113
|
+
}
|
2114
|
+
],
|
2115
|
+
"after": null,
|
2116
|
+
"before": null
|
2117
|
+
}
|
2118
|
+
},
|
2119
|
+
"user_reports": [
|
2120
|
+
|
2121
|
+
],
|
2122
|
+
"saved": false,
|
2123
|
+
"id": "czo4f2d",
|
2124
|
+
"gilded": 0,
|
2125
|
+
"archived": false,
|
2126
|
+
"report_reasons": [
|
2127
|
+
|
2128
|
+
],
|
2129
|
+
"author": "DerFritzReddit",
|
2130
|
+
"parent_id": "t1_czo483a",
|
2131
|
+
"score": 1,
|
2132
|
+
"approved_by": null,
|
2133
|
+
"controversiality": 0,
|
2134
|
+
"body": "I agree. But what is the alternative to the hog atm? The f-35? \n\n",
|
2135
|
+
"edited": false,
|
2136
|
+
"author_flair_css_class": null,
|
2137
|
+
"downs": 0,
|
2138
|
+
"body_html": "<div class=\"md\"><p>I agree. But what is the alternative to the hog atm? The f-35? </p>\n</div>",
|
2139
|
+
"subreddit": "hoggit",
|
2140
|
+
"name": "t1_czo4f2d",
|
2141
|
+
"score_hidden": false,
|
2142
|
+
"stickied": false,
|
2143
|
+
"created": 1454654626.0,
|
2144
|
+
"author_flair_text": null,
|
2145
|
+
"created_utc": 1454625826.0,
|
2146
|
+
"distinguished": null,
|
2147
|
+
"mod_reports": [
|
2148
|
+
|
2149
|
+
],
|
2150
|
+
"num_reports": 0,
|
2151
|
+
"ups": 1
|
2152
|
+
}
|
2153
|
+
}
|
2154
|
+
],
|
2155
|
+
"after": null,
|
2156
|
+
"before": null
|
2157
|
+
}
|
2158
|
+
},
|
2159
|
+
"user_reports": [
|
2160
|
+
|
2161
|
+
],
|
2162
|
+
"saved": false,
|
2163
|
+
"id": "czo483a",
|
2164
|
+
"gilded": 0,
|
2165
|
+
"archived": false,
|
2166
|
+
"report_reasons": [
|
2167
|
+
|
2168
|
+
],
|
2169
|
+
"author": "Tirak117",
|
2170
|
+
"parent_id": "t1_czo43xu",
|
2171
|
+
"score": 5,
|
2172
|
+
"approved_by": null,
|
2173
|
+
"controversiality": 0,
|
2174
|
+
"body": "Since 1972? Most certainly yes. Most combat losses in Vietnam were from Russian built SAMs, they were deadly. An argument can be made for low altitude terrain masking, but in a war gone hot, that puts you at the mercy of far more radar guided guns than you'd care to count. The counter is the Mavrick, which gives you standoff range, but it's razor thin margin, and during ODS, well we found just how thin that razor was.\n\nYou should never plan for the current conflict, but the next one, and while Isis lacks sophistication now, will that last?",
|
2175
|
+
"edited": false,
|
2176
|
+
"author_flair_css_class": null,
|
2177
|
+
"downs": 0,
|
2178
|
+
"body_html": "<div class=\"md\"><p>Since 1972? Most certainly yes. Most combat losses in Vietnam were from Russian built SAMs, they were deadly. An argument can be made for low altitude terrain masking, but in a war gone hot, that puts you at the mercy of far more radar guided guns than you&#39;d care to count. The counter is the Mavrick, which gives you standoff range, but it&#39;s razor thin margin, and during ODS, well we found just how thin that razor was.</p>\n\n<p>You should never plan for the current conflict, but the next one, and while Isis lacks sophistication now, will that last?</p>\n</div>",
|
2179
|
+
"subreddit": "hoggit",
|
2180
|
+
"name": "t1_czo483a",
|
2181
|
+
"score_hidden": false,
|
2182
|
+
"stickied": false,
|
2183
|
+
"created": 1454654331.0,
|
2184
|
+
"author_flair_text": null,
|
2185
|
+
"created_utc": 1454625531.0,
|
2186
|
+
"distinguished": null,
|
2187
|
+
"mod_reports": [
|
2188
|
+
|
2189
|
+
],
|
2190
|
+
"num_reports": 0,
|
2191
|
+
"ups": 5
|
2192
|
+
}
|
2193
|
+
}
|
2194
|
+
],
|
2195
|
+
"after": null,
|
2196
|
+
"before": null
|
2197
|
+
}
|
2198
|
+
},
|
2199
|
+
"user_reports": [
|
2200
|
+
|
2201
|
+
],
|
2202
|
+
"saved": false,
|
2203
|
+
"id": "czo43xu",
|
2204
|
+
"gilded": 0,
|
2205
|
+
"archived": false,
|
2206
|
+
"report_reasons": [
|
2207
|
+
|
2208
|
+
],
|
2209
|
+
"author": "DerFritzReddit",
|
2210
|
+
"parent_id": "t1_czo3z6l",
|
2211
|
+
"score": 1,
|
2212
|
+
"approved_by": null,
|
2213
|
+
"controversiality": 0,
|
2214
|
+
"body": "Did the russians have effective Sam´s at the time the a-10 was built?\n\nAnd I think \"picking on pickup trucks\" is exactly what we need right now against ISIS :)",
|
2215
|
+
"edited": false,
|
2216
|
+
"author_flair_css_class": null,
|
2217
|
+
"downs": 0,
|
2218
|
+
"body_html": "<div class=\"md\"><p>Did the russians have effective Sam´s at the time the a-10 was built?</p>\n\n<p>And I think &quot;picking on pickup trucks&quot; is exactly what we need right now against ISIS :)</p>\n</div>",
|
2219
|
+
"subreddit": "hoggit",
|
2220
|
+
"name": "t1_czo43xu",
|
2221
|
+
"score_hidden": false,
|
2222
|
+
"stickied": false,
|
2223
|
+
"created": 1454654159.0,
|
2224
|
+
"author_flair_text": null,
|
2225
|
+
"created_utc": 1454625359.0,
|
2226
|
+
"distinguished": null,
|
2227
|
+
"mod_reports": [
|
2228
|
+
|
2229
|
+
],
|
2230
|
+
"num_reports": 0,
|
2231
|
+
"ups": 1
|
2232
|
+
}
|
2233
|
+
}
|
2234
|
+
],
|
2235
|
+
"after": null,
|
2236
|
+
"before": null
|
2237
|
+
}
|
2238
|
+
},
|
2239
|
+
"user_reports": [
|
2240
|
+
|
2241
|
+
],
|
2242
|
+
"saved": false,
|
2243
|
+
"id": "czo3z6l",
|
2244
|
+
"gilded": 0,
|
2245
|
+
"archived": false,
|
2246
|
+
"report_reasons": [
|
2247
|
+
|
2248
|
+
],
|
2249
|
+
"author": "Tirak117",
|
2250
|
+
"parent_id": "t1_czo3oyg",
|
2251
|
+
"score": 3,
|
2252
|
+
"approved_by": null,
|
2253
|
+
"controversiality": 0,
|
2254
|
+
"body": "Not really no. While that's certainly the original intention, it simply doesn't have the armor to defeat area denial SAMs or play in close to radar guided autocannons. In an actual combat environment, the A-10 needs huge amounts of support. If the A-10 were sent back in time to the 1950s it'd be a monster, but now, it's only good for picking on pickup trucks.",
|
2255
|
+
"edited": false,
|
2256
|
+
"author_flair_css_class": null,
|
2257
|
+
"downs": 0,
|
2258
|
+
"body_html": "<div class=\"md\"><p>Not really no. While that&#39;s certainly the original intention, it simply doesn&#39;t have the armor to defeat area denial SAMs or play in close to radar guided autocannons. In an actual combat environment, the A-10 needs huge amounts of support. If the A-10 were sent back in time to the 1950s it&#39;d be a monster, but now, it&#39;s only good for picking on pickup trucks.</p>\n</div>",
|
2259
|
+
"subreddit": "hoggit",
|
2260
|
+
"name": "t1_czo3z6l",
|
2261
|
+
"score_hidden": false,
|
2262
|
+
"stickied": false,
|
2263
|
+
"created": 1454653957.0,
|
2264
|
+
"author_flair_text": null,
|
2265
|
+
"created_utc": 1454625157.0,
|
2266
|
+
"distinguished": null,
|
2267
|
+
"mod_reports": [
|
2268
|
+
|
2269
|
+
],
|
2270
|
+
"num_reports": 0,
|
2271
|
+
"ups": 3
|
2272
|
+
}
|
2273
|
+
},
|
2274
|
+
{
|
2275
|
+
"kind": "t1",
|
2276
|
+
"data": {
|
2277
|
+
"subreddit_id": "t5_2tifv",
|
2278
|
+
"banned_by": null,
|
2279
|
+
"removal_reason": null,
|
2280
|
+
"link_id": "t3_446ba4",
|
2281
|
+
"likes": null,
|
2282
|
+
"replies": {
|
2283
|
+
"kind": "Listing",
|
2284
|
+
"data": {
|
2285
|
+
"modhash": null,
|
2286
|
+
"children": [
|
2287
|
+
{
|
2288
|
+
"kind": "more",
|
2289
|
+
"data": {
|
2290
|
+
"count": 3,
|
2291
|
+
"parent_id": "t1_czogd4c",
|
2292
|
+
"children": [
|
2293
|
+
"czolbn9",
|
2294
|
+
"czoqyaa"
|
2295
|
+
],
|
2296
|
+
"name": "t1_czolbn9",
|
2297
|
+
"id": "czolbn9"
|
2298
|
+
}
|
2299
|
+
}
|
2300
|
+
],
|
2301
|
+
"after": null,
|
2302
|
+
"before": null
|
2303
|
+
}
|
2304
|
+
},
|
2305
|
+
"user_reports": [
|
2306
|
+
|
2307
|
+
],
|
2308
|
+
"saved": false,
|
2309
|
+
"id": "czogd4c",
|
2310
|
+
"gilded": 0,
|
2311
|
+
"archived": false,
|
2312
|
+
"report_reasons": [
|
2313
|
+
|
2314
|
+
],
|
2315
|
+
"author": "GeneUnit90",
|
2316
|
+
"parent_id": "t1_czo3oyg",
|
2317
|
+
"score": 3,
|
2318
|
+
"approved_by": null,
|
2319
|
+
"controversiality": 0,
|
2320
|
+
"body": "Not really. IIRC, original casualty projections if the Soviets pushed into West Germany to try and take Europe were %100 by the end of the first week at the least. It might have been as fast as 48 hours. ",
|
2321
|
+
"edited": false,
|
2322
|
+
"author_flair_css_class": null,
|
2323
|
+
"downs": 0,
|
2324
|
+
"body_html": "<div class=\"md\"><p>Not really. IIRC, original casualty projections if the Soviets pushed into West Germany to try and take Europe were %100 by the end of the first week at the least. It might have been as fast as 48 hours. </p>\n</div>",
|
2325
|
+
"subreddit": "hoggit",
|
2326
|
+
"name": "t1_czogd4c",
|
2327
|
+
"score_hidden": false,
|
2328
|
+
"stickied": false,
|
2329
|
+
"created": 1454673702.0,
|
2330
|
+
"author_flair_text": null,
|
2331
|
+
"created_utc": 1454644902.0,
|
2332
|
+
"distinguished": null,
|
2333
|
+
"mod_reports": [
|
2334
|
+
|
2335
|
+
],
|
2336
|
+
"num_reports": 0,
|
2337
|
+
"ups": 3
|
2338
|
+
}
|
2339
|
+
},
|
2340
|
+
{
|
2341
|
+
"kind": "t1",
|
2342
|
+
"data": {
|
2343
|
+
"subreddit_id": "t5_2tifv",
|
2344
|
+
"banned_by": null,
|
2345
|
+
"removal_reason": null,
|
2346
|
+
"link_id": "t3_446ba4",
|
2347
|
+
"likes": null,
|
2348
|
+
"replies": {
|
2349
|
+
"kind": "Listing",
|
2350
|
+
"data": {
|
2351
|
+
"modhash": null,
|
2352
|
+
"children": [
|
2353
|
+
{
|
2354
|
+
"kind": "more",
|
2355
|
+
"data": {
|
2356
|
+
"count": 3,
|
2357
|
+
"parent_id": "t1_czob2pn",
|
2358
|
+
"children": [
|
2359
|
+
"czolclp"
|
2360
|
+
],
|
2361
|
+
"name": "t1_czolclp",
|
2362
|
+
"id": "czolclp"
|
2363
|
+
}
|
2364
|
+
}
|
2365
|
+
],
|
2366
|
+
"after": null,
|
2367
|
+
"before": null
|
2368
|
+
}
|
2369
|
+
},
|
2370
|
+
"user_reports": [
|
2371
|
+
|
2372
|
+
],
|
2373
|
+
"saved": false,
|
2374
|
+
"id": "czob2pn",
|
2375
|
+
"gilded": 0,
|
2376
|
+
"archived": false,
|
2377
|
+
"report_reasons": [
|
2378
|
+
|
2379
|
+
],
|
2380
|
+
"author": "Frothyleet",
|
2381
|
+
"parent_id": "t1_czo3oyg",
|
2382
|
+
"score": 2,
|
2383
|
+
"approved_by": null,
|
2384
|
+
"controversiality": 0,
|
2385
|
+
"body": "Sort of - even at the time, it was expected that there would be massive A-10 attrition in a full-scale European war, which is not really politically acceptable for the type of fighting we do today.\n\nAnd against modern armor, that sort of tank hunting doesn't really work anymore.",
|
2386
|
+
"edited": false,
|
2387
|
+
"author_flair_css_class": null,
|
2388
|
+
"downs": 0,
|
2389
|
+
"body_html": "<div class=\"md\"><p>Sort of - even at the time, it was expected that there would be massive A-10 attrition in a full-scale European war, which is not really politically acceptable for the type of fighting we do today.</p>\n\n<p>And against modern armor, that sort of tank hunting doesn&#39;t really work anymore.</p>\n</div>",
|
2390
|
+
"subreddit": "hoggit",
|
2391
|
+
"name": "t1_czob2pn",
|
2392
|
+
"score_hidden": false,
|
2393
|
+
"stickied": false,
|
2394
|
+
"created": 1454665438.0,
|
2395
|
+
"author_flair_text": null,
|
2396
|
+
"created_utc": 1454636638.0,
|
2397
|
+
"distinguished": null,
|
2398
|
+
"mod_reports": [
|
2399
|
+
|
2400
|
+
],
|
2401
|
+
"num_reports": 0,
|
2402
|
+
"ups": 2
|
2403
|
+
}
|
2404
|
+
}
|
2405
|
+
],
|
2406
|
+
"after": null,
|
2407
|
+
"before": null
|
2408
|
+
}
|
2409
|
+
},
|
2410
|
+
"user_reports": [
|
2411
|
+
|
2412
|
+
],
|
2413
|
+
"saved": false,
|
2414
|
+
"id": "czo3oyg",
|
2415
|
+
"gilded": 0,
|
2416
|
+
"archived": false,
|
2417
|
+
"report_reasons": [
|
2418
|
+
|
2419
|
+
],
|
2420
|
+
"author": "DerFritzReddit",
|
2421
|
+
"parent_id": "t1_cznxrgu",
|
2422
|
+
"score": 0,
|
2423
|
+
"approved_by": null,
|
2424
|
+
"controversiality": 0,
|
2425
|
+
"body": "Wasn't the A-10 built for this crap? Low level tank hunting in the cold war with a lot of Anti-Air around?",
|
2426
|
+
"edited": false,
|
2427
|
+
"author_flair_css_class": null,
|
2428
|
+
"downs": 0,
|
2429
|
+
"body_html": "<div class=\"md\"><p>Wasn&#39;t the A-10 built for this crap? Low level tank hunting in the cold war with a lot of Anti-Air around?</p>\n</div>",
|
2430
|
+
"subreddit": "hoggit",
|
2431
|
+
"name": "t1_czo3oyg",
|
2432
|
+
"score_hidden": false,
|
2433
|
+
"stickied": false,
|
2434
|
+
"created": 1454653533.0,
|
2435
|
+
"author_flair_text": null,
|
2436
|
+
"created_utc": 1454624733.0,
|
2437
|
+
"distinguished": null,
|
2438
|
+
"mod_reports": [
|
2439
|
+
|
2440
|
+
],
|
2441
|
+
"num_reports": 0,
|
2442
|
+
"ups": 0
|
2443
|
+
}
|
2444
|
+
}
|
2445
|
+
],
|
2446
|
+
"after": null,
|
2447
|
+
"before": null
|
2448
|
+
}
|
2449
|
+
},
|
2450
|
+
"user_reports": [
|
2451
|
+
|
2452
|
+
],
|
2453
|
+
"saved": false,
|
2454
|
+
"id": "cznxrgu",
|
2455
|
+
"gilded": 0,
|
2456
|
+
"archived": false,
|
2457
|
+
"report_reasons": [
|
2458
|
+
|
2459
|
+
],
|
2460
|
+
"author": "Tirak117",
|
2461
|
+
"parent_id": "t1_cznwcr9",
|
2462
|
+
"score": 8,
|
2463
|
+
"approved_by": null,
|
2464
|
+
"controversiality": 0,
|
2465
|
+
"body": "War gone hot isn't the argument you want to make here, the A-10 falls to pieces there. A-10s are COIN jets at this point. \n\nLets say for example, ISIS gets its hands on a BUK system, not an impossibility, after all the Ukrainian Rebels captured such systems, and cash flow isn't a huge problem for ISIS at the moment. That completely locks down a huge amount of airspace until the US can roll in some competent fighter bombers to take over for the A-10, completely negating the point of keeping it around.",
|
2466
|
+
"edited": false,
|
2467
|
+
"author_flair_css_class": null,
|
2468
|
+
"downs": 0,
|
2469
|
+
"body_html": "<div class=\"md\"><p>War gone hot isn&#39;t the argument you want to make here, the A-10 falls to pieces there. A-10s are COIN jets at this point. </p>\n\n<p>Lets say for example, ISIS gets its hands on a BUK system, not an impossibility, after all the Ukrainian Rebels captured such systems, and cash flow isn&#39;t a huge problem for ISIS at the moment. That completely locks down a huge amount of airspace until the US can roll in some competent fighter bombers to take over for the A-10, completely negating the point of keeping it around.</p>\n</div>",
|
2470
|
+
"subreddit": "hoggit",
|
2471
|
+
"name": "t1_cznxrgu",
|
2472
|
+
"score_hidden": false,
|
2473
|
+
"stickied": false,
|
2474
|
+
"created": 1454645261.0,
|
2475
|
+
"author_flair_text": null,
|
2476
|
+
"created_utc": 1454616461.0,
|
2477
|
+
"distinguished": null,
|
2478
|
+
"mod_reports": [
|
2479
|
+
|
2480
|
+
],
|
2481
|
+
"num_reports": 0,
|
2482
|
+
"ups": 8
|
2483
|
+
}
|
2484
|
+
},
|
2485
|
+
{
|
2486
|
+
"kind": "t1",
|
2487
|
+
"data": {
|
2488
|
+
"subreddit_id": "t5_2tifv",
|
2489
|
+
"banned_by": null,
|
2490
|
+
"removal_reason": null,
|
2491
|
+
"link_id": "t3_446ba4",
|
2492
|
+
"likes": null,
|
2493
|
+
"replies": "",
|
2494
|
+
"user_reports": [
|
2495
|
+
|
2496
|
+
],
|
2497
|
+
"saved": false,
|
2498
|
+
"id": "czo39v0",
|
2499
|
+
"gilded": 0,
|
2500
|
+
"archived": false,
|
2501
|
+
"report_reasons": [
|
2502
|
+
|
2503
|
+
],
|
2504
|
+
"author": "ZakuTwo",
|
2505
|
+
"parent_id": "t1_cznwcr9",
|
2506
|
+
"score": 3,
|
2507
|
+
"approved_by": null,
|
2508
|
+
"controversiality": 0,
|
2509
|
+
"body": "Even as part of more comprehensive strike packages, A-10s are just incapable of flying (high altitude, fast) survivable mission profiles. After a few airframes were lost they were specifically restricted from attacking the Republican Guard in 91. Mudhens and F-35s are much more ideal CAS platforms regardless of what tech bloggers and infantry grunts say.",
|
2510
|
+
"edited": false,
|
2511
|
+
"author_flair_css_class": "",
|
2512
|
+
"downs": 0,
|
2513
|
+
"body_html": "<div class=\"md\"><p>Even as part of more comprehensive strike packages, A-10s are just incapable of flying (high altitude, fast) survivable mission profiles. After a few airframes were lost they were specifically restricted from attacking the Republican Guard in 91. Mudhens and F-35s are much more ideal CAS platforms regardless of what tech bloggers and infantry grunts say.</p>\n</div>",
|
2514
|
+
"subreddit": "hoggit",
|
2515
|
+
"name": "t1_czo39v0",
|
2516
|
+
"score_hidden": false,
|
2517
|
+
"stickied": false,
|
2518
|
+
"created": 1454652915.0,
|
2519
|
+
"author_flair_text": "FC3 | A-10C | M-2000C | CA | NTTR",
|
2520
|
+
"created_utc": 1454624115.0,
|
2521
|
+
"distinguished": null,
|
2522
|
+
"mod_reports": [
|
2523
|
+
|
2524
|
+
],
|
2525
|
+
"num_reports": 0,
|
2526
|
+
"ups": 3
|
2527
|
+
}
|
2528
|
+
}
|
2529
|
+
],
|
2530
|
+
"after": null,
|
2531
|
+
"before": null
|
2532
|
+
}
|
2533
|
+
},
|
2534
|
+
"user_reports": [
|
2535
|
+
|
2536
|
+
],
|
2537
|
+
"saved": false,
|
2538
|
+
"id": "cznwcr9",
|
2539
|
+
"gilded": 0,
|
2540
|
+
"archived": false,
|
2541
|
+
"report_reasons": [
|
2542
|
+
|
2543
|
+
],
|
2544
|
+
"author": "TheFurNinja",
|
2545
|
+
"parent_id": "t1_cznvt7o",
|
2546
|
+
"score": 1,
|
2547
|
+
"approved_by": null,
|
2548
|
+
"controversiality": 0,
|
2549
|
+
"body": "Well that is why it is supplemented by SEAD, EW, and Fighter Bombers. Don't send A-10s in a zone that hot, instead they provide mop-up cover for the infantry following the \"first wave\"",
|
2550
|
+
"edited": false,
|
2551
|
+
"author_flair_css_class": "",
|
2552
|
+
"downs": 0,
|
2553
|
+
"body_html": "<div class=\"md\"><p>Well that is why it is supplemented by SEAD, EW, and Fighter Bombers. Don&#39;t send A-10s in a zone that hot, instead they provide mop-up cover for the infantry following the &quot;first wave&quot;</p>\n</div>",
|
2554
|
+
"subreddit": "hoggit",
|
2555
|
+
"name": "t1_cznwcr9",
|
2556
|
+
"score_hidden": false,
|
2557
|
+
"stickied": false,
|
2558
|
+
"created": 1454643362.0,
|
2559
|
+
"author_flair_text": "Steam:TheFurNinja. Su-27 fanboi",
|
2560
|
+
"created_utc": 1454614562.0,
|
2561
|
+
"distinguished": null,
|
2562
|
+
"mod_reports": [
|
2563
|
+
|
2564
|
+
],
|
2565
|
+
"num_reports": 0,
|
2566
|
+
"ups": 1
|
2567
|
+
}
|
2568
|
+
}
|
2569
|
+
],
|
2570
|
+
"after": null,
|
2571
|
+
"before": null
|
2572
|
+
}
|
2573
|
+
},
|
2574
|
+
"user_reports": [
|
2575
|
+
|
2576
|
+
],
|
2577
|
+
"saved": false,
|
2578
|
+
"id": "cznvt7o",
|
2579
|
+
"gilded": 0,
|
2580
|
+
"archived": false,
|
2581
|
+
"report_reasons": [
|
2582
|
+
|
2583
|
+
],
|
2584
|
+
"author": "Tirak117",
|
2585
|
+
"parent_id": "t1_cznt2g0",
|
2586
|
+
"score": 11,
|
2587
|
+
"approved_by": null,
|
2588
|
+
"controversiality": 0,
|
2589
|
+
"body": "Well yeah if no one's shooting back at you. The only reason we're keeping them around is because our enemy doesn't have a competent anti aircraft presence. If ISIS ever gets its hands on something that can reach up to the 10 and 15 thousand foot standoff altitude where A-10s do most of their work nowadays, you'll be seeing a lot less A-10s.",
|
2590
|
+
"edited": false,
|
2591
|
+
"author_flair_css_class": null,
|
2592
|
+
"downs": 0,
|
2593
|
+
"body_html": "<div class=\"md\"><p>Well yeah if no one&#39;s shooting back at you. The only reason we&#39;re keeping them around is because our enemy doesn&#39;t have a competent anti aircraft presence. If ISIS ever gets its hands on something that can reach up to the 10 and 15 thousand foot standoff altitude where A-10s do most of their work nowadays, you&#39;ll be seeing a lot less A-10s.</p>\n</div>",
|
2594
|
+
"subreddit": "hoggit",
|
2595
|
+
"name": "t1_cznvt7o",
|
2596
|
+
"score_hidden": false,
|
2597
|
+
"stickied": false,
|
2598
|
+
"created": 1454642613.0,
|
2599
|
+
"author_flair_text": null,
|
2600
|
+
"created_utc": 1454613813.0,
|
2601
|
+
"distinguished": null,
|
2602
|
+
"mod_reports": [
|
2603
|
+
|
2604
|
+
],
|
2605
|
+
"num_reports": 0,
|
2606
|
+
"ups": 11
|
2607
|
+
}
|
2608
|
+
}
|
2609
|
+
],
|
2610
|
+
"after": null,
|
2611
|
+
"before": null
|
2612
|
+
}
|
2613
|
+
},
|
2614
|
+
"user_reports": [
|
2615
|
+
|
2616
|
+
],
|
2617
|
+
"saved": false,
|
2618
|
+
"id": "cznt2g0",
|
2619
|
+
"gilded": 0,
|
2620
|
+
"archived": false,
|
2621
|
+
"report_reasons": [
|
2622
|
+
|
2623
|
+
],
|
2624
|
+
"author": "SkeerRacing",
|
2625
|
+
"parent_id": "t3_446ba4",
|
2626
|
+
"score": -9,
|
2627
|
+
"approved_by": null,
|
2628
|
+
"controversiality": 0,
|
2629
|
+
"body": "The A-10 should be the 911 of the skies. Just keep improving it over and over. Perfect ground attack aircraft. ",
|
2630
|
+
"edited": false,
|
2631
|
+
"author_flair_css_class": null,
|
2632
|
+
"downs": 0,
|
2633
|
+
"body_html": "<div class=\"md\"><p>The A-10 should be the 911 of the skies. Just keep improving it over and over. Perfect ground attack aircraft. </p>\n</div>",
|
2634
|
+
"subreddit": "hoggit",
|
2635
|
+
"name": "t1_cznt2g0",
|
2636
|
+
"score_hidden": false,
|
2637
|
+
"stickied": false,
|
2638
|
+
"created": 1454638881.0,
|
2639
|
+
"author_flair_text": null,
|
2640
|
+
"created_utc": 1454610081.0,
|
2641
|
+
"distinguished": null,
|
2642
|
+
"mod_reports": [
|
2643
|
+
|
2644
|
+
],
|
2645
|
+
"num_reports": 0,
|
2646
|
+
"ups": -9
|
2647
|
+
}
|
2648
|
+
}
|
2649
|
+
],
|
2650
|
+
"after": null,
|
2651
|
+
"before": null
|
2652
|
+
}
|
2653
|
+
}
|
2654
|
+
]
|