archare 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +16 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +4 -0
- data/Guardfile +12 -0
- data/README.md +56 -0
- data/Rakefile +16 -0
- data/archare.gemspec +46 -0
- data/archare.sublime-project +14 -0
- data/archare.sublime-workspace +1282 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/archare.rb +20 -0
- data/lib/archare/crawler.rb +129 -0
- data/lib/archare/data/lc_problems.json +1 -0
- data/lib/archare/data/lc_tags.json +1 -0
- data/lib/archare/data/lc_tags_problems_map.json +1 -0
- data/lib/archare/introducer.rb +26 -0
- data/lib/archare/version.rb +3 -0
- metadata +162 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 43dc59ba99be0d8d31452b3cf86c0e868c275560
|
4
|
+
data.tar.gz: 2ea17f16ca9b01691dcc59a5071998d6e4c8f524
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 437e00e4cea23abd2940e85f3a11b5d806e18eb626a001db4277fbcc45fdb47b1bd07318a3304fddad80ee274203da2ec49d2cc342a3c19fce6ef73efe564316
|
7
|
+
data.tar.gz: 525630aa25bfc91bbb9e584393a458bdbba082e4ba8fb3dd18cf503f274310a23aa68db06ab1f1ee8ec4228cecb959082940b35188348951f2acb141c1fef825
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at xhan@wpi.edu. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/Guardfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
# Archare
|
2
|
+
|
3
|
+
Archare gem
|
4
|
+
|
5
|
+
Currently archare provides a crawler to collect data from a algorithm online judge website [Leetcode](https://leetcode.com/).
|
6
|
+
Leetcode is a very good website for programmer to learn, practice and challenge some algorithm problems.
|
7
|
+
|
8
|
+
As a user of Leeet code, I believe that we could take advantage of the data on Leetcode to analyze and generalize some good ways to understand algorithm problems.
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your application's Gemfile:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem 'archare'
|
16
|
+
```
|
17
|
+
|
18
|
+
And then execute:
|
19
|
+
|
20
|
+
$ bundle
|
21
|
+
|
22
|
+
Or install it yourself as:
|
23
|
+
|
24
|
+
$ gem install archare
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
Archare crawler
|
29
|
+
|
30
|
+
Usage:
|
31
|
+
crawler = Archare.crawler
|
32
|
+
|
33
|
+
leetcode tags:
|
34
|
+
crawler.lc_tags
|
35
|
+
|
36
|
+
leetcode problems:
|
37
|
+
crawler.lc_problems
|
38
|
+
|
39
|
+
leetcode tags-problems map:
|
40
|
+
crawler.lc_tags_problems_map
|
41
|
+
|
42
|
+
Update data from leetcode:
|
43
|
+
crawler.update_lc_data (updating time is about 1 minute)
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
## Development
|
48
|
+
|
49
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
50
|
+
|
51
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
52
|
+
|
53
|
+
## Contributing
|
54
|
+
|
55
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/archare. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
56
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# add an RSpec-related Rake task to our Rakefile, which will enable us (manually)
|
2
|
+
# or Guard to execute the task and run the RSpec test suite
|
3
|
+
require 'rspec/core/rake_task'
|
4
|
+
|
5
|
+
|
6
|
+
require "bundler/gem_tasks"
|
7
|
+
|
8
|
+
|
9
|
+
# Default directory to look in is `/specs`
|
10
|
+
# Run with `rake spec`
|
11
|
+
RSpec::Core::RakeTask.new(:spec) do |task|
|
12
|
+
task.rspec_opts = ['--color', '--format', 'nested']
|
13
|
+
end
|
14
|
+
|
15
|
+
|
16
|
+
task :default => :spec
|
data/archare.gemspec
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'archare/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "archare"
|
8
|
+
spec.version = Archare::VERSION
|
9
|
+
spec.authors = ["xhanshawn"]
|
10
|
+
spec.email = ["xhan610@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Archare gem}
|
13
|
+
spec.description = %q{A gem for archare.}
|
14
|
+
spec.homepage = "http://archare.elasticbeanstalk.com"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
spec.metadata['allowed_push_host'] = "https://rubygems.org"
|
21
|
+
else
|
22
|
+
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_development_dependency "bundler", "~> 1.12"
|
31
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
32
|
+
|
33
|
+
spec.add_development_dependency "rspec", "~> 3.4"
|
34
|
+
spec.add_development_dependency "nokogiri", "~> 1.6"
|
35
|
+
spec.add_development_dependency "curb", "~> 0.9"
|
36
|
+
|
37
|
+
|
38
|
+
spec.add_dependency "nokogiri", "~> 1.6"
|
39
|
+
spec.add_dependency "curb", "~> 0.9"
|
40
|
+
# spec.add_development_dependency "rspec-nc"
|
41
|
+
# spec.add_development_dependency "guard"
|
42
|
+
# spec.add_development_dependency "guard-rspec"
|
43
|
+
# spec.add_development_dependency "pry"
|
44
|
+
# spec.add_development_dependency "pry-remote"
|
45
|
+
# spec.add_development_dependency "pry-nav"
|
46
|
+
end
|
@@ -0,0 +1,1282 @@
|
|
1
|
+
{
|
2
|
+
"auto_complete":
|
3
|
+
{
|
4
|
+
"selected_items":
|
5
|
+
[
|
6
|
+
[
|
7
|
+
"in",
|
8
|
+
"introduce"
|
9
|
+
],
|
10
|
+
[
|
11
|
+
"Inter",
|
12
|
+
"introducer"
|
13
|
+
],
|
14
|
+
[
|
15
|
+
"AR",
|
16
|
+
"ArchareUI"
|
17
|
+
],
|
18
|
+
[
|
19
|
+
"dev",
|
20
|
+
"device_width"
|
21
|
+
],
|
22
|
+
[
|
23
|
+
"mar",
|
24
|
+
"margin-left"
|
25
|
+
],
|
26
|
+
[
|
27
|
+
"si",
|
28
|
+
"sidebar-width"
|
29
|
+
],
|
30
|
+
[
|
31
|
+
"wid",
|
32
|
+
"width"
|
33
|
+
],
|
34
|
+
[
|
35
|
+
"is",
|
36
|
+
"is-mobile"
|
37
|
+
],
|
38
|
+
[
|
39
|
+
"max",
|
40
|
+
"max-width"
|
41
|
+
],
|
42
|
+
[
|
43
|
+
"skills",
|
44
|
+
"skills-tree"
|
45
|
+
],
|
46
|
+
[
|
47
|
+
"padd",
|
48
|
+
"padding"
|
49
|
+
],
|
50
|
+
[
|
51
|
+
"min-",
|
52
|
+
"min-height"
|
53
|
+
],
|
54
|
+
[
|
55
|
+
"min",
|
56
|
+
"min-height"
|
57
|
+
],
|
58
|
+
[
|
59
|
+
"b",
|
60
|
+
"background-color"
|
61
|
+
],
|
62
|
+
[
|
63
|
+
"text",
|
64
|
+
"text-align"
|
65
|
+
],
|
66
|
+
[
|
67
|
+
"block",
|
68
|
+
"blockquote Tag"
|
69
|
+
],
|
70
|
+
[
|
71
|
+
"cu",
|
72
|
+
"cube-blue"
|
73
|
+
],
|
74
|
+
[
|
75
|
+
"pla",
|
76
|
+
"data-placement"
|
77
|
+
],
|
78
|
+
[
|
79
|
+
"ah",
|
80
|
+
"ah-nav-cube"
|
81
|
+
],
|
82
|
+
[
|
83
|
+
"t",
|
84
|
+
"text-align"
|
85
|
+
],
|
86
|
+
[
|
87
|
+
"line",
|
88
|
+
"line-width"
|
89
|
+
],
|
90
|
+
[
|
91
|
+
"mari",
|
92
|
+
"margin-left"
|
93
|
+
],
|
94
|
+
[
|
95
|
+
"cube",
|
96
|
+
"cube-width"
|
97
|
+
],
|
98
|
+
[
|
99
|
+
"inline",
|
100
|
+
"inline-block"
|
101
|
+
],
|
102
|
+
[
|
103
|
+
"font",
|
104
|
+
"font-size"
|
105
|
+
],
|
106
|
+
[
|
107
|
+
"bo",
|
108
|
+
"border-top-width"
|
109
|
+
],
|
110
|
+
[
|
111
|
+
"pad",
|
112
|
+
"padding-bottom"
|
113
|
+
],
|
114
|
+
[
|
115
|
+
"cue",
|
116
|
+
"cube-width"
|
117
|
+
],
|
118
|
+
[
|
119
|
+
"cub",
|
120
|
+
"cube-width"
|
121
|
+
],
|
122
|
+
[
|
123
|
+
"padding-",
|
124
|
+
"padding-left"
|
125
|
+
],
|
126
|
+
[
|
127
|
+
"border",
|
128
|
+
"border-color"
|
129
|
+
],
|
130
|
+
[
|
131
|
+
"marg",
|
132
|
+
"margin-top"
|
133
|
+
],
|
134
|
+
[
|
135
|
+
"fon",
|
136
|
+
"font-size"
|
137
|
+
],
|
138
|
+
[
|
139
|
+
"inlin",
|
140
|
+
"inline-block"
|
141
|
+
],
|
142
|
+
[
|
143
|
+
"back",
|
144
|
+
"background-color"
|
145
|
+
],
|
146
|
+
[
|
147
|
+
"new",
|
148
|
+
"new_item"
|
149
|
+
],
|
150
|
+
[
|
151
|
+
"side",
|
152
|
+
"sidebar-item"
|
153
|
+
],
|
154
|
+
[
|
155
|
+
"bor",
|
156
|
+
"border-color"
|
157
|
+
],
|
158
|
+
[
|
159
|
+
"scro",
|
160
|
+
"scrollTop"
|
161
|
+
],
|
162
|
+
[
|
163
|
+
"eas",
|
164
|
+
"easeOutSine"
|
165
|
+
],
|
166
|
+
[
|
167
|
+
"ani",
|
168
|
+
"animate_options"
|
169
|
+
],
|
170
|
+
[
|
171
|
+
"java",
|
172
|
+
"javascript"
|
173
|
+
],
|
174
|
+
[
|
175
|
+
"sle",
|
176
|
+
"select"
|
177
|
+
],
|
178
|
+
[
|
179
|
+
"fil",
|
180
|
+
"filter"
|
181
|
+
],
|
182
|
+
[
|
183
|
+
"sele",
|
184
|
+
"selectAll"
|
185
|
+
],
|
186
|
+
[
|
187
|
+
"group",
|
188
|
+
"group_name"
|
189
|
+
],
|
190
|
+
[
|
191
|
+
"fla",
|
192
|
+
"flattened_tags"
|
193
|
+
],
|
194
|
+
[
|
195
|
+
"calss",
|
196
|
+
"className"
|
197
|
+
],
|
198
|
+
[
|
199
|
+
"pa",
|
200
|
+
"packageName"
|
201
|
+
],
|
202
|
+
[
|
203
|
+
"tags",
|
204
|
+
"tags-tree"
|
205
|
+
],
|
206
|
+
[
|
207
|
+
"cns",
|
208
|
+
"console"
|
209
|
+
],
|
210
|
+
[
|
211
|
+
"grap",
|
212
|
+
"graph_type"
|
213
|
+
],
|
214
|
+
[
|
215
|
+
"gra",
|
216
|
+
"graph_type"
|
217
|
+
],
|
218
|
+
[
|
219
|
+
"name",
|
220
|
+
"nametooltip"
|
221
|
+
],
|
222
|
+
[
|
223
|
+
"arc",
|
224
|
+
"archare-nav"
|
225
|
+
],
|
226
|
+
[
|
227
|
+
"margin",
|
228
|
+
"margin-left"
|
229
|
+
],
|
230
|
+
[
|
231
|
+
"va",
|
232
|
+
"validate_tags"
|
233
|
+
],
|
234
|
+
[
|
235
|
+
"for",
|
236
|
+
"force-directed-graph"
|
237
|
+
],
|
238
|
+
[
|
239
|
+
"un",
|
240
|
+
"unless unless … end"
|
241
|
+
],
|
242
|
+
[
|
243
|
+
"log",
|
244
|
+
"login_url"
|
245
|
+
],
|
246
|
+
[
|
247
|
+
"se",
|
248
|
+
"session"
|
249
|
+
],
|
250
|
+
[
|
251
|
+
"valid",
|
252
|
+
"valid_edge_type"
|
253
|
+
],
|
254
|
+
[
|
255
|
+
"edge",
|
256
|
+
"edge_types"
|
257
|
+
],
|
258
|
+
[
|
259
|
+
"cure",
|
260
|
+
"current_links"
|
261
|
+
],
|
262
|
+
[
|
263
|
+
"curre",
|
264
|
+
"current_links"
|
265
|
+
],
|
266
|
+
[
|
267
|
+
"cur",
|
268
|
+
"current_edges"
|
269
|
+
],
|
270
|
+
[
|
271
|
+
"hid",
|
272
|
+
"hide_links"
|
273
|
+
],
|
274
|
+
[
|
275
|
+
"sou",
|
276
|
+
"source_edges"
|
277
|
+
],
|
278
|
+
[
|
279
|
+
"targe",
|
280
|
+
"target_id"
|
281
|
+
],
|
282
|
+
[
|
283
|
+
"err",
|
284
|
+
"errorThrown"
|
285
|
+
],
|
286
|
+
[
|
287
|
+
"edg",
|
288
|
+
"edge"
|
289
|
+
],
|
290
|
+
[
|
291
|
+
"tag",
|
292
|
+
"tag_id"
|
293
|
+
],
|
294
|
+
[
|
295
|
+
"update",
|
296
|
+
"update_edge"
|
297
|
+
],
|
298
|
+
[
|
299
|
+
"updated",
|
300
|
+
"updated_graph_data"
|
301
|
+
],
|
302
|
+
[
|
303
|
+
"link",
|
304
|
+
"link-panel"
|
305
|
+
],
|
306
|
+
[
|
307
|
+
"legend",
|
308
|
+
"legendSpacing"
|
309
|
+
],
|
310
|
+
[
|
311
|
+
"hight",
|
312
|
+
"highlighted"
|
313
|
+
],
|
314
|
+
[
|
315
|
+
"class",
|
316
|
+
"classed"
|
317
|
+
],
|
318
|
+
[
|
319
|
+
"hi",
|
320
|
+
"highlight"
|
321
|
+
],
|
322
|
+
[
|
323
|
+
"mouse",
|
324
|
+
"mousedown"
|
325
|
+
],
|
326
|
+
[
|
327
|
+
"mo",
|
328
|
+
"mouseover"
|
329
|
+
],
|
330
|
+
[
|
331
|
+
"get",
|
332
|
+
"getBBox"
|
333
|
+
],
|
334
|
+
[
|
335
|
+
"tran",
|
336
|
+
"translate"
|
337
|
+
],
|
338
|
+
[
|
339
|
+
"len",
|
340
|
+
"legendRectSize"
|
341
|
+
],
|
342
|
+
[
|
343
|
+
"fun",
|
344
|
+
"function"
|
345
|
+
],
|
346
|
+
[
|
347
|
+
"ege",
|
348
|
+
"edge_types"
|
349
|
+
],
|
350
|
+
[
|
351
|
+
"eg",
|
352
|
+
"edge_type"
|
353
|
+
],
|
354
|
+
[
|
355
|
+
"links",
|
356
|
+
"links"
|
357
|
+
],
|
358
|
+
[
|
359
|
+
"ed",
|
360
|
+
"edge_types"
|
361
|
+
],
|
362
|
+
[
|
363
|
+
"graph",
|
364
|
+
"graph_data"
|
365
|
+
],
|
366
|
+
[
|
367
|
+
"res",
|
368
|
+
"reset_node"
|
369
|
+
],
|
370
|
+
[
|
371
|
+
"dra",
|
372
|
+
"drag_function"
|
373
|
+
],
|
374
|
+
[
|
375
|
+
"con",
|
376
|
+
"console"
|
377
|
+
],
|
378
|
+
[
|
379
|
+
"upda",
|
380
|
+
"update_hint"
|
381
|
+
],
|
382
|
+
[
|
383
|
+
"col",
|
384
|
+
"col-md-8"
|
385
|
+
],
|
386
|
+
[
|
387
|
+
"oper",
|
388
|
+
"operate_btn"
|
389
|
+
],
|
390
|
+
[
|
391
|
+
"source",
|
392
|
+
"source_node"
|
393
|
+
],
|
394
|
+
[
|
395
|
+
"key",
|
396
|
+
"keyCode"
|
397
|
+
],
|
398
|
+
[
|
399
|
+
"click",
|
400
|
+
"click_button"
|
401
|
+
],
|
402
|
+
[
|
403
|
+
"cli",
|
404
|
+
"click_button"
|
405
|
+
],
|
406
|
+
[
|
407
|
+
"bu",
|
408
|
+
"button"
|
409
|
+
],
|
410
|
+
[
|
411
|
+
"su",
|
412
|
+
"source_node"
|
413
|
+
],
|
414
|
+
[
|
415
|
+
"tar",
|
416
|
+
"target_node"
|
417
|
+
],
|
418
|
+
[
|
419
|
+
"dta",
|
420
|
+
"datum"
|
421
|
+
],
|
422
|
+
[
|
423
|
+
"sour",
|
424
|
+
"source_node"
|
425
|
+
],
|
426
|
+
[
|
427
|
+
"draw",
|
428
|
+
"draw_graph"
|
429
|
+
],
|
430
|
+
[
|
431
|
+
"tart",
|
432
|
+
"target"
|
433
|
+
],
|
434
|
+
[
|
435
|
+
"mousedown",
|
436
|
+
"mousedown_node"
|
437
|
+
],
|
438
|
+
[
|
439
|
+
"mou",
|
440
|
+
"mousedown"
|
441
|
+
],
|
442
|
+
[
|
443
|
+
"dar",
|
444
|
+
"drawing"
|
445
|
+
],
|
446
|
+
[
|
447
|
+
"id",
|
448
|
+
"id_str"
|
449
|
+
],
|
450
|
+
[
|
451
|
+
"bubbl",
|
452
|
+
"bubble-chart"
|
453
|
+
],
|
454
|
+
[
|
455
|
+
"clik",
|
456
|
+
"clicked_circle"
|
457
|
+
],
|
458
|
+
[
|
459
|
+
"cl",
|
460
|
+
"clicked_circle"
|
461
|
+
],
|
462
|
+
[
|
463
|
+
"gru",
|
464
|
+
"group_nums"
|
465
|
+
],
|
466
|
+
[
|
467
|
+
"ta",
|
468
|
+
"target_tag"
|
469
|
+
],
|
470
|
+
[
|
471
|
+
"ref",
|
472
|
+
"ref_posts"
|
473
|
+
],
|
474
|
+
[
|
475
|
+
"refere",
|
476
|
+
"reference_posts"
|
477
|
+
],
|
478
|
+
[
|
479
|
+
"hidd",
|
480
|
+
"hidden_input"
|
481
|
+
],
|
482
|
+
[
|
483
|
+
"numb",
|
484
|
+
"numberOfIslands2"
|
485
|
+
],
|
486
|
+
[
|
487
|
+
"cm",
|
488
|
+
"cm_res"
|
489
|
+
],
|
490
|
+
[
|
491
|
+
"cac",
|
492
|
+
"cacheMiss"
|
493
|
+
],
|
494
|
+
[
|
495
|
+
"Linke",
|
496
|
+
"LinkedHashMap"
|
497
|
+
],
|
498
|
+
[
|
499
|
+
"ms",
|
500
|
+
"ms_res"
|
501
|
+
],
|
502
|
+
[
|
503
|
+
"GET",
|
504
|
+
"getWindowMinSum"
|
505
|
+
],
|
506
|
+
[
|
507
|
+
"add",
|
508
|
+
"addContent"
|
509
|
+
],
|
510
|
+
[
|
511
|
+
"S",
|
512
|
+
"Schedule"
|
513
|
+
],
|
514
|
+
[
|
515
|
+
"wi",
|
516
|
+
"waiting_q"
|
517
|
+
]
|
518
|
+
]
|
519
|
+
},
|
520
|
+
"buffers":
|
521
|
+
[
|
522
|
+
{
|
523
|
+
"file": "README.md",
|
524
|
+
"settings":
|
525
|
+
{
|
526
|
+
"buffer_size": 1060,
|
527
|
+
"line_ending": "Unix"
|
528
|
+
}
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"file": "lib/archare.rb",
|
532
|
+
"settings":
|
533
|
+
{
|
534
|
+
"buffer_size": 157,
|
535
|
+
"line_ending": "Unix"
|
536
|
+
}
|
537
|
+
},
|
538
|
+
{
|
539
|
+
"file": "archare.gemspec",
|
540
|
+
"settings":
|
541
|
+
{
|
542
|
+
"buffer_size": 1551,
|
543
|
+
"line_ending": "Unix"
|
544
|
+
}
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"file": "Rakefile",
|
548
|
+
"settings":
|
549
|
+
{
|
550
|
+
"buffer_size": 398,
|
551
|
+
"line_ending": "Unix"
|
552
|
+
}
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"file": "spec/archare_spec.rb",
|
556
|
+
"settings":
|
557
|
+
{
|
558
|
+
"buffer_size": 323,
|
559
|
+
"line_ending": "Unix"
|
560
|
+
}
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"contents": "guard 'rspec' do\n \nend",
|
564
|
+
"file": "Guardfile",
|
565
|
+
"file_size": 22,
|
566
|
+
"file_write_time": 131113435340000000,
|
567
|
+
"settings":
|
568
|
+
{
|
569
|
+
"buffer_size": 22,
|
570
|
+
"line_ending": "Unix"
|
571
|
+
}
|
572
|
+
}
|
573
|
+
],
|
574
|
+
"build_system": "",
|
575
|
+
"build_system_choices":
|
576
|
+
[
|
577
|
+
[
|
578
|
+
[
|
579
|
+
[
|
580
|
+
"Packages/C++/C++ Single File.sublime-build",
|
581
|
+
""
|
582
|
+
],
|
583
|
+
[
|
584
|
+
"Packages/C++/C++ Single File.sublime-build",
|
585
|
+
"Run"
|
586
|
+
]
|
587
|
+
],
|
588
|
+
[
|
589
|
+
"Packages/C++/C++ Single File.sublime-build",
|
590
|
+
"Run"
|
591
|
+
]
|
592
|
+
],
|
593
|
+
[
|
594
|
+
[
|
595
|
+
[
|
596
|
+
"Packages/Java/Ant.sublime-build",
|
597
|
+
""
|
598
|
+
],
|
599
|
+
[
|
600
|
+
"Packages/Java/JavaC.sublime-build",
|
601
|
+
""
|
602
|
+
]
|
603
|
+
],
|
604
|
+
[
|
605
|
+
"Packages/Java/JavaC.sublime-build",
|
606
|
+
""
|
607
|
+
]
|
608
|
+
],
|
609
|
+
[
|
610
|
+
[
|
611
|
+
[
|
612
|
+
"Packages/Java/Ant.sublime-build",
|
613
|
+
""
|
614
|
+
],
|
615
|
+
[
|
616
|
+
"Packages/Java/JavaC.sublime-build",
|
617
|
+
""
|
618
|
+
],
|
619
|
+
[
|
620
|
+
"Packages/User/java.sublime-build",
|
621
|
+
""
|
622
|
+
],
|
623
|
+
[
|
624
|
+
"Packages/User/java.sublime-build",
|
625
|
+
"Run"
|
626
|
+
]
|
627
|
+
],
|
628
|
+
[
|
629
|
+
"Packages/User/java.sublime-build",
|
630
|
+
""
|
631
|
+
]
|
632
|
+
],
|
633
|
+
[
|
634
|
+
[
|
635
|
+
[
|
636
|
+
"Packages/Python/Python.sublime-build",
|
637
|
+
""
|
638
|
+
],
|
639
|
+
[
|
640
|
+
"Packages/Python/Python.sublime-build",
|
641
|
+
"Syntax Check"
|
642
|
+
]
|
643
|
+
],
|
644
|
+
[
|
645
|
+
"Packages/Python/Python.sublime-build",
|
646
|
+
""
|
647
|
+
]
|
648
|
+
],
|
649
|
+
[
|
650
|
+
[
|
651
|
+
[
|
652
|
+
"Packages/User/java.sublime-build",
|
653
|
+
""
|
654
|
+
],
|
655
|
+
[
|
656
|
+
"Packages/User/java.sublime-build",
|
657
|
+
"Run"
|
658
|
+
]
|
659
|
+
],
|
660
|
+
[
|
661
|
+
"Packages/User/java.sublime-build",
|
662
|
+
""
|
663
|
+
]
|
664
|
+
]
|
665
|
+
],
|
666
|
+
"build_varint": "",
|
667
|
+
"command_palette":
|
668
|
+
{
|
669
|
+
"height": 375.0,
|
670
|
+
"last_filter": "Package Control: ",
|
671
|
+
"selected_items":
|
672
|
+
[
|
673
|
+
[
|
674
|
+
"Package Control: ",
|
675
|
+
"Package Control: Install Package"
|
676
|
+
],
|
677
|
+
[
|
678
|
+
"Package Control: sass",
|
679
|
+
"Package Control: Satisfy Dependencies"
|
680
|
+
],
|
681
|
+
[
|
682
|
+
"Package Control: in",
|
683
|
+
"Package Control: Install Package"
|
684
|
+
],
|
685
|
+
[
|
686
|
+
"install",
|
687
|
+
"Package Control: Install Package"
|
688
|
+
]
|
689
|
+
],
|
690
|
+
"width": 471.0
|
691
|
+
},
|
692
|
+
"console":
|
693
|
+
{
|
694
|
+
"height": 126.0,
|
695
|
+
"history":
|
696
|
+
[
|
697
|
+
"clear"
|
698
|
+
]
|
699
|
+
},
|
700
|
+
"distraction_free":
|
701
|
+
{
|
702
|
+
"menu_visible": true,
|
703
|
+
"show_minimap": false,
|
704
|
+
"show_open_files": false,
|
705
|
+
"show_tabs": false,
|
706
|
+
"side_bar_visible": false,
|
707
|
+
"status_bar_visible": false
|
708
|
+
},
|
709
|
+
"expanded_folders":
|
710
|
+
[
|
711
|
+
"/Users/hanxu/Documents/workspace/ruby/archare"
|
712
|
+
],
|
713
|
+
"file_history":
|
714
|
+
[
|
715
|
+
"/Users/hanxu/Documents/workspace/ruby/archare/lib/archare/introducer.rb",
|
716
|
+
"/Users/hanxu/Documents/workspace/ruby/archare/archare.sublime-project",
|
717
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/stylesheets/archare-sass.scss",
|
718
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/javascripts/ah-ui-js.js",
|
719
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/lib/archare_ui/version.rb",
|
720
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/stylesheets/archare_ui.css.scss",
|
721
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/javascripts/archare_ui.js",
|
722
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/javascripts/test.js",
|
723
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/app/assets/stylesheets/archare-sass.scss.haml",
|
724
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/lib/archare_ui/engine.rb",
|
725
|
+
"/Users/hanxu/Documents/workspace/ruby/archare_ui/lib/archare_ui.rb",
|
726
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/Gemfile",
|
727
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/Gemfile",
|
728
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/application.css.scss",
|
729
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/archare-sass.scss",
|
730
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/collapsed_sidebar.scss",
|
731
|
+
"/Users/hanxu/workspace/Algorithms/playground.py",
|
732
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/onsite/Playground.java",
|
733
|
+
"/Users/hanxu/workspace/mianjing/amazon/Playground.class",
|
734
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/application.js",
|
735
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/d3_chart.scss",
|
736
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/admin_controller.rb",
|
737
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/tags_chart.js",
|
738
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/public/tags/new_index.html.erb",
|
739
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/config/routes.rb",
|
740
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/tree.json.jbuilder",
|
741
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/tags.coffee",
|
742
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/tags_controller.rb",
|
743
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/tags/flattened_tags.json.jbuilder",
|
744
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/tags/tree.json.jbuilder",
|
745
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/index.html.erb",
|
746
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/sessions_controller.rb",
|
747
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/layouts/application.html.erb",
|
748
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/application_layout.scss",
|
749
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/_form.html.erb",
|
750
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/sessions/new.html.erb",
|
751
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/application_controller.rb",
|
752
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/sessions/_login_form.html.erb",
|
753
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/sessions/_login_form.html.erb",
|
754
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/show.html.erb",
|
755
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/homepage/index.html.erb",
|
756
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/index.html.erb",
|
757
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/homepage.scss",
|
758
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/application_layout.coffee",
|
759
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/about_controller.rb",
|
760
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/models/edge.rb",
|
761
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/edges_controller.rb",
|
762
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/public/tags/new_index.html",
|
763
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/_form.html.erb",
|
764
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/index.json.jbuilder",
|
765
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/edges/create.js.erb",
|
766
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/comments_controller.rb",
|
767
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/edges/update.js.erb",
|
768
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/comments/create.js.erb",
|
769
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/show.json.jbuilder",
|
770
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/assets/stylesheets/d3_chart.scss",
|
771
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/miserables.json",
|
772
|
+
"/Users/hanxu/Desktop/final/divider.sv",
|
773
|
+
"/Users/hanxu/Desktop/final/div_interface.sv",
|
774
|
+
"/Users/hanxu/Desktop/final/finalsv.sv",
|
775
|
+
"/Users/hanxu/Desktop/final/auto_tb.sv",
|
776
|
+
"/Users/hanxu/Desktop/final/main_bus.sv",
|
777
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/show.html.erb",
|
778
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/comments.coffee",
|
779
|
+
"/Users/hanxu/Documents/workspace/ruby/archare.sublime-project",
|
780
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/posts.coffee",
|
781
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/about.coffee",
|
782
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/about/index.html.erb",
|
783
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/index.json.jbuilder",
|
784
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/index.html.erb",
|
785
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/index.json.jbuilder",
|
786
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/views/edges/miserables.json",
|
787
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/edges/_form.html.erb",
|
788
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/models/tag.rb",
|
789
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/show.html.erb",
|
790
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/development.sqlite3",
|
791
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/schema.rb",
|
792
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/migrate/20160423014524_create_edges.rb",
|
793
|
+
"/Users/hanxu/Documents/spring2016/ece5720/hw7/hw7/hw7_tb.v",
|
794
|
+
"/Users/hanxu/Documents/spring2016/ece5720/hw7/hw7/adder_interface.v",
|
795
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/stylesheets/tags.scss",
|
796
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/controllers/posts_controller.rb",
|
797
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/summernote_setting.coffee",
|
798
|
+
"/Users/hanxu/Documents/spring2016/ece5720/hw6/hw6/SerialAdder.v",
|
799
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/admin.coffee",
|
800
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/edit.html.erb",
|
801
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/_ref_post_form.html.erb",
|
802
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/posts/new.html.erb",
|
803
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/models/post.rb",
|
804
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/users/new.html.erb",
|
805
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/migrate/20160419214723_add_ref_link_to_posts.rb",
|
806
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/assets/javascripts/summernote_bootstraped.coffee",
|
807
|
+
"/Users/hanxu/Documents/workspace/ruby/personalsite/app/assets/javascripts/tags.js",
|
808
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/public/tags/tags.html",
|
809
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/migrate/20160413143743_remove_post_from_tags.rb",
|
810
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/db/migrate/20160413144352_create_join_table_post_tag.rb",
|
811
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/tags/create.js.erb",
|
812
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/views/users/_developer_form.html.erb",
|
813
|
+
"/Users/hanxu/workspace/Algorithms/Graph/Playground.java",
|
814
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/onsite/leetcode",
|
815
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/Playground.java",
|
816
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/group/Scheduler.java",
|
817
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/马鬃群面/scheduleinsertionObject.java",
|
818
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/马鬃群面/Optimization.java",
|
819
|
+
"/Users/hanxu/workspace/Algorithms/Sorting.py",
|
820
|
+
"/Users/hanxu/Desktop/hw6/auto_tb.v",
|
821
|
+
"/Users/hanxu/Desktop/hw6/SerialAdder.v",
|
822
|
+
"/Users/hanxu/workspace/mianjing/amazon-onsite/group/Schedule.java",
|
823
|
+
"/Users/hanxu/workspace/mianjing/fidessa/oa.cpp",
|
824
|
+
"/Users/hanxu/workspace/mianjing/arista2/note",
|
825
|
+
"/Users/hanxu/workspace/mianjing/arista2/questions.c",
|
826
|
+
"/Users/hanxu/workspace/mianjing/arista2/stack.py",
|
827
|
+
"/Users/hanxu/workspace/mianjing/qualcom/Suballocator.cpp",
|
828
|
+
"/Users/hanxu/workspace/mianjing/qualcom/DoublyLinkedList.h",
|
829
|
+
"/Users/hanxu/workspace/mianjing/fidessa/playground.cpp",
|
830
|
+
"/Users/hanxu/Library/Application Support/Sublime Text 3/Packages/Default/Preferences.sublime-settings",
|
831
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/app/helpers/posts_helper.rb",
|
832
|
+
"/Users/hanxu/Documents/spring2016/ece5720/midterm/p3/wc_tb.v",
|
833
|
+
"/Users/hanxu/Documents/spring2016/ece5720/midterm/p3/word_counter.v",
|
834
|
+
"/Users/hanxu/Documents/spring2016/ece5720/midterm/p3/word_counter.py",
|
835
|
+
"/Users/hanxu/workspace/mianjing/cloudheath/playground.rb",
|
836
|
+
"/Users/hanxu/Documents/fileofOLD/Fall 2015/5722/midterm/xhanmid/xhanMidTerm/sorter_tb.v",
|
837
|
+
"/Users/hanxu/Documents/fileofOLD/Fall 2015/5722/final/finalPackage/problem1/ShiftCounter.v",
|
838
|
+
"/Users/hanxu/workspace/mianjing/cloudheath/playground.ruby",
|
839
|
+
"/Users/hanxu/workspace/mianjing/amazon/OA2.java",
|
840
|
+
"/Users/hanxu/workspace/mianjing/amazon/Playground.java",
|
841
|
+
"/Users/hanxu/Desktop/hw5/c_tb.v.bak",
|
842
|
+
"/Users/hanxu/workspace/mianjing/aristanw/Arista/removeValues_q.c"
|
843
|
+
],
|
844
|
+
"find":
|
845
|
+
{
|
846
|
+
"height": 23.0
|
847
|
+
},
|
848
|
+
"find_in_files":
|
849
|
+
{
|
850
|
+
"height": 95.0,
|
851
|
+
"where_history":
|
852
|
+
[
|
853
|
+
"/Users/hanxu/Documents/workspace/ruby/PersonalSite/public"
|
854
|
+
]
|
855
|
+
},
|
856
|
+
"find_state":
|
857
|
+
{
|
858
|
+
"case_sensitive": false,
|
859
|
+
"find_history":
|
860
|
+
[
|
861
|
+
"boo",
|
862
|
+
"padding",
|
863
|
+
"xh-edu",
|
864
|
+
"if",
|
865
|
+
"cube-width",
|
866
|
+
"cube",
|
867
|
+
"\"images",
|
868
|
+
"images",
|
869
|
+
"\">\n",
|
870
|
+
"menu-",
|
871
|
+
"menu",
|
872
|
+
"div-edu",
|
873
|
+
"div-projects",
|
874
|
+
"div-skills-tree",
|
875
|
+
"xh-index",
|
876
|
+
"hover-animation",
|
877
|
+
"sidebar-",
|
878
|
+
"sidebar-nav",
|
879
|
+
"ul",
|
880
|
+
"ah-hor-cubelist-right",
|
881
|
+
"collapse-animation",
|
882
|
+
"sidebar-nav",
|
883
|
+
"ah-blue",
|
884
|
+
"$collapsed",
|
885
|
+
"#wrapper",
|
886
|
+
"120",
|
887
|
+
"-hori-",
|
888
|
+
"hori",
|
889
|
+
"160",
|
890
|
+
"ah-nav-cube",
|
891
|
+
"ah-sidebar-list",
|
892
|
+
"btn",
|
893
|
+
"ah-sidebar-rlist",
|
894
|
+
"ah-hori-cubelist",
|
895
|
+
"ah-sidebar-rlist",
|
896
|
+
"ah-vertical-line",
|
897
|
+
"horizontal-line",
|
898
|
+
"vertical-line",
|
899
|
+
"ah-top-nav",
|
900
|
+
"navbar-fixed-with-siderbar",
|
901
|
+
"ah-sidebar-item",
|
902
|
+
"item",
|
903
|
+
"z-index",
|
904
|
+
"160",
|
905
|
+
"180",
|
906
|
+
"verticalLine",
|
907
|
+
"sidebar-wrapper",
|
908
|
+
"z-index",
|
909
|
+
"display",
|
910
|
+
"sidebar-item",
|
911
|
+
"180",
|
912
|
+
"hover",
|
913
|
+
"helpers",
|
914
|
+
"nametooltip",
|
915
|
+
");\n",
|
916
|
+
"classes",
|
917
|
+
"diagonal",
|
918
|
+
"array",
|
919
|
+
"current_btn",
|
920
|
+
"alert",
|
921
|
+
"padding",
|
922
|
+
"200",
|
923
|
+
"collapsed",
|
924
|
+
"background",
|
925
|
+
"toggled",
|
926
|
+
"250",
|
927
|
+
"sidebar-wrapper",
|
928
|
+
"<A",
|
929
|
+
"getbbox",
|
930
|
+
"tooltip",
|
931
|
+
"getB",
|
932
|
+
"each",
|
933
|
+
"edge_type",
|
934
|
+
"svg:",
|
935
|
+
":path",
|
936
|
+
"drag_line_arrow",
|
937
|
+
"drag_line",
|
938
|
+
"edge_type",
|
939
|
+
"edge",
|
940
|
+
"edge_type",
|
941
|
+
"def",
|
942
|
+
"defs",
|
943
|
+
"LegendRectSize",
|
944
|
+
"LegendSpacing",
|
945
|
+
"classed",
|
946
|
+
"data",
|
947
|
+
"drag",
|
948
|
+
"mousedown_node",
|
949
|
+
"dragging",
|
950
|
+
"id",
|
951
|
+
"important",
|
952
|
+
"puts",
|
953
|
+
"weight",
|
954
|
+
"diameter",
|
955
|
+
"diametter",
|
956
|
+
"input",
|
957
|
+
"button",
|
958
|
+
"form",
|
959
|
+
"/tags/",
|
960
|
+
"add_tag",
|
961
|
+
"this",
|
962
|
+
".r",
|
963
|
+
"r",
|
964
|
+
"color",
|
965
|
+
"flare",
|
966
|
+
"///",
|
967
|
+
" \n",
|
968
|
+
"}\n",
|
969
|
+
"class",
|
970
|
+
"schedulerequest",
|
971
|
+
"new_alloc_ptr",
|
972
|
+
"new_alloc",
|
973
|
+
"new",
|
974
|
+
"new_alloc_ptr",
|
975
|
+
"start_ptr",
|
976
|
+
"start",
|
977
|
+
"start_ptr",
|
978
|
+
"delete",
|
979
|
+
"getpa",
|
980
|
+
"is_developer",
|
981
|
+
"is",
|
982
|
+
"record",
|
983
|
+
"type",
|
984
|
+
"is_deve",
|
985
|
+
"type",
|
986
|
+
"is_deve",
|
987
|
+
"type",
|
988
|
+
"is_dev"
|
989
|
+
],
|
990
|
+
"highlight": true,
|
991
|
+
"in_selection": false,
|
992
|
+
"preserve_case": false,
|
993
|
+
"regex": false,
|
994
|
+
"replace_history":
|
995
|
+
[
|
996
|
+
],
|
997
|
+
"reverse": false,
|
998
|
+
"show_context": true,
|
999
|
+
"use_buffer2": true,
|
1000
|
+
"whole_word": false,
|
1001
|
+
"wrap": true
|
1002
|
+
},
|
1003
|
+
"groups":
|
1004
|
+
[
|
1005
|
+
{
|
1006
|
+
"selected": 3,
|
1007
|
+
"sheets":
|
1008
|
+
[
|
1009
|
+
{
|
1010
|
+
"buffer": 0,
|
1011
|
+
"file": "README.md",
|
1012
|
+
"semi_transient": false,
|
1013
|
+
"settings":
|
1014
|
+
{
|
1015
|
+
"buffer_size": 1060,
|
1016
|
+
"regions":
|
1017
|
+
{
|
1018
|
+
},
|
1019
|
+
"selection":
|
1020
|
+
[
|
1021
|
+
[
|
1022
|
+
22,
|
1023
|
+
22
|
1024
|
+
]
|
1025
|
+
],
|
1026
|
+
"settings":
|
1027
|
+
{
|
1028
|
+
"syntax": "Packages/Markdown/Markdown.sublime-syntax"
|
1029
|
+
},
|
1030
|
+
"translation.x": 0.0,
|
1031
|
+
"translation.y": 0.0,
|
1032
|
+
"zoom_level": 1.0
|
1033
|
+
},
|
1034
|
+
"stack_index": 5,
|
1035
|
+
"type": "text"
|
1036
|
+
},
|
1037
|
+
{
|
1038
|
+
"buffer": 1,
|
1039
|
+
"file": "lib/archare.rb",
|
1040
|
+
"semi_transient": false,
|
1041
|
+
"settings":
|
1042
|
+
{
|
1043
|
+
"buffer_size": 157,
|
1044
|
+
"regions":
|
1045
|
+
{
|
1046
|
+
},
|
1047
|
+
"selection":
|
1048
|
+
[
|
1049
|
+
[
|
1050
|
+
152,
|
1051
|
+
152
|
1052
|
+
]
|
1053
|
+
],
|
1054
|
+
"settings":
|
1055
|
+
{
|
1056
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
1057
|
+
},
|
1058
|
+
"translation.x": 0.0,
|
1059
|
+
"translation.y": 0.0,
|
1060
|
+
"zoom_level": 1.0
|
1061
|
+
},
|
1062
|
+
"stack_index": 4,
|
1063
|
+
"type": "text"
|
1064
|
+
},
|
1065
|
+
{
|
1066
|
+
"buffer": 2,
|
1067
|
+
"file": "archare.gemspec",
|
1068
|
+
"semi_transient": false,
|
1069
|
+
"settings":
|
1070
|
+
{
|
1071
|
+
"buffer_size": 1551,
|
1072
|
+
"regions":
|
1073
|
+
{
|
1074
|
+
},
|
1075
|
+
"selection":
|
1076
|
+
[
|
1077
|
+
[
|
1078
|
+
1546,
|
1079
|
+
1546
|
1080
|
+
]
|
1081
|
+
],
|
1082
|
+
"settings":
|
1083
|
+
{
|
1084
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1085
|
+
"tab_size": 2,
|
1086
|
+
"translate_tabs_to_spaces": true
|
1087
|
+
},
|
1088
|
+
"translation.x": 0.0,
|
1089
|
+
"translation.y": 26.0,
|
1090
|
+
"zoom_level": 1.0
|
1091
|
+
},
|
1092
|
+
"stack_index": 3,
|
1093
|
+
"type": "text"
|
1094
|
+
},
|
1095
|
+
{
|
1096
|
+
"buffer": 3,
|
1097
|
+
"file": "Rakefile",
|
1098
|
+
"semi_transient": false,
|
1099
|
+
"settings":
|
1100
|
+
{
|
1101
|
+
"buffer_size": 398,
|
1102
|
+
"regions":
|
1103
|
+
{
|
1104
|
+
},
|
1105
|
+
"selection":
|
1106
|
+
[
|
1107
|
+
[
|
1108
|
+
373,
|
1109
|
+
373
|
1110
|
+
]
|
1111
|
+
],
|
1112
|
+
"settings":
|
1113
|
+
{
|
1114
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax"
|
1115
|
+
},
|
1116
|
+
"translation.x": 0.0,
|
1117
|
+
"translation.y": 0.0,
|
1118
|
+
"zoom_level": 1.0
|
1119
|
+
},
|
1120
|
+
"stack_index": 0,
|
1121
|
+
"type": "text"
|
1122
|
+
},
|
1123
|
+
{
|
1124
|
+
"buffer": 4,
|
1125
|
+
"file": "spec/archare_spec.rb",
|
1126
|
+
"semi_transient": false,
|
1127
|
+
"settings":
|
1128
|
+
{
|
1129
|
+
"buffer_size": 323,
|
1130
|
+
"regions":
|
1131
|
+
{
|
1132
|
+
},
|
1133
|
+
"selection":
|
1134
|
+
[
|
1135
|
+
[
|
1136
|
+
286,
|
1137
|
+
286
|
1138
|
+
]
|
1139
|
+
],
|
1140
|
+
"settings":
|
1141
|
+
{
|
1142
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1143
|
+
"tab_size": 2
|
1144
|
+
},
|
1145
|
+
"translation.x": 0.0,
|
1146
|
+
"translation.y": 0.0,
|
1147
|
+
"zoom_level": 1.0
|
1148
|
+
},
|
1149
|
+
"stack_index": 2,
|
1150
|
+
"type": "text"
|
1151
|
+
},
|
1152
|
+
{
|
1153
|
+
"buffer": 5,
|
1154
|
+
"file": "Guardfile",
|
1155
|
+
"semi_transient": false,
|
1156
|
+
"settings":
|
1157
|
+
{
|
1158
|
+
"buffer_size": 22,
|
1159
|
+
"regions":
|
1160
|
+
{
|
1161
|
+
},
|
1162
|
+
"selection":
|
1163
|
+
[
|
1164
|
+
[
|
1165
|
+
18,
|
1166
|
+
18
|
1167
|
+
]
|
1168
|
+
],
|
1169
|
+
"settings":
|
1170
|
+
{
|
1171
|
+
"syntax": "Packages/Ruby/Ruby.sublime-syntax",
|
1172
|
+
"tab_size": 2
|
1173
|
+
},
|
1174
|
+
"translation.x": 0.0,
|
1175
|
+
"translation.y": 0.0,
|
1176
|
+
"zoom_level": 1.0
|
1177
|
+
},
|
1178
|
+
"stack_index": 1,
|
1179
|
+
"type": "text"
|
1180
|
+
}
|
1181
|
+
]
|
1182
|
+
}
|
1183
|
+
],
|
1184
|
+
"incremental_find":
|
1185
|
+
{
|
1186
|
+
"height": 23.0
|
1187
|
+
},
|
1188
|
+
"input":
|
1189
|
+
{
|
1190
|
+
"height": 33.0
|
1191
|
+
},
|
1192
|
+
"layout":
|
1193
|
+
{
|
1194
|
+
"cells":
|
1195
|
+
[
|
1196
|
+
[
|
1197
|
+
0,
|
1198
|
+
0,
|
1199
|
+
1,
|
1200
|
+
1
|
1201
|
+
]
|
1202
|
+
],
|
1203
|
+
"cols":
|
1204
|
+
[
|
1205
|
+
0.0,
|
1206
|
+
1.0
|
1207
|
+
],
|
1208
|
+
"rows":
|
1209
|
+
[
|
1210
|
+
0.0,
|
1211
|
+
1.0
|
1212
|
+
]
|
1213
|
+
},
|
1214
|
+
"menu_visible": true,
|
1215
|
+
"output.exec":
|
1216
|
+
{
|
1217
|
+
"height": 100.0
|
1218
|
+
},
|
1219
|
+
"output.find_results":
|
1220
|
+
{
|
1221
|
+
"height": 0.0
|
1222
|
+
},
|
1223
|
+
"output.unsaved_changes":
|
1224
|
+
{
|
1225
|
+
"height": 100.0
|
1226
|
+
},
|
1227
|
+
"pinned_build_system": "",
|
1228
|
+
"project": "archare.sublime-project",
|
1229
|
+
"replace":
|
1230
|
+
{
|
1231
|
+
"height": 42.0
|
1232
|
+
},
|
1233
|
+
"save_all_on_build": true,
|
1234
|
+
"select_file":
|
1235
|
+
{
|
1236
|
+
"height": 0.0,
|
1237
|
+
"last_filter": "",
|
1238
|
+
"selected_items":
|
1239
|
+
[
|
1240
|
+
[
|
1241
|
+
"",
|
1242
|
+
"~/workspace/mianjing/amazon/OA2_Code/TreeAmplitude.java"
|
1243
|
+
]
|
1244
|
+
],
|
1245
|
+
"width": 0.0
|
1246
|
+
},
|
1247
|
+
"select_project":
|
1248
|
+
{
|
1249
|
+
"height": 500.0,
|
1250
|
+
"last_filter": "",
|
1251
|
+
"selected_items":
|
1252
|
+
[
|
1253
|
+
[
|
1254
|
+
"",
|
1255
|
+
"~/Documents/workspace/ruby/archare.sublime-project"
|
1256
|
+
]
|
1257
|
+
],
|
1258
|
+
"width": 380.0
|
1259
|
+
},
|
1260
|
+
"select_symbol":
|
1261
|
+
{
|
1262
|
+
"height": 0.0,
|
1263
|
+
"last_filter": "",
|
1264
|
+
"selected_items":
|
1265
|
+
[
|
1266
|
+
],
|
1267
|
+
"width": 0.0
|
1268
|
+
},
|
1269
|
+
"selected_group": 0,
|
1270
|
+
"settings":
|
1271
|
+
{
|
1272
|
+
},
|
1273
|
+
"show_minimap": false,
|
1274
|
+
"show_open_files": false,
|
1275
|
+
"show_tabs": true,
|
1276
|
+
"side_bar_visible": true,
|
1277
|
+
"side_bar_width": 205.0,
|
1278
|
+
"status_bar_visible": true,
|
1279
|
+
"template_settings":
|
1280
|
+
{
|
1281
|
+
}
|
1282
|
+
}
|