answers-core 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +6 -0
- data/answers-core.gemspec +30 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.eot +0 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.svg +230 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.ttf +0 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.woff +0 -0
- data/app/assets/images/OaklandCityTree.png +0 -0
- data/app/assets/images/background_image.jpg +0 -0
- data/app/assets/images/background_pattern.png +0 -0
- data/app/assets/images/beta.png +0 -0
- data/app/assets/images/bg_transparent.png +0 -0
- data/app/assets/images/border.png +0 -0
- data/app/assets/images/brigade.png +0 -0
- data/app/assets/images/cfa.png +0 -0
- data/app/assets/images/cfa_logo.png +0 -0
- data/app/assets/images/cfa_logo_footer.png +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/forest.jpeg +0 -0
- data/app/assets/images/getting_started_btn.png +0 -0
- data/app/assets/images/govuk.png +0 -0
- data/app/assets/images/openoaklandlogo.png +0 -0
- data/app/assets/images/quick_answers_icon.png +0 -0
- data/app/assets/images/quick_answers_icon_small.png +0 -0
- data/app/assets/images/searchIcon.png +0 -0
- data/app/assets/images/wmd-buttons.png +0 -0
- data/app/assets/images/yellow_bg.png +0 -0
- data/app/assets/javascripts/answers.js +19 -0
- data/app/assets/javascripts/answers/Markdown.Extra.js +304 -0
- data/app/assets/javascripts/answers/active_admin.js +62 -0
- data/app/assets/javascripts/answers/pagedown/LICENSE.txt +32 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Converter.js +1332 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Editor.js +2212 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Sanitizer.js +108 -0
- data/app/assets/javascripts/answers/pagedown/README.txt +0 -0
- data/app/assets/javascripts/answers/pagedown/demo/browser/demo.css +120 -0
- data/app/assets/javascripts/answers/pagedown/demo/browser/demo.html +83 -0
- data/app/assets/javascripts/answers/pagedown/demo/node/demo.js +44 -0
- data/app/assets/javascripts/answers/pagedown/local/Markdown.local.fr.js +43 -0
- data/app/assets/javascripts/answers/pagedown/node-pagedown.js +2 -0
- data/app/assets/javascripts/answers/pagedown/package.json +12 -0
- data/app/assets/javascripts/answers/pagedown/resources/wmd-buttons.psd +0 -0
- data/app/assets/javascripts/answers/pagedown/wmd-buttons.png +0 -0
- data/app/assets/javascripts/answers/skip_nav.js +8 -0
- data/app/assets/stylesheets/answers/active_admin.css.scss +17 -0
- data/app/assets/stylesheets/answers/active_admin_custom.css.scss +35 -0
- data/app/assets/stylesheets/answers/formatting.css +82 -0
- data/app/assets/stylesheets/answers/mobile.css +149 -0
- data/app/assets/stylesheets/answers/tags.css.scss +3 -0
- data/app/assets/stylesheets/answers/theme.css +916 -0
- data/app/controllers/answers/answers_controller.rb +26 -0
- data/app/controllers/answers/api/v1/answers_controller.rb +38 -0
- data/app/controllers/answers/api/v1/api_controller.rb +13 -0
- data/app/controllers/answers/api/v1/questions_controller.rb +39 -0
- data/app/controllers/answers/api/v1/taggings_controller.rb +46 -0
- data/app/controllers/answers/api/v1/tags_controller.rb +38 -0
- data/app/controllers/answers/application_controller.rb +27 -0
- data/app/controllers/answers/home_controller.rb +17 -0
- data/app/controllers/answers/questions_controller.rb +33 -0
- data/app/controllers/answers/search_controller.rb +22 -0
- data/app/controllers/answers/tags_controller.rb +36 -0
- data/app/helpers/answers/tags_helper.rb +7 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/answers/ability.rb +28 -0
- data/app/models/answers/administrator.rb +5 -0
- data/app/models/answers/answer.rb +6 -0
- data/app/models/answers/api/v1/api_user.rb +5 -0
- data/app/models/answers/question.rb +31 -0
- data/app/models/answers/user.rb +30 -0
- data/app/views/answers/admin/contacts/_article.html.erb +0 -0
- data/app/views/answers/admin/dashboard/_dashboard.html.erb +5 -0
- data/app/views/answers/admin/guide_steps/_form.html.erb +17 -0
- data/app/views/answers/api/v1/answers/_answer.json.jbuilder +2 -0
- data/app/views/answers/api/v1/answers/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/answers/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/questions/_question.json.jbuilder +2 -0
- data/app/views/answers/api/v1/questions/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/questions/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/taggings/_tagging.json.jbuilder +3 -0
- data/app/views/answers/api/v1/taggings/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/taggings/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/tags/_tag.json.jbuilder +2 -0
- data/app/views/answers/api/v1/tags/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/tags/show.json.jbuilder +1 -0
- data/app/views/answers/devise/confirmations/new.html.erb +12 -0
- data/app/views/answers/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/answers/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/answers/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/answers/devise/passwords/edit.html.erb +24 -0
- data/app/views/answers/devise/passwords/new.html.erb +20 -0
- data/app/views/answers/devise/registrations/edit.html.erb +25 -0
- data/app/views/answers/devise/registrations/new.html.erb +18 -0
- data/app/views/answers/devise/sessions/new.html.erb +25 -0
- data/app/views/answers/devise/shared/_links.erb +25 -0
- data/app/views/answers/devise/unlocks/new.html.erb +12 -0
- data/app/views/answers/home/_article.html.erb +3 -0
- data/app/views/answers/home/_category.html.erb +8 -0
- data/app/views/answers/home/about.html.erb +72 -0
- data/app/views/answers/home/index.html.erb +44 -0
- data/app/views/answers/questions/index.html.erb +21 -0
- data/app/views/answers/questions/show.html.erb +31 -0
- data/app/views/answers/search/index.html.erb +32 -0
- data/app/views/answers/shared/_articles_sidebar.html.erb +22 -0
- data/app/views/answers/shared/_autocomplete.html.erb +8 -0
- data/app/views/answers/shared/_categories_sidebar.html.erb +12 -0
- data/app/views/answers/shared/_search_form.html.erb +4 -0
- data/app/views/answers/shared/admin/_administration.html.erb +38 -0
- data/app/views/answers/shared/admin/_article_actions.html.erb +86 -0
- data/app/views/answers/shared/admin/_article_content.html.erb +27 -0
- data/app/views/answers/shared/admin/_article_details.html.erb +11 -0
- data/app/views/answers/shared/admin/_article_form.html.erb +20 -0
- data/app/views/answers/shared/admin/_author_pic.html.erb +0 -0
- data/app/views/answers/tags/index.html.erb +34 -0
- data/app/views/answers/tags/show.html.erb +31 -0
- data/app/views/layouts/answers/application.html.erb +97 -0
- data/config.ru +5 -0
- data/config/initializers/active_admin.rb +245 -0
- data/config/initializers/devise.rb +228 -0
- data/config/locales/devise.en.yml +57 -0
- data/config/locales/en.yml +129 -0
- data/config/routes.rb +22 -0
- data/config/secrets.yml +68 -0
- data/db/migrate/20140911060606_answers_up.rb +79 -0
- data/lib/answers-core.rb +1 -0
- data/lib/answers.rb +175 -0
- data/lib/answers/admin/answer.rb +29 -0
- data/lib/answers/admin/dashboard.rb +75 -0
- data/lib/answers/admin/question.rb +57 -0
- data/lib/answers/admin/tag.rb +12 -0
- data/lib/answers/admin/users.rb +65 -0
- data/lib/answers/core.rb +25 -0
- data/lib/answers/core/configuration.rb +90 -0
- data/lib/answers/core/engine.rb +116 -0
- data/lib/answers/engine.rb +62 -0
- data/lib/answers/errors.rb +13 -0
- data/lib/answers/plugin.rb +75 -0
- data/lib/answers/plugins.rb +73 -0
- data/lib/answers/version.rb +16 -0
- data/lib/api_client.rb +20 -0
- data/lib/assets/.gitkeep +0 -0
- data/lib/assets/eng_stop.csv +1 -0
- data/lib/generators/answers/clash_keywords.yml +3 -0
- data/lib/generators/answers/cms/cms_generator.rb +314 -0
- data/lib/generators/answers/cms/templates/.gitignore +91 -0
- data/lib/generators/answers/cms/templates/app/decorators/controllers/answers/.keep +0 -0
- data/lib/generators/answers/cms/templates/app/decorators/models/answers/.keep +0 -0
- data/lib/generators/answers/cms/templates/app/views/sitemap/index.xml.builder +15 -0
- data/lib/generators/answers/cms/templates/config/database.yml.mysql +20 -0
- data/lib/generators/answers/cms/templates/config/database.yml.postgresql +58 -0
- data/lib/generators/answers/cms/templates/config/database.yml.sqlite3 +18 -0
- data/lib/generators/answers/core/core_generator.rb +10 -0
- data/lib/generators/answers/core/templates/config/initializers/answers/core.rb.erb +35 -0
- data/lib/generators/answers/dummy/dummy_generator.rb +86 -0
- data/lib/generators/answers/dummy/templates/rails/Rakefile +7 -0
- data/lib/generators/answers/dummy/templates/rails/application.js +3 -0
- data/lib/generators/answers/dummy/templates/rails/application.rb.erb +12 -0
- data/lib/generators/answers/dummy/templates/rails/boot.rb.erb +6 -0
- data/lib/generators/answers/dummy/templates/rails/database.yml +34 -0
- data/lib/generators/answers/dummy/templates/rails/routes.rb +3 -0
- data/lib/generators/answers/engine/USAGE +24 -0
- data/lib/generators/answers/engine/engine_generator.rb +44 -0
- data/lib/generators/answers/engine/templates/.gitignore +2 -0
- data/lib/generators/answers/engine/templates/Gemfile +42 -0
- data/lib/generators/answers/engine/templates/Rakefile +19 -0
- data/lib/generators/answers/engine/templates/answers-extension_plural_name.gemspec +19 -0
- data/lib/generators/answers/engine/templates/app/controllers/answers/namespace/admin/plural_name_controller.rb.erb +14 -0
- data/lib/generators/answers/engine/templates/app/controllers/answers/namespace/plural_name_controller.rb.erb +34 -0
- data/lib/generators/answers/engine/templates/app/models/answers/namespace/singular_name.rb.erb +37 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_actions.html.erb +25 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_form.html.erb +65 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_plural_name.html.erb +2 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_records.html.erb +16 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_singular_name.html.erb +33 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_sortable_list.html.erb +5 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/edit.html.erb +1 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/index.html.erb +7 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/new.html.erb +1 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/plural_name/index.html.erb +11 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/plural_name/show.html.erb +39 -0
- data/lib/generators/answers/engine/templates/config/locales/cs.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/en.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/es.yml +29 -0
- data/lib/generators/answers/engine/templates/config/locales/fr.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/it.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/nb.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/nl.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/sk.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/tr.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/zh-CN.yml +30 -0
- data/lib/generators/answers/engine/templates/config/routes.rb.erb +19 -0
- data/lib/generators/answers/engine/templates/db/migrate/1_create_namespace_plural_name.rb.erb +39 -0
- data/lib/generators/answers/engine/templates/db/seeds.rb.erb +21 -0
- data/lib/generators/answers/engine/templates/lib/answers-extension_plural_name.rb.erb +1 -0
- data/lib/generators/answers/engine/templates/lib/answers/plural_name.rb.erb +21 -0
- data/lib/generators/answers/engine/templates/lib/answers/plural_name/engine.rb.erb +23 -0
- data/lib/generators/answers/engine/templates/lib/generators/answers/extension_plural_name_generator.rb.erb +19 -0
- data/lib/generators/answers/engine/templates/lib/tasks/answers/extension_plural_name.rake +13 -0
- data/lib/generators/answers/engine/templates/readme.md +10 -0
- data/lib/generators/answers/engine/templates/script/rails +10 -0
- data/lib/generators/answers/engine/templates/spec/features/answers/namespace/admin/plural_name_spec.rb.erb +200 -0
- data/lib/generators/answers/engine/templates/spec/models/answers/namespace/singular_name_spec.rb.erb +20 -0
- data/lib/generators/answers/engine/templates/spec/spec_helper.rb +31 -0
- data/lib/generators/answers/engine/templates/spec/support/factories/answers/plural_name.rb.erb +7 -0
- data/lib/generators/answers/engine/templates/tasks/rspec.rake +6 -0
- data/lib/generators/answers/engine/templates/tasks/testing.rake +8 -0
- data/lib/generators/answers/generator.rb +292 -0
- data/lib/markdownifier.rb +11 -0
- data/log/.gitkeep +0 -0
- data/log/development.log +12870 -0
- data/log/newrelic_agent.log +1339 -0
- data/log/test.log +233181 -0
- data/public/404.html +25 -0
- data/public/422.html +25 -0
- data/public/500.html +24 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +5 -0
- data/script/delayed_job +5 -0
- data/spec/controllers/answers_controller_spec.rb +55 -0
- data/spec/controllers/api/v1/answers_controller_spec.rb +144 -0
- data/spec/controllers/api/v1/questions_controller_spec.rb +144 -0
- data/spec/controllers/api/v1/taggings_controller_spec.rb +126 -0
- data/spec/controllers/api/v1/tags_controller_spec.rb +126 -0
- data/spec/controllers/home_controller_spec.rb +60 -0
- data/spec/controllers/questions_controller_spec.rb +55 -0
- data/spec/controllers/tags_controller_spec.rb +42 -0
- data/spec/factories/answers.rb +10 -0
- data/spec/factories/questions.rb +8 -0
- data/spec/factories/tags.rb +8 -0
- data/spec/factories/user.rb +32 -0
- data/spec/features/admin_dashboard_spec.rb +53 -0
- data/spec/features/admin_user_spec.rb +61 -0
- data/spec/features/searches_spec.rb +101 -0
- data/spec/fixtures/Article/_before_validation/sets_access_count_if_nil.yml +223 -0
- data/spec/fixtures/Article/_delete_orphaned_keywords/updating_an_article/destroys_orphaned_keywords_associated.yml +223 -0
- data/spec/fixtures/Article/_delete_orphaned_keywords/when_deleting_an_article/destroys_all_keywords_associated.yml +223 -0
- data/spec/fixtures/Article/_find_by_friendly_id/when_an_article_does_not_exist/does_not_raise_an_exception.yml +223 -0
- data/spec/fixtures/Article/_find_by_friendly_id/when_an_article_exists/returns_the_corresponding_article.yml +223 -0
- data/spec/fixtures/Article/_find_by_type/excludes_articles_not_matching_specified_type.yml +223 -0
- data/spec/fixtures/Article/_find_by_type/returns_articles_matching_type.yml +223 -0
- data/spec/fixtures/Article/_hits/before_an_article_has_been_viewed/has_zero_hits.yml +223 -0
- data/spec/fixtures/Article/_hits/returns_number_of_views/has_seven_views.yml +223 -0
- data/spec/fixtures/Article/_indexable_/returns_false_if_article_is_not_published.yml +223 -0
- data/spec/fixtures/Article/_indexable_/returns_true_if_article_is_published.yml +223 -0
- data/spec/fixtures/Article/_legacy_/returns_true_if_render_markdown_is_false.yml +223 -0
- data/spec/fixtures/Article/_qm_after_create/creates_wordcounts_for_relevant_keywords.yml +223 -0
- data/spec/fixtures/Article/_record_hit/viewing_an_article/increases_hit_by_one.yml +223 -0
- data/spec/fixtures/Article/_related/has_no_related_articles/.yml +223 -0
- data/spec/fixtures/Article/_related/has_related_articles/.yml +223 -0
- data/spec/fixtures/Article/_remove_stop_words/removes_common_english_words_from_the_string.yml +223 -0
- data/spec/fixtures/Article/_search/_search_titles/query_is_present_in_the_title/.yml +223 -0
- data/spec/fixtures/Article/_search/_search_titles/returns_an_empty_array_when_the_search_term_is_present_in_an_article_but_not_the_title.yml +223 -0
- data/spec/fixtures/Article/_search/matches_articles_in_the_database.yml +223 -0
- data/spec/fixtures/Article/_search/query_does_not_match_anything_in_the_database/returns_an_empty_array.yml +223 -0
- data/spec/fixtures/Article/_search/query_is_a_single_space/.yml +223 -0
- data/spec/fixtures/Article/_search/query_is_an_empty_string/.yml +223 -0
- data/spec/fixtures/Article/_to_s/when_an_article_has_a_category/returns_a_string_containing_title_id_and_category.yml +223 -0
- data/spec/fixtures/Article/can_be_published/an_unpublished_article/is_published.yml +223 -0
- data/spec/fixtures/Article/can_be_published/an_unpublished_article/returns_status_Published.yml +223 -0
- data/spec/fixtures/Article/has_a_friendly_url.yml +223 -0
- data/spec/fixtures/Article/is_valid_with_a_title.yml +223 -0
- data/spec/fixtures/Searches/search_results/1_result_found/.yml +22047 -0
- data/spec/fixtures/Searches/search_results/no_results_found/.yml +393 -0
- data/spec/fixtures/Searches/search_results/several_results_found/should_contain_the_title_and_preview_of_both_articles.yml +223 -0
- data/spec/fixtures/Searches/search_results/several_results_found/show_the_query.yml +277 -0
- data/spec/fixtures/articles.yml +428 -0
- data/spec/fixtures/categories.yml +17 -0
- data/spec/fixtures/contacts.yml +11 -0
- data/spec/fixtures/dragon_keyword_cassette.yml +77 -0
- data/spec/fixtures/oakland_answers.yml +2379 -0
- data/spec/helpers/tags_helper_spec.rb +15 -0
- data/spec/lib/markdownifier_spec.rb +12 -0
- data/spec/models/ability_spec.rb +36 -0
- data/spec/models/answer_spec.rb +5 -0
- data/spec/models/question_spec.rb +70 -0
- data/spec/models/user_spec.rb +55 -0
- data/spec/routing/answers_routing_spec.rb +19 -0
- data/spec/routing/questions_routing_spec.rb +19 -0
- data/spec/routing/routes_spec.rb +13 -0
- data/spec/security/brakeman_spec.rb +37 -0
- data/spec/spec_helper.rb +61 -0
- data/spec/support/login_helpers.rb +10 -0
- data/spec/support/wait_for_ajax_helper.rb +7 -0
- data/spec/support/wait_for_dom_helper.rb +12 -0
- data/spec/views/questions/index.html.erb_spec.rb +16 -0
- data/spec/views/questions/show.html.erb_spec.rb +14 -0
- data/spec/views/tags/index.html.erb_spec.rb +5 -0
- data/spec/views/tags/show.html.erb_spec.rb +5 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/assets/stylesheets/bootstrap.css +3990 -0
- data/vendor/crudgen/lib/generators/crudgen/install_generator.rb +23 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +484 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
naturalization:
|
|
2
|
+
id: 1
|
|
3
|
+
name: Naturalization
|
|
4
|
+
description: Articles related to naturalization
|
|
5
|
+
slug: naturalization
|
|
6
|
+
|
|
7
|
+
citizenship:
|
|
8
|
+
id: 2
|
|
9
|
+
name: Citizenship
|
|
10
|
+
description: Articles related to Citizenship
|
|
11
|
+
slug: citizenship
|
|
12
|
+
|
|
13
|
+
citizenship_benefits:
|
|
14
|
+
id: 3
|
|
15
|
+
name: Citizenship Benefits & Services
|
|
16
|
+
description: Articles related to citizenship benefits & services
|
|
17
|
+
slug: citizenship-benefits-and-services
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://words.bighugelabs.com/api/2/bht_api_key/train/json
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers: {}
|
|
10
|
+
response:
|
|
11
|
+
status:
|
|
12
|
+
code: 500
|
|
13
|
+
message: Inactive key
|
|
14
|
+
headers:
|
|
15
|
+
Server:
|
|
16
|
+
- nginx/1.4.6 (Ubuntu)
|
|
17
|
+
Date:
|
|
18
|
+
- Mon, 28 Jul 2014 18:49:31 GMT
|
|
19
|
+
Content-Type:
|
|
20
|
+
- text/html
|
|
21
|
+
Content-Length:
|
|
22
|
+
- '0'
|
|
23
|
+
Connection:
|
|
24
|
+
- keep-alive
|
|
25
|
+
X-Powered-By:
|
|
26
|
+
- PHP/5.5.9-1ubuntu4.3
|
|
27
|
+
Set-Cookie:
|
|
28
|
+
- PHPSESSID=50vjlur25pkltveiollueefe25; path=/; domain=words.bighugelabs.com
|
|
29
|
+
Expires:
|
|
30
|
+
- Thu, 19 Nov 1981 08:52:00 GMT
|
|
31
|
+
Cache-Control:
|
|
32
|
+
- no-store, no-cache, must-revalidate, post-check=0, pre-check=0
|
|
33
|
+
Pragma:
|
|
34
|
+
- no-cache
|
|
35
|
+
body:
|
|
36
|
+
encoding: UTF-8
|
|
37
|
+
string: ''
|
|
38
|
+
http_version:
|
|
39
|
+
recorded_at: Mon, 28 Jul 2014 18:49:58 GMT
|
|
40
|
+
- request:
|
|
41
|
+
method: get
|
|
42
|
+
uri: http://words.bighugelabs.com/api/2/bht_api_key/dragon/json
|
|
43
|
+
body:
|
|
44
|
+
encoding: US-ASCII
|
|
45
|
+
string: ''
|
|
46
|
+
headers: {}
|
|
47
|
+
response:
|
|
48
|
+
status:
|
|
49
|
+
code: 500
|
|
50
|
+
message: Inactive key
|
|
51
|
+
headers:
|
|
52
|
+
Server:
|
|
53
|
+
- nginx/1.4.6 (Ubuntu)
|
|
54
|
+
Date:
|
|
55
|
+
- Mon, 28 Jul 2014 18:49:31 GMT
|
|
56
|
+
Content-Type:
|
|
57
|
+
- text/html
|
|
58
|
+
Content-Length:
|
|
59
|
+
- '0'
|
|
60
|
+
Connection:
|
|
61
|
+
- keep-alive
|
|
62
|
+
X-Powered-By:
|
|
63
|
+
- PHP/5.5.9-1ubuntu4.3
|
|
64
|
+
Set-Cookie:
|
|
65
|
+
- PHPSESSID=1blk951psj02g6uest7thuimb3; path=/; domain=words.bighugelabs.com
|
|
66
|
+
Expires:
|
|
67
|
+
- Thu, 19 Nov 1981 08:52:00 GMT
|
|
68
|
+
Cache-Control:
|
|
69
|
+
- no-store, no-cache, must-revalidate, post-check=0, pre-check=0
|
|
70
|
+
Pragma:
|
|
71
|
+
- no-cache
|
|
72
|
+
body:
|
|
73
|
+
encoding: UTF-8
|
|
74
|
+
string: ''
|
|
75
|
+
http_version:
|
|
76
|
+
recorded_at: Mon, 28 Jul 2014 18:49:58 GMT
|
|
77
|
+
recorded_with: VCR 2.9.2
|
|
@@ -0,0 +1,2379 @@
|
|
|
1
|
+
---
|
|
2
|
+
- access_count: 0
|
|
3
|
+
author_link: ''
|
|
4
|
+
author_name: Antonio D
|
|
5
|
+
author_pic_content_type:
|
|
6
|
+
author_pic_file_name:
|
|
7
|
+
author_pic_file_size:
|
|
8
|
+
author_pic_updated_at:
|
|
9
|
+
category_id: 6
|
|
10
|
+
contact_id: 8
|
|
11
|
+
content:
|
|
12
|
+
content_main: 'Once you''ve hit that submit button, your application is locked in.
|
|
13
|
+
However, you can save and edit applications for jobs that you are currently applying
|
|
14
|
+
to as well as revise old applications and use them to apply to new jobs. '
|
|
15
|
+
content_main_extra: If you're in the process of applying, you can save your application
|
|
16
|
+
as you go and ahead any edit part you please. You can even use past applications
|
|
17
|
+
for new job openings so you don't need to re-enter every single past employment.
|
|
18
|
+
But once you've hit submit it's "bon voyage."
|
|
19
|
+
content_md:
|
|
20
|
+
content_need_to_know: ''
|
|
21
|
+
content_type:
|
|
22
|
+
created_at: '2013-06-01T21:39:58Z'
|
|
23
|
+
id: 132
|
|
24
|
+
preview: Once you've submitted your application, it's a done deal--you can't edit
|
|
25
|
+
it anymore.
|
|
26
|
+
render_markdown: true
|
|
27
|
+
service_url:
|
|
28
|
+
slug: can-i-revise-my-city-job-application
|
|
29
|
+
status: Published
|
|
30
|
+
tags: city jobs, applying
|
|
31
|
+
title: Can I revise my City job application?
|
|
32
|
+
updated:
|
|
33
|
+
updated_at: '2013-06-01T22:05:15Z'
|
|
34
|
+
user_id:
|
|
35
|
+
- access_count: 0
|
|
36
|
+
author_link: ''
|
|
37
|
+
author_name: Brian O'Grady
|
|
38
|
+
author_pic_content_type:
|
|
39
|
+
author_pic_file_name:
|
|
40
|
+
author_pic_file_size:
|
|
41
|
+
author_pic_updated_at:
|
|
42
|
+
category_id: 15
|
|
43
|
+
contact_id: 25
|
|
44
|
+
content:
|
|
45
|
+
content_main: 'Visit the [Motorcycle License Checklist][1] page at the California
|
|
46
|
+
Department of Motor Vehicles. [1]: http://www.dmv.ca.gov/dl/checklists/mc.htm'
|
|
47
|
+
content_main_extra: ''
|
|
48
|
+
content_md:
|
|
49
|
+
content_need_to_know: ''
|
|
50
|
+
content_type:
|
|
51
|
+
created_at: '2013-06-01T20:23:27Z'
|
|
52
|
+
id: 100
|
|
53
|
+
preview: Visit the Motorcycle License Checklist page at the California DMV.
|
|
54
|
+
render_markdown: true
|
|
55
|
+
service_url:
|
|
56
|
+
slug: how-do-i-get-a-motorcycle-license
|
|
57
|
+
status: Published
|
|
58
|
+
tags: motorcycle, motorcycle license, motorcycle driver license, driver license
|
|
59
|
+
title: How do I get a motorcycle license?
|
|
60
|
+
updated:
|
|
61
|
+
updated_at: '2013-06-11T01:34:22Z'
|
|
62
|
+
user_id:
|
|
63
|
+
- access_count: 0
|
|
64
|
+
author_link: ''
|
|
65
|
+
author_name: ''
|
|
66
|
+
author_pic_content_type:
|
|
67
|
+
author_pic_file_name:
|
|
68
|
+
author_pic_file_size:
|
|
69
|
+
author_pic_updated_at:
|
|
70
|
+
category_id: 7
|
|
71
|
+
contact_id:
|
|
72
|
+
content:
|
|
73
|
+
content_main: 'You can expunge -- or clear convictions from -- your criminal record
|
|
74
|
+
by petitioning the state in which you were convicted, or the federal government.
|
|
75
|
+
If you were convicted of crime in the State of California, instructions for the
|
|
76
|
+
process of filing a Petition for Dismissal are [here][1] and [here][2]. [1]: http://www.courts.ca.gov/1070.htm
|
|
77
|
+
[2]: http://www.saccourt.ca.gov/criminal/docs/1203-4-dismissal-process.pdf'
|
|
78
|
+
content_main_extra: ''
|
|
79
|
+
content_md:
|
|
80
|
+
content_need_to_know: You might want to hire a lawyer to help you with this process,
|
|
81
|
+
as with any legal proceeding.
|
|
82
|
+
content_type:
|
|
83
|
+
created_at: '2013-06-01T19:49:45Z'
|
|
84
|
+
id: 79
|
|
85
|
+
preview: You can petition the State of California to clear your criminal record.
|
|
86
|
+
render_markdown: true
|
|
87
|
+
service_url:
|
|
88
|
+
slug: can-a-person-clear-their-criminal-record-how
|
|
89
|
+
status: Published
|
|
90
|
+
tags: ''
|
|
91
|
+
title: Can a person clear their criminal record? How?
|
|
92
|
+
updated:
|
|
93
|
+
updated_at: '2013-06-01T22:09:09Z'
|
|
94
|
+
user_id:
|
|
95
|
+
- access_count: 0
|
|
96
|
+
author_link: ''
|
|
97
|
+
author_name: Antonio D
|
|
98
|
+
author_pic_content_type:
|
|
99
|
+
author_pic_file_name:
|
|
100
|
+
author_pic_file_size:
|
|
101
|
+
author_pic_updated_at:
|
|
102
|
+
category_id: 6
|
|
103
|
+
contact_id: 8
|
|
104
|
+
content:
|
|
105
|
+
content_main: 'You can file a [Job Interest Card][1] for a specific department within
|
|
106
|
+
the City of Oakland. After you''ve filed one you''ll get an email when a job opens
|
|
107
|
+
in that department so you can apply. You cannot file one for a specific job--only
|
|
108
|
+
by department. Job interest cards last 12 months and then you''ll need to re-file
|
|
109
|
+
them at the above link. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm?action=openjobrequest'
|
|
110
|
+
content_main_extra: ''
|
|
111
|
+
content_md:
|
|
112
|
+
content_need_to_know: ''
|
|
113
|
+
content_type:
|
|
114
|
+
created_at: '2013-06-01T21:28:27Z'
|
|
115
|
+
id: 124
|
|
116
|
+
preview: Nope, but can sign up to get an email when a job opens so you can apply.
|
|
117
|
+
render_markdown: true
|
|
118
|
+
service_url:
|
|
119
|
+
slug: can-i-submit-my-resume-for-any-future-city-job-openings
|
|
120
|
+
status: Published
|
|
121
|
+
tags: city jobs, appying
|
|
122
|
+
title: Can I submit my resume for any future City job openings?
|
|
123
|
+
updated:
|
|
124
|
+
updated_at: '2013-06-01T21:28:27Z'
|
|
125
|
+
user_id:
|
|
126
|
+
- access_count: 0
|
|
127
|
+
author_link: ''
|
|
128
|
+
author_name: Stella Strader
|
|
129
|
+
author_pic_content_type:
|
|
130
|
+
author_pic_file_name:
|
|
131
|
+
author_pic_file_size:
|
|
132
|
+
author_pic_updated_at:
|
|
133
|
+
category_id: 8
|
|
134
|
+
contact_id:
|
|
135
|
+
content:
|
|
136
|
+
content_main: 'The city of Oakland''s Animal Services is part of the Oakland Police
|
|
137
|
+
Department. If you find a dog that you can not keep until you find its owner,
|
|
138
|
+
call the Oakland Police Department non-emergency number: (510)-777-3333. Open
|
|
139
|
+
24 hours per day and 7 days per week. '
|
|
140
|
+
content_main_extra: ''
|
|
141
|
+
content_md:
|
|
142
|
+
content_need_to_know: ''
|
|
143
|
+
content_type:
|
|
144
|
+
created_at: '2013-06-01T18:51:49Z'
|
|
145
|
+
id: 40
|
|
146
|
+
preview: ''
|
|
147
|
+
render_markdown: true
|
|
148
|
+
service_url:
|
|
149
|
+
slug: who-do-i-contact-if-i-found-a-dog
|
|
150
|
+
status: Published
|
|
151
|
+
tags: found dog cat pet
|
|
152
|
+
title: Who do I contact if I found a dog?
|
|
153
|
+
updated:
|
|
154
|
+
updated_at: '2014-05-31T17:49:38Z'
|
|
155
|
+
user_id:
|
|
156
|
+
- access_count: 0
|
|
157
|
+
author_link: ''
|
|
158
|
+
author_name: Catherine Bracy
|
|
159
|
+
author_pic_content_type: image/jpeg
|
|
160
|
+
author_pic_file_name: Bracy_headshot_cropped.jpg
|
|
161
|
+
author_pic_file_size: 1395058
|
|
162
|
+
author_pic_updated_at: '2013-06-01T20:22:38Z'
|
|
163
|
+
category_id: 17
|
|
164
|
+
contact_id:
|
|
165
|
+
content:
|
|
166
|
+
content_main: 'The City of Oakland does not need to be informed if you change your
|
|
167
|
+
address, but you may need to contact other government entities if: 1) You''ve
|
|
168
|
+
moved and need to change your mailing address. In this case, contact the US Postal
|
|
169
|
+
Service [here](https://moversguide.usps.com/icoa/home/icoa-main-flow.do?execution=e1s1&_flowId=icoa-main-flow&referral=MG80).
|
|
170
|
+
2) You need to change the address on your drivers license. In this case, contact
|
|
171
|
+
the CA DMV [here](http://www.dmv.ca.gov/faq/genfaq.htm#CHANGEADDRESS). 3) You
|
|
172
|
+
need to change your voter registration. In this case, find information about how
|
|
173
|
+
to register online at the CA Secretary of State [here](https://rtv.sos.ca.gov/elections/register-to-vote/).
|
|
174
|
+
(Note: You need to go through the whole re-registration process even if you are
|
|
175
|
+
already registered and simply need to change your address. There is a spot to
|
|
176
|
+
indicate that you are already registered at another address).'
|
|
177
|
+
content_main_extra: ''
|
|
178
|
+
content_md:
|
|
179
|
+
content_need_to_know: ''
|
|
180
|
+
content_type:
|
|
181
|
+
created_at: '2013-06-01T20:22:40Z'
|
|
182
|
+
id: 98
|
|
183
|
+
preview: ''
|
|
184
|
+
render_markdown: true
|
|
185
|
+
service_url:
|
|
186
|
+
slug: who-do-i-need-to-inform-if-i-change-my-address
|
|
187
|
+
status: Published
|
|
188
|
+
tags: ''
|
|
189
|
+
title: Who do I need to inform if I change my address?
|
|
190
|
+
updated:
|
|
191
|
+
updated_at: '2013-06-01T20:22:40Z'
|
|
192
|
+
user_id:
|
|
193
|
+
- access_count: 0
|
|
194
|
+
author_link: ''
|
|
195
|
+
author_name: ''
|
|
196
|
+
author_pic_content_type:
|
|
197
|
+
author_pic_file_name:
|
|
198
|
+
author_pic_file_size:
|
|
199
|
+
author_pic_updated_at:
|
|
200
|
+
category_id: 5
|
|
201
|
+
contact_id:
|
|
202
|
+
content:
|
|
203
|
+
content_main: 'You can find six public pools in Oakland. - Defremery Pool - 1269
|
|
204
|
+
18th Street (510) 238-2205 - East Oakland Sports Center - 9161 Edes Avenue (510)
|
|
205
|
+
615-5838 - Fremont Pool - 4550 Foothill Blvd (510) 535-5614 - Lions Pool - 3860
|
|
206
|
+
Hanly Road (510) 482-7852 - Live Oak Pool - 1055 MacArthur Blvd (510) 238-2292
|
|
207
|
+
- Temescal Pool - 371 45th Street (510) 597-5013 '
|
|
208
|
+
content_main_extra: ''
|
|
209
|
+
content_md:
|
|
210
|
+
content_need_to_know: 'For pool hours, cost, swim lessons, events and other information:
|
|
211
|
+
http://www2.oaklandnet.com/Government/o/opr/s/aquatics/index.htm'
|
|
212
|
+
content_type:
|
|
213
|
+
created_at: '2013-06-01T18:33:06Z'
|
|
214
|
+
id: 32
|
|
215
|
+
preview: ''
|
|
216
|
+
render_markdown: true
|
|
217
|
+
service_url:
|
|
218
|
+
slug: where-are-the-public-swimming-pools-in-oakland
|
|
219
|
+
status: Published
|
|
220
|
+
tags: pool, swim, swimming pool
|
|
221
|
+
title: Where are the public swimming pools in Oakland?
|
|
222
|
+
updated:
|
|
223
|
+
updated_at: '2013-06-01T18:33:45Z'
|
|
224
|
+
user_id:
|
|
225
|
+
- access_count: 0
|
|
226
|
+
author_link: https://twitter.com/KimPHClerk
|
|
227
|
+
author_name: Kim Lehmkuhl
|
|
228
|
+
author_pic_content_type: image/png
|
|
229
|
+
author_pic_file_name: pic.png
|
|
230
|
+
author_pic_file_size: 74194
|
|
231
|
+
author_pic_updated_at: '2013-06-01T21:54:03Z'
|
|
232
|
+
category_id: 17
|
|
233
|
+
contact_id:
|
|
234
|
+
content:
|
|
235
|
+
content_main: <p>You can apply for a city ID card in person at the <a href="http://www.oaklandcityid.com/locations.html"
|
|
236
|
+
target="blank">City Center or Fruitvale office</a> of <a href="http://www.sfglobalsourcing.com/specialties"
|
|
237
|
+
target="blank">SF Global LLC</a>, the private company the city has contracted
|
|
238
|
+
with to provide this service. Oakland's city ID card is available for purchase
|
|
239
|
+
by Oakland residents 18 years and up {{?? website implies the card is available
|
|
240
|
+
for at least some minors because it states that the optional financial services
|
|
241
|
+
are available only to applicants 18 or older}} with proof of residency and identity.</p>
|
|
242
|
+
content_main_extra: <p>Before your visit, you can {{must??}} make a 30-minute appointment
|
|
243
|
+
<a href="http://..com/locations.html" target="blank">online or by phone</a>. </p>
|
|
244
|
+
<p>Oakland's city ID card is identification accepted and respected as a valid
|
|
245
|
+
residency card by Oakland Police Department, BART Police, Alameda County Sheriffs
|
|
246
|
+
and other local authorities {{what about city/state/federal service agencies?}}.</p>
|
|
247
|
+
<p><b>Accepted proof of residency</b> must show your <b>name</b> (or your spouse's,
|
|
248
|
+
if you bring a certified copy of your marriage certificate {{where do you get
|
|
249
|
+
this?? what does it cost?? what about civil unions/domestic partnerships??}} and
|
|
250
|
+
<b>Oakland address</b>, and be <b>dated within the last 30 days</b>:</p> <ol>
|
|
251
|
+
<li>Utility or services bill</li> <li>Local property tax statement</li> <li>Mortgage
|
|
252
|
+
payment {{that doesn't make sense, shouldn't it be a mortgage interest payment
|
|
253
|
+
invoice?}}</li> <li>Bank statement</li> <li>Pay stub</li> <li>Jury summons or
|
|
254
|
+
court order</li> <li>Federal or state income tax or refund statement</li> <li>Insurance
|
|
255
|
+
bill</li> <li>Proof of a minor currently enrolled in a local school</li> <li>Written
|
|
256
|
+
verification by an Oakland-funded {{how are people supposed to know what's Oakland-funded
|
|
257
|
+
versus county- or state-funded??}} homeless shelter, hospital, health clinic or
|
|
258
|
+
social services agency of at least 15 days of residency</li> </ol> <p><b>Accepted
|
|
259
|
+
proof of identity</b>:</br> <ol> <li>US Permanent Resident Card ("Green Card")</li>
|
|
260
|
+
<li>Current US Driver License</li> <li>Current US State Issued ID</li> <li>Current
|
|
261
|
+
US Military Service ID</li> <li>Mexican Matricula Consular Identification Card</li>
|
|
262
|
+
<li>Foreign Government Issued National ID Card</li> <li>Foreign Passport</li>
|
|
263
|
+
<li>Foreign Driver License</li> <li>Foreign Military Service ID</li> <li>Consular
|
|
264
|
+
Identification Card</li> </ol> </p> <p>If you're 18 and over and provide one of
|
|
265
|
+
the first six documents above, you can also apply to activate your city ID for
|
|
266
|
+
use as a pre-paid debit card. Be aware that pre-paid debit card services carry
|
|
267
|
+
both <a href="http://www.oaklandcityid.com/fees.html" target="blank">monthly and
|
|
268
|
+
transactional fees</a> that the vendor estimates range from a low end of $15 to
|
|
269
|
+
a high end of over $27 per month.</p>
|
|
270
|
+
content_md:
|
|
271
|
+
content_need_to_know: '<p>A city ID card costs $15 for adults (18 years and up),
|
|
272
|
+
$10 for seniors (65 years and up). {{No cost (or minimum age) is listed on the
|
|
273
|
+
company''s website for those under 18.}}</p> <p><b>City Center office</b><br>
|
|
274
|
+
<a href="http://www.bookfresh.com/index.html?id=2f38282f0696805b2f49af454bb7e34a&view=buyer_flow"
|
|
275
|
+
target="blank">Schedule an appointment online</a> or call (888) 997-3522<br> 8:00am
|
|
276
|
+
- 5:00pm Monday-Friday<br> Inside the City of Oakland offices (Dalziel Building)
|
|
277
|
+
across from Clay Street Garage<br> 250 Frank H. Ogawa Plaza, Suite 6301<br> Oakland,
|
|
278
|
+
CA 94612<br> <a href="http://bart.gov/stations/12th/map.aspx" target="blank">BART</a>:
|
|
279
|
+
12th St. Oakland City Center<br> <a href="http://www.actransit.org/wp-content/uploads/HSP_12S-stops.pdf"
|
|
280
|
+
target="blank">AC Transit</a>: 1, 1R, 11, 12, 14, 18, 20, 26, 31, 40, 51A, 58L,
|
|
281
|
+
72, 72M, 72R, 88, 314</p> <p><b>Fruitvale office</b><br> <a href="http://www.bookfresh.com/index.html?id=2f38282f0696805b2f49af454bb7e34a&view=buyer_flow"
|
|
282
|
+
target="blank">Schedule an appointment online</a> or call (888) 997-3522<br> {{Hours??}}<br>
|
|
283
|
+
Inside the <a href="http://sscf.org/" target="blank">Spanish Speaking Citizens''
|
|
284
|
+
Foundation</a> offices<br> 1470 Fruitvale Avenue, Suite 3<br> Oakland, CA 94601<br>
|
|
285
|
+
<a href="http://bart.gov/stations/ftvl/map.aspx" target="blank">BART</a>: Fruitvale<br>
|
|
286
|
+
<a href="http://www.actransit.org/wp-content/uploads/Stops_Fruitvale.pdf" target="blank">AC
|
|
287
|
+
Transit</a>: 1, 1R, 14, 20, 21, 39, 47, 51A, 54, 62, 339, 648, 654, 655</p>'
|
|
288
|
+
content_type:
|
|
289
|
+
created_at: '2013-06-01T21:54:04Z'
|
|
290
|
+
id: 145
|
|
291
|
+
preview: ''
|
|
292
|
+
render_markdown: true
|
|
293
|
+
service_url:
|
|
294
|
+
slug: how-do-i-get-an-oakland-id-card
|
|
295
|
+
status: Published
|
|
296
|
+
tags: ''
|
|
297
|
+
title: How do I get an Oakland ID card?
|
|
298
|
+
updated:
|
|
299
|
+
updated_at: '2013-06-03T12:00:57Z'
|
|
300
|
+
user_id:
|
|
301
|
+
- access_count: 0
|
|
302
|
+
author_link: ''
|
|
303
|
+
author_name: Howard D
|
|
304
|
+
author_pic_content_type:
|
|
305
|
+
author_pic_file_name:
|
|
306
|
+
author_pic_file_size:
|
|
307
|
+
author_pic_updated_at:
|
|
308
|
+
category_id: 2
|
|
309
|
+
contact_id: 28
|
|
310
|
+
content:
|
|
311
|
+
content_main: 'Installing of an over-sized fence requires a permit from building
|
|
312
|
+
services. For reasons of fire safety and for neighborhood appearance, fences in
|
|
313
|
+
front yards are limited to a height of three and a half feet, which is the same
|
|
314
|
+
or six inches higher than fences allowed in many nearby cities in the Bay Area.
|
|
315
|
+
Fencing in the back and along the sides of a house can be much taller. Visit the
|
|
316
|
+
Planning and Building Department''s [Permit information page][1] for more information.
|
|
317
|
+
Although it is best to solve neighborhood issues in local groups and neighborhood
|
|
318
|
+
associations, complaints can be sent to building services and these may result
|
|
319
|
+
in fines for alternations without permits or variances. To file a Code Enforcement
|
|
320
|
+
complaint, call (510) 238-3381 or visit the [City Code Enforcement][2] page. [1]:
|
|
321
|
+
http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/ [2]: http://www2.oaklandnet.com/Government/o/PBN/OurServices/CityCodeEnforcement/index.htm '
|
|
322
|
+
content_main_extra: ''
|
|
323
|
+
content_md:
|
|
324
|
+
content_need_to_know: ''
|
|
325
|
+
content_type:
|
|
326
|
+
created_at: '2013-06-01T19:43:26Z'
|
|
327
|
+
id: 73
|
|
328
|
+
preview: ''
|
|
329
|
+
render_markdown: true
|
|
330
|
+
service_url:
|
|
331
|
+
slug: what-can-i-do-when-one-or-more-neighbors-start-to-erect-large-all-enclosing-fences--3
|
|
332
|
+
status: Published
|
|
333
|
+
tags: fence, building services, neighborhood, height limit
|
|
334
|
+
title: 'What can I do when one or more neighbors start to erect large, all enclosing
|
|
335
|
+
fences? '
|
|
336
|
+
updated:
|
|
337
|
+
updated_at: '2014-05-31T22:27:18Z'
|
|
338
|
+
user_id:
|
|
339
|
+
- access_count: 0
|
|
340
|
+
author_link: ''
|
|
341
|
+
author_name: ''
|
|
342
|
+
author_pic_content_type:
|
|
343
|
+
author_pic_file_name:
|
|
344
|
+
author_pic_file_size:
|
|
345
|
+
author_pic_updated_at:
|
|
346
|
+
category_id: 5
|
|
347
|
+
contact_id:
|
|
348
|
+
content:
|
|
349
|
+
content_main: 'You cannot plant a tree in a public park. '
|
|
350
|
+
content_main_extra: ''
|
|
351
|
+
content_md:
|
|
352
|
+
content_need_to_know: ''
|
|
353
|
+
content_type:
|
|
354
|
+
created_at: '2013-06-01T21:41:04Z'
|
|
355
|
+
id: 136
|
|
356
|
+
preview: ''
|
|
357
|
+
render_markdown: true
|
|
358
|
+
service_url:
|
|
359
|
+
slug: can-i-plant-a-tree-in-a-park
|
|
360
|
+
status: Published
|
|
361
|
+
tags: Tree, plant
|
|
362
|
+
title: Can I plant a tree in a park?
|
|
363
|
+
updated:
|
|
364
|
+
updated_at: '2013-06-10T23:48:08Z'
|
|
365
|
+
user_id:
|
|
366
|
+
- access_count: 0
|
|
367
|
+
author_link: ''
|
|
368
|
+
author_name: ''
|
|
369
|
+
author_pic_content_type:
|
|
370
|
+
author_pic_file_name:
|
|
371
|
+
author_pic_file_size:
|
|
372
|
+
author_pic_updated_at:
|
|
373
|
+
category_id: 18
|
|
374
|
+
contact_id: 13
|
|
375
|
+
content:
|
|
376
|
+
content_main: 'There are are a number of ways that Oaklanders can help the homeless.
|
|
377
|
+
You can be involved in city policy, volunteer, make donations, and become an advocate.
|
|
378
|
+
Throughout the year, the City partners with local organizations for a variety
|
|
379
|
+
of events. Oakland’s Permanent Access to Housing (PATH) Strategy provides a roadmap
|
|
380
|
+
for ending homelessness in the City over a period of the next fifteen years. '
|
|
381
|
+
content_main_extra: ''
|
|
382
|
+
content_md:
|
|
383
|
+
content_need_to_know: See news updates and events; http://www2.oaklandnet.com/Government/o/DHS/s/CommunityActionPartnership/index.htm
|
|
384
|
+
You can find more on PATH by downloading http://www2.oaklandnet.com/oakca1/groups/dhs/documents/report/oak022659.pdf
|
|
385
|
+
See volunteermatch.org and City Team in Oakland http://dev.cityteam.org/oakland/index.php
|
|
386
|
+
content_type:
|
|
387
|
+
created_at: '2013-06-01T19:51:38Z'
|
|
388
|
+
id: 81
|
|
389
|
+
preview: ''
|
|
390
|
+
render_markdown: true
|
|
391
|
+
service_url:
|
|
392
|
+
slug: how-can-i-help-the-homeless
|
|
393
|
+
status: Published
|
|
394
|
+
tags: ''
|
|
395
|
+
title: How can I help the homeless?
|
|
396
|
+
updated:
|
|
397
|
+
updated_at: '2013-06-01T19:55:02Z'
|
|
398
|
+
user_id:
|
|
399
|
+
- access_count: 0
|
|
400
|
+
author_link: ''
|
|
401
|
+
author_name: ''
|
|
402
|
+
author_pic_content_type:
|
|
403
|
+
author_pic_file_name:
|
|
404
|
+
author_pic_file_size:
|
|
405
|
+
author_pic_updated_at:
|
|
406
|
+
category_id: 17
|
|
407
|
+
contact_id:
|
|
408
|
+
content:
|
|
409
|
+
content_main: The 2010 Census reported Oakland's population as 390,724. The California
|
|
410
|
+
Department of Finance has estimated Oakland's population on January 1, 2013, as
|
|
411
|
+
399,326.
|
|
412
|
+
content_main_extra: ''
|
|
413
|
+
content_md:
|
|
414
|
+
content_need_to_know: Oakland is the 8th largest city in California. Oakland has
|
|
415
|
+
seen an influx of new residents downtown with the construction of new condos and
|
|
416
|
+
apartments in downtown Oakland during the turn of the 21st century.
|
|
417
|
+
content_type:
|
|
418
|
+
created_at: '2013-06-01T19:08:25Z'
|
|
419
|
+
id: 55
|
|
420
|
+
preview: Oakland's current population is 390,724 according to the U.S. Census.
|
|
421
|
+
render_markdown: true
|
|
422
|
+
service_url:
|
|
423
|
+
slug: how-many-people-live-in-oakland
|
|
424
|
+
status: Published
|
|
425
|
+
tags: 'population, how many people live in oakland, residents, '
|
|
426
|
+
title: How Many People Live In Oakland?
|
|
427
|
+
updated:
|
|
428
|
+
updated_at: '2013-06-11T03:42:17Z'
|
|
429
|
+
user_id: 22
|
|
430
|
+
- access_count: 0
|
|
431
|
+
author_link: ''
|
|
432
|
+
author_name: Jan
|
|
433
|
+
author_pic_content_type:
|
|
434
|
+
author_pic_file_name:
|
|
435
|
+
author_pic_file_size:
|
|
436
|
+
author_pic_updated_at:
|
|
437
|
+
category_id: 17
|
|
438
|
+
contact_id:
|
|
439
|
+
content:
|
|
440
|
+
content_main: 'Go to [http://mapgis.oaklandnet.com/councildistricts/][1] and enter
|
|
441
|
+
your address. The map shows how the city is divided into 7 council districts -
|
|
442
|
+
you can click into any district to see the Councilmember, or you can enter your
|
|
443
|
+
address in the locator field to see the result. The Councilmember contact information
|
|
444
|
+
is displayed. [1]: http://mapgis.oaklandnet.com/councildistricts/'
|
|
445
|
+
content_main_extra: ''
|
|
446
|
+
content_md:
|
|
447
|
+
content_need_to_know: 'In addition to the Councilmembers who represent the 7 individual
|
|
448
|
+
Council Districts, there is an At-Large Councilmember who represents the entire
|
|
449
|
+
city. Currently that seat is held by Councilmember Rebecca Kaplan, who also serves
|
|
450
|
+
as Council President Pro Tempore. '
|
|
451
|
+
content_type:
|
|
452
|
+
created_at: '2013-06-01T19:17:39Z'
|
|
453
|
+
id: 58
|
|
454
|
+
preview: ''
|
|
455
|
+
render_markdown: true
|
|
456
|
+
service_url:
|
|
457
|
+
slug: what-council-district-am-i-in
|
|
458
|
+
status: Published
|
|
459
|
+
tags: 'City council, council district, Councilmember '
|
|
460
|
+
title: What Council District am I in?
|
|
461
|
+
updated:
|
|
462
|
+
updated_at: '2013-06-11T00:46:43Z'
|
|
463
|
+
user_id:
|
|
464
|
+
- access_count: 0
|
|
465
|
+
author_link: ''
|
|
466
|
+
author_name: ''
|
|
467
|
+
author_pic_content_type:
|
|
468
|
+
author_pic_file_name:
|
|
469
|
+
author_pic_file_size:
|
|
470
|
+
author_pic_updated_at:
|
|
471
|
+
category_id: 17
|
|
472
|
+
contact_id: 27
|
|
473
|
+
content:
|
|
474
|
+
content_main: " [Oaklandnet.com][1] features [live (real-time streaming) as well
|
|
475
|
+
as archived video.][2] Streaming video is available in the following formats.
|
|
476
|
+
View the system requirements below to select the one that is best for you. (Live)
|
|
477
|
+
[Microsoft Silverlight Users][3] (for PC and Macintosh) (Live) [Realplayer Users][4]
|
|
478
|
+
Archived Videos and Agendas of the Oakland City Council: [Click here to view agendas,
|
|
479
|
+
minutes and videos from past Council meetings.][5] [1]: http://www.Oaklandnet.com
|
|
480
|
+
[2]: http://www2.oaklandnet.com/Government/o/CityCouncil/s/VideoArchive/index.htm
|
|
481
|
+
[3]: http://oakland.granicus.com/MediaPlayer.php?publish_id=2 [4]: http://helixvideosvr.oaklandnet.com/ramgen/broadcast/encoderstream.rm
|
|
482
|
+
[5]: http://oakland.legistar.com/calendar.aspx"
|
|
483
|
+
content_main_extra: The City of Oakland website can be found at http://www2.oaklandnet.com/
|
|
484
|
+
content_md:
|
|
485
|
+
content_need_to_know: ''
|
|
486
|
+
content_type:
|
|
487
|
+
created_at: '2013-06-01T21:30:44Z'
|
|
488
|
+
id: 126
|
|
489
|
+
preview: ''
|
|
490
|
+
render_markdown: true
|
|
491
|
+
service_url:
|
|
492
|
+
slug: where-can-i-view-a-live-webcast-of-city-council-meetings
|
|
493
|
+
status: Published
|
|
494
|
+
tags: 'City Council, Meetings, '
|
|
495
|
+
title: Where can I view a live webcast of City Council Meetings?
|
|
496
|
+
updated:
|
|
497
|
+
updated_at: '2013-06-11T01:27:36Z'
|
|
498
|
+
user_id:
|
|
499
|
+
- access_count: 0
|
|
500
|
+
author_link: ''
|
|
501
|
+
author_name: John Garvey
|
|
502
|
+
author_pic_content_type:
|
|
503
|
+
author_pic_file_name:
|
|
504
|
+
author_pic_file_size:
|
|
505
|
+
author_pic_updated_at:
|
|
506
|
+
category_id: 7
|
|
507
|
+
contact_id:
|
|
508
|
+
content:
|
|
509
|
+
content_main: If there is drug dealing in progress you can report it to the Oakland
|
|
510
|
+
Police Departments non-emergency number -- **510-777-3333**. Make sure to get
|
|
511
|
+
the incident number. You can also call the Drug Hotline -- **510-238-DRUG/ 238-3784**
|
|
512
|
+
drug dealing tip-line – you can leave a recorded message that police use for follow-up
|
|
513
|
+
and to note chronic drug dealing hot spots. Give as much information as possible
|
|
514
|
+
including gender, race, age, height, weight, clothing, possible location of drugs
|
|
515
|
+
and associated vehicles.
|
|
516
|
+
content_main_extra: ''
|
|
517
|
+
content_md:
|
|
518
|
+
content_need_to_know: ''
|
|
519
|
+
content_type:
|
|
520
|
+
created_at: '2013-06-01T19:02:15Z'
|
|
521
|
+
id: 50
|
|
522
|
+
preview: 'There are two phone numbers you can call to report drug activity. '
|
|
523
|
+
render_markdown: true
|
|
524
|
+
service_url:
|
|
525
|
+
slug: how-do-i-report-drug-dealing
|
|
526
|
+
status: Published
|
|
527
|
+
tags: Police
|
|
528
|
+
title: How do I report drug dealing?
|
|
529
|
+
updated:
|
|
530
|
+
updated_at: '2013-06-12T06:10:59Z'
|
|
531
|
+
user_id:
|
|
532
|
+
- access_count: 0
|
|
533
|
+
author_link: http://dadisworking.tumblr.com/
|
|
534
|
+
author_name: Ellie Casson
|
|
535
|
+
author_pic_content_type: image/jpeg
|
|
536
|
+
author_pic_file_name: ellie_face.jpg
|
|
537
|
+
author_pic_file_size: 7798
|
|
538
|
+
author_pic_updated_at: '2014-05-31T22:20:14Z'
|
|
539
|
+
category_id: 20
|
|
540
|
+
contact_id: 27
|
|
541
|
+
content:
|
|
542
|
+
content_main: "**Times when you DON'T need an event permit** If you are having a
|
|
543
|
+
party **on you own property** (whether it's inside or outside, whether you rent
|
|
544
|
+
or own) you don't need a permit to play amplified music or serve alcohol. ----------
|
|
545
|
+
**Times when you WILL need an event permit** There are times when you will need
|
|
546
|
+
a **special permit** to hold an event. Conditions that require a special event
|
|
547
|
+
permit include: - an event that is open to the public with 50 or more people will
|
|
548
|
+
be in attendance - events that require street closures (e.g. a block party) -
|
|
549
|
+
a party where people will be drinking alcohol outside of private property - a
|
|
550
|
+
party with amplified sound that can be heard beyond your own property ----------
|
|
551
|
+
**How to get the permits you need** If you think your party meets the qualifications
|
|
552
|
+
above then you will need **at least one permit from the City, maybe more.** Almost
|
|
553
|
+
**all** events require a permit from the Special Activities unit of the City Administrator's
|
|
554
|
+
Office. In most (not all) cases, you are going to need to prove that you have
|
|
555
|
+
liability insurance for your proposed event. You can apply for a permit by contacting
|
|
556
|
+
either of the following staff people: - Nancy Marcus - 510-238-3294 - nmarcus@oaklandnet.com
|
|
557
|
+
- Jasmine Chan - 510-238-6914 - jchan@oaklandnet.com If your party is going to
|
|
558
|
+
require a **street closure** then you must you must file an application with the
|
|
559
|
+
Special Event Unit of the Oakland Police Department. Be sure to file the application
|
|
560
|
+
with OPD **at least 30 days prior to your event**. To hold a party in a public
|
|
561
|
+
space (e.g. a City park) you will need to request a reservation with the Office
|
|
562
|
+
of Parks and Recreation by phone at 510-238-3187 or by email at oprscheduling@oaklandnet.com. "
|
|
563
|
+
content_main_extra: ''
|
|
564
|
+
content_md:
|
|
565
|
+
content_need_to_know: ''
|
|
566
|
+
content_type:
|
|
567
|
+
created_at: '2014-05-31T22:20:17Z'
|
|
568
|
+
id: 326
|
|
569
|
+
preview: 'You may or you may not need a permit to throw a party depending on the
|
|
570
|
+
nature of the event. '
|
|
571
|
+
render_markdown: true
|
|
572
|
+
service_url:
|
|
573
|
+
slug: do-i-need-a-permit-to-throw-a-party
|
|
574
|
+
status: Published
|
|
575
|
+
tags: party, music, block party, stereo, speakers, BBQ, barbecue, street party,
|
|
576
|
+
noise, disturbance, outdoors, outside, neighbors, alcohol, amplified music, beer,
|
|
577
|
+
wine, liquor, drinking
|
|
578
|
+
title: Do I need a permit to throw a party?
|
|
579
|
+
updated:
|
|
580
|
+
updated_at: '2014-06-04T03:08:02Z'
|
|
581
|
+
user_id:
|
|
582
|
+
- access_count: 0
|
|
583
|
+
author_link: ''
|
|
584
|
+
author_name: ''
|
|
585
|
+
author_pic_content_type:
|
|
586
|
+
author_pic_file_name:
|
|
587
|
+
author_pic_file_size:
|
|
588
|
+
author_pic_updated_at:
|
|
589
|
+
category_id: 5
|
|
590
|
+
contact_id:
|
|
591
|
+
content:
|
|
592
|
+
content_main: 'There are different organizations that run the various farmer''s
|
|
593
|
+
markets throughout the city. You can find the contact information for specific
|
|
594
|
+
farmer''s markets through the California Certified Farmer''s Market website. [http://www.cafarmersmarkets.com/index.cfm][1]
|
|
595
|
+
[1]: http://www.cafarmersmarkets.com/index.cfm'
|
|
596
|
+
content_main_extra: ''
|
|
597
|
+
content_md:
|
|
598
|
+
content_need_to_know: ''
|
|
599
|
+
content_type:
|
|
600
|
+
created_at: '2013-06-01T19:12:15Z'
|
|
601
|
+
id: 57
|
|
602
|
+
preview: ''
|
|
603
|
+
render_markdown: true
|
|
604
|
+
service_url:
|
|
605
|
+
slug: who-do-i-contact-to-get-a-space-at-a-farmer-s-market
|
|
606
|
+
status: Published
|
|
607
|
+
tags: 'Farmers Market, '
|
|
608
|
+
title: Who do I contact to get a space at a Farmer's Market?
|
|
609
|
+
updated:
|
|
610
|
+
updated_at: '2013-06-11T04:37:16Z'
|
|
611
|
+
user_id:
|
|
612
|
+
- access_count: 0
|
|
613
|
+
author_link: karenivy@mindspring.com
|
|
614
|
+
author_name: Karen Ivy
|
|
615
|
+
author_pic_content_type:
|
|
616
|
+
author_pic_file_name:
|
|
617
|
+
author_pic_file_size:
|
|
618
|
+
author_pic_updated_at:
|
|
619
|
+
category_id: 17
|
|
620
|
+
contact_id: 12
|
|
621
|
+
content:
|
|
622
|
+
content_main: "**Oakland City Hall**<br> 1 Frank H. Ogawa Plaza<br> Oakland, CA
|
|
623
|
+
94612 [![map of oakland city hall][1]](http://mapq.st/146TJoF)<br> Frank H. Ogawa
|
|
624
|
+
plaza is located on 14th street, between Broadway and Clay. [1]: http://i.imgur.com/DKkMn9M.png "
|
|
625
|
+
content_main_extra: 'Oakland City Hall is conveniently located right off the BART
|
|
626
|
+
line at the 12th Street/City Center station. For more information about schedules
|
|
627
|
+
and for a map of the system, visit BART at [www.bart.gov][1] or call (510) 464-7133
|
|
628
|
+
(TDD#: (510) 839-2218). City Hall is also accessible via several different bus
|
|
629
|
+
lines run by AC Transit. For more information about schedules and a system map,
|
|
630
|
+
visit AC Transit at [www.actransit.org][2] or call (510) 891-4706 (TDD#: (510)
|
|
631
|
+
428-2266). Bus lines that serve City Hall include: 1, 1R, 11, 12, 18, 26, 72,
|
|
632
|
+
72R, 72M, 58L, 51A and the [free Broadway Shuttle][3]. [1]: http://www.bart.gov
|
|
633
|
+
[2]: http://www.actransit.dst.cs.us [3]: http://www.meetdowntownoak.com/shuttle.php'
|
|
634
|
+
content_md:
|
|
635
|
+
content_need_to_know: An accessbile entrance is located on the 14th Street side
|
|
636
|
+
of City Hall.
|
|
637
|
+
content_type:
|
|
638
|
+
created_at: '2013-06-01T21:17:04Z'
|
|
639
|
+
id: 117
|
|
640
|
+
preview: ''
|
|
641
|
+
render_markdown: true
|
|
642
|
+
service_url:
|
|
643
|
+
slug: where-is-city-hall-located--2
|
|
644
|
+
status: Published
|
|
645
|
+
tags: Oakland, City Hall
|
|
646
|
+
title: Where is City Hall located?
|
|
647
|
+
updated:
|
|
648
|
+
updated_at: '2013-06-11T01:24:23Z'
|
|
649
|
+
user_id:
|
|
650
|
+
- access_count: 0
|
|
651
|
+
author_link: ''
|
|
652
|
+
author_name: John Garvey
|
|
653
|
+
author_pic_content_type:
|
|
654
|
+
author_pic_file_name:
|
|
655
|
+
author_pic_file_size:
|
|
656
|
+
author_pic_updated_at:
|
|
657
|
+
category_id: 19
|
|
658
|
+
contact_id:
|
|
659
|
+
content:
|
|
660
|
+
content_main: 'Truancy Reporting: To report and get help for youth not in school,
|
|
661
|
+
phone the following. OUSD Police Non-Emergency Line: **510-874-7777**. Be sure
|
|
662
|
+
to describe youth, their clothing, their location, their activity (any drugs or
|
|
663
|
+
alcohol use) when calling in. For questions to OUSD police, email: **police@ousd.k12.ca.us** '
|
|
664
|
+
content_main_extra: ''
|
|
665
|
+
content_md:
|
|
666
|
+
content_need_to_know: ''
|
|
667
|
+
content_type:
|
|
668
|
+
created_at: '2013-06-01T19:10:12Z'
|
|
669
|
+
id: 56
|
|
670
|
+
preview: There is a truancy number to call to report kids skipping school.
|
|
671
|
+
render_markdown: true
|
|
672
|
+
service_url:
|
|
673
|
+
slug: how-can-i-report-students-who-are-skipping-school
|
|
674
|
+
status: Published
|
|
675
|
+
tags: truancy
|
|
676
|
+
title: How can I report students who are skipping school?
|
|
677
|
+
updated:
|
|
678
|
+
updated_at: '2013-06-01T19:10:12Z'
|
|
679
|
+
user_id:
|
|
680
|
+
- access_count: 0
|
|
681
|
+
author_link: ''
|
|
682
|
+
author_name: ''
|
|
683
|
+
author_pic_content_type:
|
|
684
|
+
author_pic_file_name:
|
|
685
|
+
author_pic_file_size:
|
|
686
|
+
author_pic_updated_at:
|
|
687
|
+
category_id: 17
|
|
688
|
+
contact_id:
|
|
689
|
+
content:
|
|
690
|
+
content_main: 'You have to request a replacement birth certificate from the county
|
|
691
|
+
where you were born. If you were born in Alameda County, you can find directions
|
|
692
|
+
for ordering replacement birth certificates [here][1]. [1]: http://www.acgov.org/auditor/clerk/birth2b.htm'
|
|
693
|
+
content_main_extra: ''
|
|
694
|
+
content_md:
|
|
695
|
+
content_need_to_know: If you request a replacement birth certificate online or by
|
|
696
|
+
mail, you will need to get your forms notarized. Alameda County charges a fee
|
|
697
|
+
for every birth certificate ordered.
|
|
698
|
+
content_type:
|
|
699
|
+
created_at: '2013-06-01T19:25:15Z'
|
|
700
|
+
id: 66
|
|
701
|
+
preview: You can request a replacement birth certificate from the county where you
|
|
702
|
+
were born.
|
|
703
|
+
render_markdown: true
|
|
704
|
+
service_url:
|
|
705
|
+
slug: how-do-i-get-a-replacement-birth-certificate
|
|
706
|
+
status: Published
|
|
707
|
+
tags: ''
|
|
708
|
+
title: How do I get a replacement birth certificate?
|
|
709
|
+
updated:
|
|
710
|
+
updated_at: '2013-06-01T19:53:00Z'
|
|
711
|
+
user_id:
|
|
712
|
+
- access_count: 0
|
|
713
|
+
author_link: ''
|
|
714
|
+
author_name: Jan
|
|
715
|
+
author_pic_content_type:
|
|
716
|
+
author_pic_file_name:
|
|
717
|
+
author_pic_file_size:
|
|
718
|
+
author_pic_updated_at:
|
|
719
|
+
category_id: 17
|
|
720
|
+
contact_id:
|
|
721
|
+
content:
|
|
722
|
+
content_main: 'If you know who your councilmember is, you can go to: http://www2.oaklandnet.com/Government/o/ElectedOfficials/index.htm
|
|
723
|
+
and click on the link for your member. This will take you to a website for that
|
|
724
|
+
council member and information on who to contact their office , along with support
|
|
725
|
+
staff If you don''t know your representative, you can go to: http://mapgis.oaklandnet.com/councildistricts/
|
|
726
|
+
and enter your address for find the link for your representative.'
|
|
727
|
+
content_main_extra: ''
|
|
728
|
+
content_md:
|
|
729
|
+
content_need_to_know: ''
|
|
730
|
+
content_type:
|
|
731
|
+
created_at: '2013-06-01T19:32:29Z'
|
|
732
|
+
id: 70
|
|
733
|
+
preview: You can contact your Councilmember via email, their website, or by phone
|
|
734
|
+
render_markdown: true
|
|
735
|
+
service_url:
|
|
736
|
+
slug: how-do-i-contact-my-councilmember
|
|
737
|
+
status: Published
|
|
738
|
+
tags: Councilmember, contact, email, phone
|
|
739
|
+
title: How do I contact my Councilmember?
|
|
740
|
+
updated:
|
|
741
|
+
updated_at: '2013-06-01T19:46:53Z'
|
|
742
|
+
user_id:
|
|
743
|
+
- access_count: 0
|
|
744
|
+
author_link: ''
|
|
745
|
+
author_name: ''
|
|
746
|
+
author_pic_content_type:
|
|
747
|
+
author_pic_file_name:
|
|
748
|
+
author_pic_file_size:
|
|
749
|
+
author_pic_updated_at:
|
|
750
|
+
category_id: 5
|
|
751
|
+
contact_id: 10
|
|
752
|
+
content:
|
|
753
|
+
content_main: 'Please call Central Reservations at (510) 238-3187 or review our
|
|
754
|
+
[Rental Facilities page][1] for additional information. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm'
|
|
755
|
+
content_main_extra: ''
|
|
756
|
+
content_md:
|
|
757
|
+
content_need_to_know: ''
|
|
758
|
+
content_type:
|
|
759
|
+
created_at: '2013-05-24T06:33:00Z'
|
|
760
|
+
id: 18
|
|
761
|
+
preview: Please call Central Reservations at (510) 238-3187 or review our Rental
|
|
762
|
+
Facilities page for additional information.
|
|
763
|
+
render_markdown: true
|
|
764
|
+
service_url:
|
|
765
|
+
slug: how-do-i-rent-a-facility
|
|
766
|
+
status: Published
|
|
767
|
+
tags: ''
|
|
768
|
+
title: How do I rent a facility?
|
|
769
|
+
updated:
|
|
770
|
+
updated_at: '2013-05-24T06:36:18Z'
|
|
771
|
+
user_id:
|
|
772
|
+
- access_count: 0
|
|
773
|
+
author_link: ''
|
|
774
|
+
author_name: Nicole Neditch
|
|
775
|
+
author_pic_content_type: image/jpeg
|
|
776
|
+
author_pic_file_name: photome.JPG
|
|
777
|
+
author_pic_file_size: 103139
|
|
778
|
+
author_pic_updated_at: '2013-06-01T04:50:43Z'
|
|
779
|
+
category_id: 14
|
|
780
|
+
contact_id: 14
|
|
781
|
+
content:
|
|
782
|
+
content_main: ''
|
|
783
|
+
content_main_extra: 'To establish residential garbage services and green waste pickup
|
|
784
|
+
in Oakland: - **If you own your home:** contact Waste Management of Alameda County
|
|
785
|
+
at (510) 613-8710 to start weekly garbage and yard trimmings/food scraps collection
|
|
786
|
+
service. - **If you are renting:** contact your landlord or property manager to
|
|
787
|
+
start weekly garbage and yard trimmings/food scraps collection service. To start
|
|
788
|
+
weekly recycling collection service for both owners and renters, contact your
|
|
789
|
+
recycling company: - **North and West Oakland:** Recycling service is provided
|
|
790
|
+
by California Waste Solutions. Call (510) 836-6200 to subscribe for service or
|
|
791
|
+
to request a cart. - **East Oakland:** Recycling service is provided by Waste
|
|
792
|
+
Management of Alameda County. Call (510) 613-8710 to subscribe for service or
|
|
793
|
+
to request a cart.'
|
|
794
|
+
content_md:
|
|
795
|
+
content_need_to_know: ''
|
|
796
|
+
content_type:
|
|
797
|
+
created_at: '2013-05-29T06:23:29Z'
|
|
798
|
+
id: 24
|
|
799
|
+
preview: ''
|
|
800
|
+
render_markdown: true
|
|
801
|
+
service_url:
|
|
802
|
+
slug: how-do-i-start-residential-garbage-and-recycling-service-in-oakland
|
|
803
|
+
status: Published
|
|
804
|
+
tags: garbage, recycling, green. food scraps
|
|
805
|
+
title: How do I start residential garbage and recycling service in Oakland?
|
|
806
|
+
updated:
|
|
807
|
+
updated_at: '2013-06-01T04:50:44Z'
|
|
808
|
+
user_id: 1
|
|
809
|
+
- access_count: 0
|
|
810
|
+
author_link: http://www.twitter.com/siruguri
|
|
811
|
+
author_name: Sameer Siruguri
|
|
812
|
+
author_pic_content_type:
|
|
813
|
+
author_pic_file_name:
|
|
814
|
+
author_pic_file_size:
|
|
815
|
+
author_pic_updated_at:
|
|
816
|
+
category_id: 17
|
|
817
|
+
contact_id: 18
|
|
818
|
+
content:
|
|
819
|
+
content_main: 'Language assistance can also include: - Interpreters - Assistance
|
|
820
|
+
from a bilingual staff member (who has received appropriate training) - Multimedia
|
|
821
|
+
resources (for example, a multilingual CD-Rom) - Multilingual information on web
|
|
822
|
+
sites - Multilingual telephone information - Translated printed materials'
|
|
823
|
+
content_main_extra: 'The Equal Access Office provides many kinds of language assistance
|
|
824
|
+
to Oakland residents. [This webpage on the City''s website][1] has a list of Language
|
|
825
|
+
Assistance accommodations, that include: - How to know which city services have
|
|
826
|
+
language assistance provided - A printable card you can carry with you to help
|
|
827
|
+
city staff know that you need help in a language other than English **You can
|
|
828
|
+
contact the Office of Equal Access for more information**<br> 150 Frank H. Ogawa
|
|
829
|
+
Plaza, 2nd Floor, Oakland, CA 94612<br> phone: (510) 238-6813<br> [equalaccess@oaklandnet.com][2]
|
|
830
|
+
[1]: http://www2.oaklandnet.com/Government/o/HumanResources/o/EqualAccess/DOWD000747
|
|
831
|
+
[2]: mailto:equalaccess@oaklandnet.com'
|
|
832
|
+
content_md:
|
|
833
|
+
content_need_to_know: ''
|
|
834
|
+
content_type:
|
|
835
|
+
created_at: '2013-06-01T18:54:33Z'
|
|
836
|
+
id: 43
|
|
837
|
+
preview: The Equal Access Office ensures limited-English-proficient citizens equal
|
|
838
|
+
access to government services so they may actively participate in all levels of
|
|
839
|
+
government.
|
|
840
|
+
render_markdown: true
|
|
841
|
+
service_url:
|
|
842
|
+
slug: where-can-i-receive-language-assistance
|
|
843
|
+
status: Published
|
|
844
|
+
tags: equal access, language, interpreters
|
|
845
|
+
title: Where can I receive language assistance?
|
|
846
|
+
updated:
|
|
847
|
+
updated_at: '2013-06-11T03:03:25Z'
|
|
848
|
+
user_id:
|
|
849
|
+
- access_count: 0
|
|
850
|
+
author_link: ''
|
|
851
|
+
author_name: ''
|
|
852
|
+
author_pic_content_type:
|
|
853
|
+
author_pic_file_name:
|
|
854
|
+
author_pic_file_size:
|
|
855
|
+
author_pic_updated_at:
|
|
856
|
+
category_id: 4
|
|
857
|
+
contact_id:
|
|
858
|
+
content:
|
|
859
|
+
content_main: The City’s annual budget across all funds for the current fiscal year
|
|
860
|
+
(FY 2012-13) is about $1 billion.
|
|
861
|
+
content_main_extra: ''
|
|
862
|
+
content_md:
|
|
863
|
+
content_need_to_know: Nearly 59 percent of those funds are restricted for specific
|
|
864
|
+
purposes such as streets, housing development, sewer maintenance and bond-funded
|
|
865
|
+
programs such as Measure DD improvements at Lake Merritt. Restricted funds come
|
|
866
|
+
from grants, fees, bond measures or revenues that are collected for a specific
|
|
867
|
+
purpose. The remaining 41 percent of the City’s total budget is the General Purpose
|
|
868
|
+
Fund (GPF), which is used to pay for important programs and services such as police
|
|
869
|
+
and fire protection, libraries, senior centers and recreation programs, as well
|
|
870
|
+
as elected offices and municipal business functions. The GPF also includes some
|
|
871
|
+
restricted funds such as ballot measure earmarks. For more information see http://www2.oaklandnet.com/OAK040588
|
|
872
|
+
content_type:
|
|
873
|
+
created_at: '2013-05-29T05:23:58Z'
|
|
874
|
+
id: 22
|
|
875
|
+
preview: 'The City’s annual budget across all funds for the current fiscal year
|
|
876
|
+
(FY 2012-13) is about $1 billion. '
|
|
877
|
+
render_markdown: true
|
|
878
|
+
service_url:
|
|
879
|
+
slug: how-much-is-the-city-s-total-budget
|
|
880
|
+
status: Published
|
|
881
|
+
tags: budget, finance
|
|
882
|
+
title: How much is the City’s total budget?
|
|
883
|
+
updated:
|
|
884
|
+
updated_at: '2013-05-30T04:41:16Z'
|
|
885
|
+
user_id: 1
|
|
886
|
+
- access_count: 0
|
|
887
|
+
author_link: ''
|
|
888
|
+
author_name: ''
|
|
889
|
+
author_pic_content_type:
|
|
890
|
+
author_pic_file_name:
|
|
891
|
+
author_pic_file_size:
|
|
892
|
+
author_pic_updated_at:
|
|
893
|
+
category_id: 3
|
|
894
|
+
contact_id:
|
|
895
|
+
content:
|
|
896
|
+
content_main: ''
|
|
897
|
+
content_main_extra: 'To report abandoned vehicles parked on a public street for
|
|
898
|
+
over 72 hours, you can: - Call the Abandoned Auto Detail at (510) 777-8622. -
|
|
899
|
+
Email the location, description, and license number of the vehicle, if known,
|
|
900
|
+
to AbandonedAuto@oaklandnet.com. To report an abandoned vehicle parked on private
|
|
901
|
+
property or a private street, you can: - Call the Vehicle Abatement Detail at
|
|
902
|
+
(510) 777-8538. The Abandoned Auto Detail operates Monday through Friday, 6am
|
|
903
|
+
to 4pm. '
|
|
904
|
+
content_md:
|
|
905
|
+
content_need_to_know: All the Police Service Technicians in the Abandoned Auto Detail
|
|
906
|
+
are assigned to field duty. Each morning, all messages (voicemail, email and fax)
|
|
907
|
+
are retrieved and distributed to the appropriate Police Service Technician for
|
|
908
|
+
the caller’s area.
|
|
909
|
+
content_type:
|
|
910
|
+
created_at: '2013-05-29T05:49:44Z'
|
|
911
|
+
id: 23
|
|
912
|
+
preview: 'Report abandoned vehicles to the Abandoned Auto Detail. '
|
|
913
|
+
render_markdown: true
|
|
914
|
+
service_url:
|
|
915
|
+
slug: how-do-i-report-an-abandoned-vehicle
|
|
916
|
+
status: Published
|
|
917
|
+
tags: ''
|
|
918
|
+
title: How do I report an abandoned vehicle?
|
|
919
|
+
updated:
|
|
920
|
+
updated_at: '2013-05-29T05:57:21Z'
|
|
921
|
+
user_id: 1
|
|
922
|
+
- access_count: 0
|
|
923
|
+
author_link: ''
|
|
924
|
+
author_name: ''
|
|
925
|
+
author_pic_content_type:
|
|
926
|
+
author_pic_file_name:
|
|
927
|
+
author_pic_file_size:
|
|
928
|
+
author_pic_updated_at:
|
|
929
|
+
category_id: 18
|
|
930
|
+
contact_id: 13
|
|
931
|
+
content:
|
|
932
|
+
content_main: The City of Oakland's homeless programs provide housing and services
|
|
933
|
+
to people in Oakland who are homeless, hungry, HIV/AIDS positive, or living on
|
|
934
|
+
extremely low incomes. Community Housing Services recognizes the tremendous need
|
|
935
|
+
for services specific to the homeless population. We partner with non-profit organizations
|
|
936
|
+
to assist the homeless and near-homeless community with homeless prevention, rapid
|
|
937
|
+
re-housing, permanent supportive housing, shelter, transitional/supportive housing
|
|
938
|
+
and special needs housing. We also provide other homeless support services such
|
|
939
|
+
as food, employment, physical and mental health, drug abuse and domestic violence
|
|
940
|
+
programs.
|
|
941
|
+
content_main_extra: ''
|
|
942
|
+
content_md:
|
|
943
|
+
content_need_to_know: 'Shelter Hotline 1-800-774-3583 Daily list of available shelters:
|
|
944
|
+
510-537-2552 In Alameda County, dial 211 for information and referral services
|
|
945
|
+
For more information and news: http://www2.oaklandnet.com/Government/o/DHS/s/CommunityHousingServices/index.htm'
|
|
946
|
+
content_type:
|
|
947
|
+
created_at: '2013-06-01T18:52:02Z'
|
|
948
|
+
id: 41
|
|
949
|
+
preview: ''
|
|
950
|
+
render_markdown: true
|
|
951
|
+
service_url:
|
|
952
|
+
slug: what-is-the-city-doing-to-help-the-homeless
|
|
953
|
+
status: Published
|
|
954
|
+
tags: homeless, housing, shelters
|
|
955
|
+
title: What is the City doing to help the homeless?
|
|
956
|
+
updated:
|
|
957
|
+
updated_at: '2013-06-01T18:52:02Z'
|
|
958
|
+
user_id:
|
|
959
|
+
- access_count: 0
|
|
960
|
+
author_link: http://stevespiker.com
|
|
961
|
+
author_name: Spike
|
|
962
|
+
author_pic_content_type: image/jpeg
|
|
963
|
+
author_pic_file_name: 576799_10151198926448032_1669821745_n.jpg
|
|
964
|
+
author_pic_file_size: 54119
|
|
965
|
+
author_pic_updated_at: '2013-05-30T23:17:29Z'
|
|
966
|
+
category_id: 7
|
|
967
|
+
contact_id: 11
|
|
968
|
+
content:
|
|
969
|
+
content_main: 'You may request certain types of information from the OPD using an
|
|
970
|
+
Online, mail or in-person process. We highly suggest the online method. **Online**
|
|
971
|
+
Step 1: Copy the Public Records [request form][1] to your computer Step 2: Save
|
|
972
|
+
the PDF document to your computer and then complete the details on the PDF document
|
|
973
|
+
itself. Step 3: Re-SAVE the PDF on your computer with the details completed. Step
|
|
974
|
+
4: Email it to [OPDPublicRecordsRequest@oaklandnet.com][2]. **In-Person** Step
|
|
975
|
+
1: Picking up a copy of the form in person at the [Police Administration Building][3]
|
|
976
|
+
Patrol Desk on the first floor. Step 2: Bring the completed form to the OPD Records
|
|
977
|
+
Division Kiosk on the first floor of the PAB. The Records Kiosk is open to the
|
|
978
|
+
public from 8:00 am to 3:00 pm Monday through Friday and from 8:00 am until noon
|
|
979
|
+
on Saturday and Sunday. **By Mail** Send your completed paper form to: Public
|
|
980
|
+
Records Request Coordinator Oakland Police Department Records Section 455 7th
|
|
981
|
+
Street, Room 306 Oakland, CA 94607 Contact Information for Assistance If you need
|
|
982
|
+
additional assistance with a Public Records request, please contact the Public
|
|
983
|
+
Records Request Coordinator: (510) 238-7143. [1]: http://www2.oaklandnet.com/Government/o/OPD/s/document/DOWD002885
|
|
984
|
+
[2]: http://mailto:OPDPublicRecordsRequest@oaklandnet.com?Subject=RecordsRequest
|
|
985
|
+
[3]: http://maps.google.com/maps?hl=en&source=hp&ie=UTF8&q=oakland%20police%20department&fb=1&gl=us&hq=police%20department&hnear=oakland&ei=FJrfSrydOYWyswPn-IXoCA&ved=0CCsQnQIwBg&view=map&f=d&daddr=455%207th%20St,%20Oakland,%20CA&geocode=CU8p8gFnSfHUFcnGQAIdCD22-A'
|
|
986
|
+
content_main_extra: 'Your request will either be fulfilled or denied- if it is denied
|
|
987
|
+
you will be furnished with details of why the request is not being fulfilled.
|
|
988
|
+
**Public records include:** - Complaints - Crime Reports - Department publications
|
|
989
|
+
- Employment contracts - Offense reports - Recordings - List item - Traffic accident
|
|
990
|
+
reports - Traffic enforcement incidents - Training records '
|
|
991
|
+
content_md:
|
|
992
|
+
content_need_to_know: 'OPD is required to respond to your request in writing within
|
|
993
|
+
10 working days (Monday to Friday and not including holidays). By law OPD can
|
|
994
|
+
request an additional 2 weeks to comply with this request. Please be aware that
|
|
995
|
+
many types of requests are forbidden due to confidentiality of personal records
|
|
996
|
+
and because of the status of ongoing investigations. A full description of all
|
|
997
|
+
the available data and records that are possible to request is being developed.
|
|
998
|
+
The information request page is located here: [http://www2.oaklandnet.com/Government/o/OPD/DOWD002845][1]
|
|
999
|
+
[1]: http://www2.oaklandnet.com/Government/o/OPD/DOWD002845'
|
|
1000
|
+
content_type:
|
|
1001
|
+
created_at: '2013-05-26T21:10:47Z'
|
|
1002
|
+
id: 19
|
|
1003
|
+
preview: You can request public information using an online or an in-person process.
|
|
1004
|
+
render_markdown: true
|
|
1005
|
+
service_url:
|
|
1006
|
+
slug: how-do-i-request-information-from-the-oakland-police-department
|
|
1007
|
+
status: Published
|
|
1008
|
+
tags: police,safety,crime,investigation
|
|
1009
|
+
title: How do I request information from the Oakland Police Department
|
|
1010
|
+
updated:
|
|
1011
|
+
updated_at: '2013-05-30T23:17:31Z'
|
|
1012
|
+
user_id: 4
|
|
1013
|
+
- access_count: 0
|
|
1014
|
+
author_link: ted@tedcurran.net
|
|
1015
|
+
author_name: Ted Curran
|
|
1016
|
+
author_pic_content_type: image/jpeg
|
|
1017
|
+
author_pic_file_name: TCatBakerBeach1.jpg
|
|
1018
|
+
author_pic_file_size: 213893
|
|
1019
|
+
author_pic_updated_at: '2013-06-01T19:05:07Z'
|
|
1020
|
+
category_id: 19
|
|
1021
|
+
contact_id:
|
|
1022
|
+
content:
|
|
1023
|
+
content_main: 'The [Center for Education Reform][1] can help you find charter schools
|
|
1024
|
+
near you. [This link][2] will show a list of all the charter schools in Oakland.
|
|
1025
|
+
You can also focus the list by choosing the grade level or locations you need.
|
|
1026
|
+
[1]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D=
|
|
1027
|
+
[2]: http://www.edreform.com/in-the-states/know-your-choices/find-a-charter-school/?filter%5Bname%5D=&filter%5Bcity%5D=Oakland&filter%5Bstate%5D=CA&filter%5Bgrade%5D=&filter%5Bgrades_categories%5D=&filter%5Bspecialty%5D='
|
|
1028
|
+
content_main_extra: ''
|
|
1029
|
+
content_md:
|
|
1030
|
+
content_need_to_know: ''
|
|
1031
|
+
content_type:
|
|
1032
|
+
created_at: '2013-06-01T18:31:38Z'
|
|
1033
|
+
id: 31
|
|
1034
|
+
preview: ''
|
|
1035
|
+
render_markdown: true
|
|
1036
|
+
service_url:
|
|
1037
|
+
slug: what-charter-schools-are-near-me
|
|
1038
|
+
status: Published
|
|
1039
|
+
tags: ''
|
|
1040
|
+
title: What charter schools are near me?
|
|
1041
|
+
updated:
|
|
1042
|
+
updated_at: '2013-06-11T03:27:32Z'
|
|
1043
|
+
user_id:
|
|
1044
|
+
- access_count: 0
|
|
1045
|
+
author_link: chuck.smith@ask.com
|
|
1046
|
+
author_name: Chuck Smith
|
|
1047
|
+
author_pic_content_type:
|
|
1048
|
+
author_pic_file_name:
|
|
1049
|
+
author_pic_file_size:
|
|
1050
|
+
author_pic_updated_at:
|
|
1051
|
+
category_id: 3
|
|
1052
|
+
contact_id:
|
|
1053
|
+
content:
|
|
1054
|
+
content_main: " The only days when there is no parking enforcement in Oakland are:
|
|
1055
|
+
- New Year's Day (January 1st) - Martin Luther King Jr. Day - President's Day
|
|
1056
|
+
- Memorial Day - Independence Day (July 4th) - Labor Day - Thanksgiving Day -
|
|
1057
|
+
Christmas Day (December 25th)"
|
|
1058
|
+
content_main_extra: ''
|
|
1059
|
+
content_md:
|
|
1060
|
+
content_need_to_know: ''
|
|
1061
|
+
content_type:
|
|
1062
|
+
created_at: '2014-05-31T17:53:36Z'
|
|
1063
|
+
id: 217
|
|
1064
|
+
preview: ''
|
|
1065
|
+
render_markdown: true
|
|
1066
|
+
service_url:
|
|
1067
|
+
slug: what-are-the-parking-holidays-in-oakland
|
|
1068
|
+
status: Published
|
|
1069
|
+
tags: parking holiday holidays
|
|
1070
|
+
title: What are the parking holidays in Oakland?
|
|
1071
|
+
updated:
|
|
1072
|
+
updated_at: '2014-05-31T18:18:20Z'
|
|
1073
|
+
user_id:
|
|
1074
|
+
- access_count: 0
|
|
1075
|
+
author_link: ''
|
|
1076
|
+
author_name: ''
|
|
1077
|
+
author_pic_content_type:
|
|
1078
|
+
author_pic_file_name:
|
|
1079
|
+
author_pic_file_size:
|
|
1080
|
+
author_pic_updated_at:
|
|
1081
|
+
category_id: 17
|
|
1082
|
+
contact_id:
|
|
1083
|
+
content:
|
|
1084
|
+
content_main: 'Alameda County will issue you a marriage license is you and your
|
|
1085
|
+
future spouse request one in-person at the County Clerk-Recorder''s Office. You
|
|
1086
|
+
can find more information [here][1]. [1]: http://www.acgov.org/auditor/clerk/ml.htm'
|
|
1087
|
+
content_main_extra: ''
|
|
1088
|
+
content_md:
|
|
1089
|
+
content_need_to_know: You must be able to legally get married to your intended spouse
|
|
1090
|
+
in Alameda County to get a marriage license, and you will need to pay a fee.
|
|
1091
|
+
content_type:
|
|
1092
|
+
created_at: '2013-06-01T20:16:59Z'
|
|
1093
|
+
id: 95
|
|
1094
|
+
preview: You can get a marriage license from Alameda County.
|
|
1095
|
+
render_markdown: true
|
|
1096
|
+
service_url:
|
|
1097
|
+
slug: how-do-i-get-a-marriage-license
|
|
1098
|
+
status: Published
|
|
1099
|
+
tags: ''
|
|
1100
|
+
title: How do I get a marriage license?
|
|
1101
|
+
updated:
|
|
1102
|
+
updated_at: '2013-06-01T22:07:24Z'
|
|
1103
|
+
user_id:
|
|
1104
|
+
- access_count: 0
|
|
1105
|
+
author_link: ''
|
|
1106
|
+
author_name: Sharon McKellar
|
|
1107
|
+
author_pic_content_type: image/jpeg
|
|
1108
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1109
|
+
author_pic_file_size: 41001
|
|
1110
|
+
author_pic_updated_at: '2013-06-01T20:38:54Z'
|
|
1111
|
+
category_id: 20
|
|
1112
|
+
contact_id: 23
|
|
1113
|
+
content:
|
|
1114
|
+
content_main: 'You can find a listing of library events on the library''s website
|
|
1115
|
+
[here][1]. You can also pick up a monthly calendar of events at any [library branch][2].
|
|
1116
|
+
[1]: http://oaklandlibrary.org/events [2]: http://oaklandlibrary.org/using-library/locations-hours'
|
|
1117
|
+
content_main_extra: ''
|
|
1118
|
+
content_md:
|
|
1119
|
+
content_need_to_know: ''
|
|
1120
|
+
content_type:
|
|
1121
|
+
created_at: '2013-06-01T20:38:55Z'
|
|
1122
|
+
id: 105
|
|
1123
|
+
preview: 'The library has events, classes and programs for all ages at all of its
|
|
1124
|
+
locations. '
|
|
1125
|
+
render_markdown: true
|
|
1126
|
+
service_url:
|
|
1127
|
+
slug: where-can-i-find-classes-programs-and-events-that-are-happening-at-the-library
|
|
1128
|
+
status: Published
|
|
1129
|
+
tags: library, classes, programs, youth, adults, seniors, esl, computers, events,
|
|
1130
|
+
children, teens, kids
|
|
1131
|
+
title: Where can I find classes, programs and events that are happening at the library?
|
|
1132
|
+
updated:
|
|
1133
|
+
updated_at: '2013-06-11T03:45:48Z'
|
|
1134
|
+
user_id:
|
|
1135
|
+
- access_count: 0
|
|
1136
|
+
author_link: ''
|
|
1137
|
+
author_name: Catherine Bracy
|
|
1138
|
+
author_pic_content_type: image/jpeg
|
|
1139
|
+
author_pic_file_name: Bracy_headshot_cropped.jpg
|
|
1140
|
+
author_pic_file_size: 1395058
|
|
1141
|
+
author_pic_updated_at: '2013-06-01T20:44:58Z'
|
|
1142
|
+
category_id: 3
|
|
1143
|
+
contact_id:
|
|
1144
|
+
content:
|
|
1145
|
+
content_main: Disabled parking permits need to be obtained from the California Department
|
|
1146
|
+
of Motor Vehicles. You can find more information and the application form [here](http://www.dmv.ca.gov/pubs/brochures/fast_facts/ffvr07.htm#).
|
|
1147
|
+
content_main_extra: ''
|
|
1148
|
+
content_md:
|
|
1149
|
+
content_need_to_know: ''
|
|
1150
|
+
content_type:
|
|
1151
|
+
created_at: '2013-06-01T20:44:59Z'
|
|
1152
|
+
id: 107
|
|
1153
|
+
preview: ''
|
|
1154
|
+
render_markdown: true
|
|
1155
|
+
service_url:
|
|
1156
|
+
slug: how-do-i-get-a-disabled-person-parking-permit
|
|
1157
|
+
status: Published
|
|
1158
|
+
tags: disabled parking permit
|
|
1159
|
+
title: How do I get a disabled person parking permit?
|
|
1160
|
+
updated:
|
|
1161
|
+
updated_at: '2013-06-01T20:44:59Z'
|
|
1162
|
+
user_id:
|
|
1163
|
+
- access_count: 0
|
|
1164
|
+
author_link: ''
|
|
1165
|
+
author_name: ''
|
|
1166
|
+
author_pic_content_type:
|
|
1167
|
+
author_pic_file_name:
|
|
1168
|
+
author_pic_file_size:
|
|
1169
|
+
author_pic_updated_at:
|
|
1170
|
+
category_id: 6
|
|
1171
|
+
contact_id:
|
|
1172
|
+
content:
|
|
1173
|
+
content_main: 'You can find more information on City internships on the City of
|
|
1174
|
+
Oakland website. Different departments (including the [City Auditor][1], and the
|
|
1175
|
+
[Public Ethics Commission][2]) offer internships which can be found posted on
|
|
1176
|
+
the individual department''s website. Go to the City of Oakland website, and search
|
|
1177
|
+
"[internship][3]". [1]: http://www.oaklandauditor.com/en/ruby/careers/40 [2]:
|
|
1178
|
+
http://www2.oaklandnet.com/Government/o/CityAdministration/d/PublicEthics/internships/index.htm
|
|
1179
|
+
[3]: http://www2.oaklandnet.com/Search/index.htm?cx=017801668647536616097:grdicmryz10&cof=FORID:10&ie=UTF-8&q=internship&sa=Search'
|
|
1180
|
+
content_main_extra: ''
|
|
1181
|
+
content_md:
|
|
1182
|
+
content_need_to_know: ''
|
|
1183
|
+
content_type:
|
|
1184
|
+
created_at: '2013-06-01T21:17:19Z'
|
|
1185
|
+
id: 118
|
|
1186
|
+
preview: Yes. You can apply for internships with specific branches of the City government.
|
|
1187
|
+
render_markdown: true
|
|
1188
|
+
service_url:
|
|
1189
|
+
slug: are-there-internships-at-the-city
|
|
1190
|
+
status: Published
|
|
1191
|
+
tags: ''
|
|
1192
|
+
title: Are there internships at the City?
|
|
1193
|
+
updated:
|
|
1194
|
+
updated_at: '2013-06-01T21:17:19Z'
|
|
1195
|
+
user_id:
|
|
1196
|
+
- access_count: 0
|
|
1197
|
+
author_link: ''
|
|
1198
|
+
author_name: ''
|
|
1199
|
+
author_pic_content_type:
|
|
1200
|
+
author_pic_file_name:
|
|
1201
|
+
author_pic_file_size:
|
|
1202
|
+
author_pic_updated_at:
|
|
1203
|
+
category_id: 13
|
|
1204
|
+
contact_id:
|
|
1205
|
+
content:
|
|
1206
|
+
content_main: 'Oakland Parks & Recreation offers rental facilities, listed here:
|
|
1207
|
+
[http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm][1] There are
|
|
1208
|
+
also private facilities available to rent in Oakland. [1]: http://www2.oaklandnet.com/Government/o/opr/s/rental/index.htm'
|
|
1209
|
+
content_main_extra: ''
|
|
1210
|
+
content_md:
|
|
1211
|
+
content_need_to_know: ''
|
|
1212
|
+
content_type:
|
|
1213
|
+
created_at: '2014-05-31T18:49:23Z'
|
|
1214
|
+
id: 238
|
|
1215
|
+
preview: ''
|
|
1216
|
+
render_markdown: true
|
|
1217
|
+
service_url:
|
|
1218
|
+
slug: how-can-i-rent-event-space-in-oakland
|
|
1219
|
+
status: Published
|
|
1220
|
+
tags: event space rent host rental
|
|
1221
|
+
title: How can I rent event space in Oakland?
|
|
1222
|
+
updated:
|
|
1223
|
+
updated_at: '2014-05-31T18:58:18Z'
|
|
1224
|
+
user_id:
|
|
1225
|
+
- access_count: 0
|
|
1226
|
+
author_link: ''
|
|
1227
|
+
author_name: Sarah Washburn
|
|
1228
|
+
author_pic_content_type:
|
|
1229
|
+
author_pic_file_name:
|
|
1230
|
+
author_pic_file_size:
|
|
1231
|
+
author_pic_updated_at:
|
|
1232
|
+
category_id: 17
|
|
1233
|
+
contact_id: 23
|
|
1234
|
+
content:
|
|
1235
|
+
content_main: 'You can find tax forms at the [Oakland Public Library][1] (like the
|
|
1236
|
+
1040 EZ tax form). Some are in print form, and others can be printed by a library
|
|
1237
|
+
staff member (printing charges may apply). Before you go, it''s helpful to bring
|
|
1238
|
+
the exact form number you need so the library staff member can find it with ease.
|
|
1239
|
+
If you don''t have the form number, not to worry: a staff member is happy to help.
|
|
1240
|
+
To find an Oakland Public Library location near you, [look at the map][2]. [1]:
|
|
1241
|
+
http://www.oaklandlibrary.org/using-library/locations-hours [2]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5'
|
|
1242
|
+
content_main_extra: 'If you would like to download tax forms online: Federal tax
|
|
1243
|
+
forms are available from the Internal Revenue Service. Many of the frequently
|
|
1244
|
+
used Federal tax forms can be found at http://www.irs.gov/uac/Forms,-Publications,-and-Other-Tax-Products.
|
|
1245
|
+
State tax forms are available from the State of California’s Franchise Tax Board.
|
|
1246
|
+
Many of the frequently used state tax forms can be found at https://www.ftb.ca.gov/forms/search/index.aspx.'
|
|
1247
|
+
content_md:
|
|
1248
|
+
content_need_to_know: 'Libraries are a great place to find resources beyond books:
|
|
1249
|
+
you can find free computers, employment resources, health information, education
|
|
1250
|
+
resources, e-government information (like tax forms), and so much more.'
|
|
1251
|
+
content_type:
|
|
1252
|
+
created_at: '2013-06-01T19:56:27Z'
|
|
1253
|
+
id: 86
|
|
1254
|
+
preview: 'Find tax forms of all kinds at your local library. '
|
|
1255
|
+
render_markdown: true
|
|
1256
|
+
service_url:
|
|
1257
|
+
slug: where-can-i-get-tax-forms
|
|
1258
|
+
status: Published
|
|
1259
|
+
tags: free, taxes, tax forms, income tax, forms, tax
|
|
1260
|
+
title: Where can I get tax forms?
|
|
1261
|
+
updated:
|
|
1262
|
+
updated_at: '2013-06-06T18:58:20Z'
|
|
1263
|
+
user_id:
|
|
1264
|
+
- access_count: 0
|
|
1265
|
+
author_link: ''
|
|
1266
|
+
author_name: Tim O'Reilly
|
|
1267
|
+
author_pic_content_type:
|
|
1268
|
+
author_pic_file_name:
|
|
1269
|
+
author_pic_file_size:
|
|
1270
|
+
author_pic_updated_at:
|
|
1271
|
+
category_id: 7
|
|
1272
|
+
contact_id:
|
|
1273
|
+
content:
|
|
1274
|
+
content_main: 'The best way to find out what areas of Oakland have the fewest reported
|
|
1275
|
+
crimes is by using the interactive map at the [Oakland Crimespotting][1] site.
|
|
1276
|
+
You can explore crimes by neighborhood, by type, by time of day, both recently
|
|
1277
|
+
and over time. [1]: http://oakland.crimespotting.org/ '
|
|
1278
|
+
content_main_extra: ''
|
|
1279
|
+
content_md:
|
|
1280
|
+
content_need_to_know: ''
|
|
1281
|
+
content_type:
|
|
1282
|
+
created_at: '2013-06-01T21:59:12Z'
|
|
1283
|
+
id: 148
|
|
1284
|
+
preview: 'The best way to find out what areas of Oakland have the fewest reported
|
|
1285
|
+
crimes is by using the Oakland Crimespotting site: http://oakland.crimespotting.org/ '
|
|
1286
|
+
render_markdown: true
|
|
1287
|
+
service_url:
|
|
1288
|
+
slug: what-are-the-safest-areas-in-oakland
|
|
1289
|
+
status: Published
|
|
1290
|
+
tags: ''
|
|
1291
|
+
title: What are the safest areas in Oakland?
|
|
1292
|
+
updated:
|
|
1293
|
+
updated_at: '2013-06-01T22:28:48Z'
|
|
1294
|
+
user_id:
|
|
1295
|
+
- access_count: 0
|
|
1296
|
+
author_link: ''
|
|
1297
|
+
author_name: Sharon McKellar
|
|
1298
|
+
author_pic_content_type: image/jpeg
|
|
1299
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1300
|
+
author_pic_file_size: 41001
|
|
1301
|
+
author_pic_updated_at: '2013-06-01T21:50:22Z'
|
|
1302
|
+
category_id: 7
|
|
1303
|
+
contact_id:
|
|
1304
|
+
content:
|
|
1305
|
+
content_main: 'You can search for your address on the [Meghan''s Law Website][1]
|
|
1306
|
+
to find registered sex offenders that live nearby. Before you search the map,
|
|
1307
|
+
you have to click "continue" at the bottom of the first page, then click the check
|
|
1308
|
+
box and "continue" at the bottom of the second page. Then you will see a map of
|
|
1309
|
+
California and you can search for your address by clicking on the "address" box
|
|
1310
|
+
on the left side of the page. [1]: http://www.meganslaw.ca.gov/'
|
|
1311
|
+
content_main_extra: ''
|
|
1312
|
+
content_md:
|
|
1313
|
+
content_need_to_know: ''
|
|
1314
|
+
content_type:
|
|
1315
|
+
created_at: '2013-06-01T21:50:23Z'
|
|
1316
|
+
id: 141
|
|
1317
|
+
preview: You can find a map of registered sex offenders to see if there are any
|
|
1318
|
+
in your neighborhood.
|
|
1319
|
+
render_markdown: true
|
|
1320
|
+
service_url:
|
|
1321
|
+
slug: are-there-any-sex-offenders-in-my-neighborhood
|
|
1322
|
+
status: Published
|
|
1323
|
+
tags: ''
|
|
1324
|
+
title: Are there any sex offenders in my neighborhood?
|
|
1325
|
+
updated:
|
|
1326
|
+
updated_at: '2013-06-01T21:50:23Z'
|
|
1327
|
+
user_id:
|
|
1328
|
+
- access_count: 0
|
|
1329
|
+
author_link: ''
|
|
1330
|
+
author_name: Dan Turner
|
|
1331
|
+
author_pic_content_type:
|
|
1332
|
+
author_pic_file_name:
|
|
1333
|
+
author_pic_file_size:
|
|
1334
|
+
author_pic_updated_at:
|
|
1335
|
+
category_id: 3
|
|
1336
|
+
contact_id:
|
|
1337
|
+
content:
|
|
1338
|
+
content_main: If you think your car has been towed, first check the A&B Towing site
|
|
1339
|
+
(http://www.abimpound.com/towed.html) to see if they know. You should also call
|
|
1340
|
+
the Police Department Records Division at (510) 238-3021 to confirm your car has
|
|
1341
|
+
been towed. If it has been towed, you can go to the Records Division, 3rd floor,
|
|
1342
|
+
Police Administration Building, 455 7th Street (at Broadway) to get a Release
|
|
1343
|
+
Form for your vehicle.
|
|
1344
|
+
content_main_extra: ''
|
|
1345
|
+
content_md:
|
|
1346
|
+
content_need_to_know: Vehicle license plate
|
|
1347
|
+
content_type:
|
|
1348
|
+
created_at: '2013-06-01T20:34:32Z'
|
|
1349
|
+
id: 102
|
|
1350
|
+
preview: You can check with A&B Towing and the Police Department
|
|
1351
|
+
render_markdown: true
|
|
1352
|
+
service_url:
|
|
1353
|
+
slug: what-do-i-do-if-my-car-has-been-towed
|
|
1354
|
+
status: Published
|
|
1355
|
+
tags: Parking, car, automobile, towing, towed
|
|
1356
|
+
title: What do I do if my car has been towed?
|
|
1357
|
+
updated:
|
|
1358
|
+
updated_at: '2013-06-01T22:06:31Z'
|
|
1359
|
+
user_id:
|
|
1360
|
+
- access_count: 0
|
|
1361
|
+
author_link: ''
|
|
1362
|
+
author_name: Sharon McKellar
|
|
1363
|
+
author_pic_content_type: image/jpeg
|
|
1364
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1365
|
+
author_pic_file_size: 41001
|
|
1366
|
+
author_pic_updated_at: '2013-06-01T19:56:32Z'
|
|
1367
|
+
category_id: 16
|
|
1368
|
+
contact_id: 23
|
|
1369
|
+
content:
|
|
1370
|
+
content_main: 'To see a map of all of the Oakland Public Libraries, go [here][1].
|
|
1371
|
+
You can click on each dot to see the address, phone number and hours. You can
|
|
1372
|
+
find a list of library locations on the Oakland Public Library Website [here][2].
|
|
1373
|
+
If you are looking for a library close to where you are right now, no matter where
|
|
1374
|
+
you are, you can click [here][3]. [1]: https://data.oaklandnet.com/Public-Services/Map-of-Oakland-Public-Libraries/yra4-ynr5
|
|
1375
|
+
[2]: http://oaklandlibrary.org/using-library/locations-hours [3]: https://maps.google.com/maps?ie=UTF-8&q=closest%20public%20library'
|
|
1376
|
+
content_main_extra: ''
|
|
1377
|
+
content_md:
|
|
1378
|
+
content_need_to_know: ''
|
|
1379
|
+
content_type:
|
|
1380
|
+
created_at: '2013-06-01T19:56:32Z'
|
|
1381
|
+
id: 87
|
|
1382
|
+
preview: Find the public library closest to where you are, where you live, or where
|
|
1383
|
+
you want to go.
|
|
1384
|
+
render_markdown: true
|
|
1385
|
+
service_url:
|
|
1386
|
+
slug: where-is-the-closest-public-library
|
|
1387
|
+
status: Published
|
|
1388
|
+
tags: library
|
|
1389
|
+
title: Where is the closest public library?
|
|
1390
|
+
updated:
|
|
1391
|
+
updated_at: '2013-06-01T20:25:08Z'
|
|
1392
|
+
user_id:
|
|
1393
|
+
- access_count: 0
|
|
1394
|
+
author_link: ''
|
|
1395
|
+
author_name: ''
|
|
1396
|
+
author_pic_content_type:
|
|
1397
|
+
author_pic_file_name:
|
|
1398
|
+
author_pic_file_size:
|
|
1399
|
+
author_pic_updated_at:
|
|
1400
|
+
category_id: 11
|
|
1401
|
+
contact_id: 14
|
|
1402
|
+
content:
|
|
1403
|
+
content_main: 'Here''s a [directory of recycling drop off centers in and around
|
|
1404
|
+
Oakland][1]. For more information about recycling in Oakland, visit [www.oaklandrecycles.com][2].
|
|
1405
|
+
[1]: http://www2.oaklandnet.com/oakca/groups/pwa/documents/form/oak027311.pdf
|
|
1406
|
+
[2]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm'
|
|
1407
|
+
content_main_extra: ''
|
|
1408
|
+
content_md:
|
|
1409
|
+
content_need_to_know: ''
|
|
1410
|
+
content_type:
|
|
1411
|
+
created_at: '2013-06-01T21:03:59Z'
|
|
1412
|
+
id: 113
|
|
1413
|
+
preview: ''
|
|
1414
|
+
render_markdown: true
|
|
1415
|
+
service_url:
|
|
1416
|
+
slug: where-are-the-recycling-centers-located
|
|
1417
|
+
status: Published
|
|
1418
|
+
tags: ''
|
|
1419
|
+
title: Where are the recycling centers located?
|
|
1420
|
+
updated:
|
|
1421
|
+
updated_at: '2013-06-11T22:38:13Z'
|
|
1422
|
+
user_id:
|
|
1423
|
+
- access_count: 0
|
|
1424
|
+
author_link: ''
|
|
1425
|
+
author_name: Antonio D
|
|
1426
|
+
author_pic_content_type:
|
|
1427
|
+
author_pic_file_name:
|
|
1428
|
+
author_pic_file_size:
|
|
1429
|
+
author_pic_updated_at:
|
|
1430
|
+
category_id: 6
|
|
1431
|
+
contact_id: 8
|
|
1432
|
+
content:
|
|
1433
|
+
content_main: 'Check the [Human Resources page][1] for a list of open jobs. [1]:
|
|
1434
|
+
http://agency.governmentjobs.com/oaklandca/default.cfm'
|
|
1435
|
+
content_main_extra: ''
|
|
1436
|
+
content_md:
|
|
1437
|
+
content_need_to_know: ''
|
|
1438
|
+
content_type:
|
|
1439
|
+
created_at: '2013-06-01T21:20:23Z'
|
|
1440
|
+
id: 119
|
|
1441
|
+
preview: ''
|
|
1442
|
+
render_markdown: true
|
|
1443
|
+
service_url:
|
|
1444
|
+
slug: what-are-the-current-job-openings-at-the-city
|
|
1445
|
+
status: Published
|
|
1446
|
+
tags: jobs, applying
|
|
1447
|
+
title: What are the current job openings at the City?
|
|
1448
|
+
updated:
|
|
1449
|
+
updated_at: '2013-06-01T21:20:23Z'
|
|
1450
|
+
user_id:
|
|
1451
|
+
- access_count: 0
|
|
1452
|
+
author_link: ''
|
|
1453
|
+
author_name: ''
|
|
1454
|
+
author_pic_content_type: image/jpeg
|
|
1455
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1456
|
+
author_pic_file_size: 41001
|
|
1457
|
+
author_pic_updated_at: '2013-06-01T21:04:18Z'
|
|
1458
|
+
category_id: 12
|
|
1459
|
+
contact_id:
|
|
1460
|
+
content:
|
|
1461
|
+
content_main: 'Several city departments offer services for youth. You can see the
|
|
1462
|
+
Parks and Recreation listings [here][1]. The Oakland Public Library has many services
|
|
1463
|
+
and listings of services for [kids][2] and [teens][3]. Measure Y youth programs
|
|
1464
|
+
are [here][4]. **Late Night Live** Provides safe places for youth and families
|
|
1465
|
+
late Friday and Saturday nights. Sponsored by the Office of the Mayor 1 Frank
|
|
1466
|
+
H. Ogawa Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731
|
|
1467
|
+
TTY: (510) 238-3254 **Mayor''s Summer Job Program** Program to employ low-income
|
|
1468
|
+
youth during the summer. Sponsored by the Office of the Mayor 1 Frank H. Ogawa
|
|
1469
|
+
Plaza, 3rd Floor Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY:
|
|
1470
|
+
(510) 238-3254 **Mayor''s Mentoring Initiative** Program that finds caring adults
|
|
1471
|
+
to work with Foster youth, formerly incarcerated youth and chronically absent
|
|
1472
|
+
youth. Sponsored by the Office of the Mayor 1 Frank H. Ogawa Plaza, 3rd Floor
|
|
1473
|
+
Oakland, CA 94612 phone: (510) 238-3141 fax: (510) 238-4731 TTY: (510) 238-3254
|
|
1474
|
+
**Summer Stars Program** An outdoor camping experience for middle school students
|
|
1475
|
+
from our toughest neighborhoods. Find dates for the next trip at the Summer Star''s
|
|
1476
|
+
[website][5]. If you would like to sign up your group for a three day/two night
|
|
1477
|
+
camping trip, please contact us via email at oaklandpal@oaklandpal.org OR call
|
|
1478
|
+
510-615-5758. **Oakland Police Activities League (PAL)** Program dedicated to
|
|
1479
|
+
offering programs and opportunities for kids to work with positive role models
|
|
1480
|
+
and learn about success and failure without guns and drugs. Offers basketball,
|
|
1481
|
+
track and field, overnight camping, and more. [Oakland PAL Website][6] **Oakland
|
|
1482
|
+
Police Explorers** Program designed for high school students who are at least
|
|
1483
|
+
14.5 years old and want a chance to see what law enforcement is all about. If
|
|
1484
|
+
you are interested in the Explorer Program at the Oakland Police Department, contact
|
|
1485
|
+
the Explorer Advisors, Officer Mildred Oliver or Officer Jumaal Hill at: ph: 510-615-5758
|
|
1486
|
+
fax: 510-615-5864 oaklandpal@oaklandpal.org **OK (Our Kids) Program** Program
|
|
1487
|
+
focused on reducing the high incarceration and homicide rates of African-American
|
|
1488
|
+
young men (12-18 years old) by providing needed services to youth, promoting economic
|
|
1489
|
+
self-reliance, and encouraging responsible citizenship. [Website][7] ph: 510-238-7998
|
|
1490
|
+
okprogram@okprogramofoakland.com **GREAT Program** The Gang Resistance, Education
|
|
1491
|
+
and Training program is a structured, school-based program implemented in areas
|
|
1492
|
+
where gang activity either exists or are emerging. [Website][8] You can also find
|
|
1493
|
+
information about some of the [organizations with which we are partnering to give
|
|
1494
|
+
hope to Oakland''s youth][10]. [1]: https://securerw.oaklandnet.com/registrationmain.sdi
|
|
1495
|
+
[2]: http://oaklandlibrary.org/kids [3]: http://oaklandlibrary.org/teens [4]:
|
|
1496
|
+
http://oaklandunite.org/youth/ [5]: http://oaklandpal.org/mayor_quan_summer_stars_camping_program
|
|
1497
|
+
[6]: http://oaklandpal.org/home [7]: http://www.okprogramofoakland.com/ [8]: http://www.great-online.org/
|
|
1498
|
+
[9]: http://www.oaklandlibrary.org/teens/your-life/mind-body/mental-health-0 [10]:
|
|
1499
|
+
http://www2.oaklandnet.com/Government/o/Mayor/i/EducationLeadership/OAK025457'
|
|
1500
|
+
content_main_extra: ''
|
|
1501
|
+
content_md:
|
|
1502
|
+
content_need_to_know: ''
|
|
1503
|
+
content_type:
|
|
1504
|
+
created_at: '2013-06-01T20:38:42Z'
|
|
1505
|
+
id: 104
|
|
1506
|
+
preview: ''
|
|
1507
|
+
render_markdown: true
|
|
1508
|
+
service_url:
|
|
1509
|
+
slug: what-youth-services-and-activities-are-available
|
|
1510
|
+
status: Published
|
|
1511
|
+
tags: youth services, teen programs, after school programs, teen services
|
|
1512
|
+
title: What youth services and activities are available?
|
|
1513
|
+
updated:
|
|
1514
|
+
updated_at: '2013-06-01T22:46:14Z'
|
|
1515
|
+
user_id:
|
|
1516
|
+
- access_count: 0
|
|
1517
|
+
author_link: ''
|
|
1518
|
+
author_name: Sharon McKellar
|
|
1519
|
+
author_pic_content_type: image/jpeg
|
|
1520
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1521
|
+
author_pic_file_size: 41001
|
|
1522
|
+
author_pic_updated_at: '2013-06-01T21:36:36Z'
|
|
1523
|
+
category_id: 20
|
|
1524
|
+
contact_id:
|
|
1525
|
+
content:
|
|
1526
|
+
content_main: 'You can use free Wi-Fi at all Oakland Public Library locations. You
|
|
1527
|
+
can see a list of libraries [here][1]. You can use free Wi-Fi inside City Hall
|
|
1528
|
+
at 1 Frank H. Ogawa Plaza, Oakland, CA 94612. [1]: http://oaklandlibrary.org/using-library/locations-hours'
|
|
1529
|
+
content_main_extra: ''
|
|
1530
|
+
content_md:
|
|
1531
|
+
content_need_to_know: ''
|
|
1532
|
+
content_type:
|
|
1533
|
+
created_at: '2013-06-01T21:36:37Z'
|
|
1534
|
+
id: 130
|
|
1535
|
+
preview: There are locations in Oakland with free Wi-Fi access.
|
|
1536
|
+
render_markdown: true
|
|
1537
|
+
service_url:
|
|
1538
|
+
slug: where-can-i-get-free-wi-fi
|
|
1539
|
+
status: Published
|
|
1540
|
+
tags: wifi, wifi, library, libraries, computers,technology
|
|
1541
|
+
title: Where can I get free Wi-Fi?
|
|
1542
|
+
updated:
|
|
1543
|
+
updated_at: '2013-06-01T21:36:37Z'
|
|
1544
|
+
user_id:
|
|
1545
|
+
- access_count: 0
|
|
1546
|
+
author_link: ''
|
|
1547
|
+
author_name: ''
|
|
1548
|
+
author_pic_content_type:
|
|
1549
|
+
author_pic_file_name:
|
|
1550
|
+
author_pic_file_size:
|
|
1551
|
+
author_pic_updated_at:
|
|
1552
|
+
category_id: 11
|
|
1553
|
+
contact_id: 17
|
|
1554
|
+
content:
|
|
1555
|
+
content_main: 'You can find a list of what you can and cannot recycle for both residential
|
|
1556
|
+
and commercial services on the [Oakland Recycles website][1]. For recyclable items
|
|
1557
|
+
that are not listed on the Oakland Recycles website, please visit [www.stopwaste.org][2]
|
|
1558
|
+
and use the online Recycling Guide (towards the bottom right side of the Stop
|
|
1559
|
+
Waste web page. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/s/GAR/index.htm
|
|
1560
|
+
[2]: http://www.stopwaste.org'
|
|
1561
|
+
content_main_extra: ''
|
|
1562
|
+
content_md:
|
|
1563
|
+
content_need_to_know: ''
|
|
1564
|
+
content_type:
|
|
1565
|
+
created_at: '2013-06-01T21:35:11Z'
|
|
1566
|
+
id: 129
|
|
1567
|
+
preview: ''
|
|
1568
|
+
render_markdown: true
|
|
1569
|
+
service_url:
|
|
1570
|
+
slug: what-can-and-can-t-i-recycle
|
|
1571
|
+
status: Published
|
|
1572
|
+
tags: recycling, recycle
|
|
1573
|
+
title: What can and can't I recycle?
|
|
1574
|
+
updated:
|
|
1575
|
+
updated_at: '2013-06-11T22:33:51Z'
|
|
1576
|
+
user_id:
|
|
1577
|
+
- access_count: 0
|
|
1578
|
+
author_link: ''
|
|
1579
|
+
author_name: Harry Hamilton
|
|
1580
|
+
author_pic_content_type:
|
|
1581
|
+
author_pic_file_name:
|
|
1582
|
+
author_pic_file_size:
|
|
1583
|
+
author_pic_updated_at:
|
|
1584
|
+
category_id: 17
|
|
1585
|
+
contact_id: 27
|
|
1586
|
+
content:
|
|
1587
|
+
content_main: 'Visit the City Clerk''s Legistar search feature at [http://oakland.legistar.com/legislation.aspx][1].
|
|
1588
|
+
Click on the record number for the legislation in the search results and then
|
|
1589
|
+
on Action Details. [1]: http://oakland.legistar.com/legislation.aspx'
|
|
1590
|
+
content_main_extra: ''
|
|
1591
|
+
content_md:
|
|
1592
|
+
content_need_to_know: ''
|
|
1593
|
+
content_type:
|
|
1594
|
+
created_at: '2013-06-01T21:38:03Z'
|
|
1595
|
+
id: 131
|
|
1596
|
+
preview: Visit the the City Clerk's Legistar system to search for legislation and
|
|
1597
|
+
click on Actions Taken to see the roll call for individual legislation.
|
|
1598
|
+
render_markdown: true
|
|
1599
|
+
service_url:
|
|
1600
|
+
slug: how-can-i-see-how-my-city-councilperson-voted-on-a-particular-issue
|
|
1601
|
+
status: Published
|
|
1602
|
+
tags: legislation, city council vote, actions taken
|
|
1603
|
+
title: How can I see how my city councilperson voted on a particular issue?
|
|
1604
|
+
updated:
|
|
1605
|
+
updated_at: '2013-06-01T21:55:13Z'
|
|
1606
|
+
user_id:
|
|
1607
|
+
- access_count: 0
|
|
1608
|
+
author_link: http://mike.teczno.com
|
|
1609
|
+
author_name: Michal Migurski
|
|
1610
|
+
author_pic_content_type:
|
|
1611
|
+
author_pic_file_name:
|
|
1612
|
+
author_pic_file_size:
|
|
1613
|
+
author_pic_updated_at:
|
|
1614
|
+
category_id: 15
|
|
1615
|
+
contact_id:
|
|
1616
|
+
content:
|
|
1617
|
+
content_main: "[AC Transit](http://actransit.com) makes bus passes available at
|
|
1618
|
+
many Oakland retail locations, including supermarkets, drug stores, senior centers
|
|
1619
|
+
and news stands. Search for your nearest retail location using your Zip code at
|
|
1620
|
+
[AC Transit's retail locations finder](http://www.actransit.org/rider-info/where-to-buy-a-pass/).
|
|
1621
|
+
Passes can be purchased by mail using the [AC Transit order form](http://www.actransit.org/wp-content/uploads/Ticket_-Order_Form-8.2011.pdf).
|
|
1622
|
+
All AC Transit vehicles accept payments using [Clipper Card](http://www.actransit.org/rider-info/why-clipper/),
|
|
1623
|
+
the Bay Area’s reloadable card for paying transit fares. A Clipper card keeps
|
|
1624
|
+
track of the value on it and automatically deducts the right fare, including transfers
|
|
1625
|
+
and discounts. You can load an AC Transit pass onto a Clipper card, a pass from
|
|
1626
|
+
another agency, or cash value."
|
|
1627
|
+
content_main_extra: ''
|
|
1628
|
+
content_md:
|
|
1629
|
+
content_need_to_know: ''
|
|
1630
|
+
content_type:
|
|
1631
|
+
created_at: '2013-06-01T18:59:51Z'
|
|
1632
|
+
id: 46
|
|
1633
|
+
preview: ''
|
|
1634
|
+
render_markdown: true
|
|
1635
|
+
service_url:
|
|
1636
|
+
slug: where-do-i-get-a-bus-pass
|
|
1637
|
+
status: Published
|
|
1638
|
+
tags: 'bus ticket pass actransit transit transportation '
|
|
1639
|
+
title: Where do I get a bus pass?
|
|
1640
|
+
updated:
|
|
1641
|
+
updated_at: '2013-06-11T01:01:36Z'
|
|
1642
|
+
user_id:
|
|
1643
|
+
- access_count: 0
|
|
1644
|
+
author_link: ''
|
|
1645
|
+
author_name: Ernie Ting
|
|
1646
|
+
author_pic_content_type:
|
|
1647
|
+
author_pic_file_name:
|
|
1648
|
+
author_pic_file_size:
|
|
1649
|
+
author_pic_updated_at:
|
|
1650
|
+
category_id: 17
|
|
1651
|
+
contact_id: 19
|
|
1652
|
+
content:
|
|
1653
|
+
content_main: " **If you just need to register or re-register to vote -- you can
|
|
1654
|
+
do it online!** **Go to the [California Secretary of State's online voter registration
|
|
1655
|
+
page][1].** [1]: http://registertovote.ca.gov/"
|
|
1656
|
+
content_main_extra: "---------- *Have other questions about how to register to vote,
|
|
1657
|
+
or whether you need to? Go to the [Alameda County Registrar of Voters FAQ Page][1]*
|
|
1658
|
+
[1]: http://www.acgov.org/rov/registrationfaq.htm "
|
|
1659
|
+
content_md:
|
|
1660
|
+
content_need_to_know: 'You may register to vote if you meet ALL of the following
|
|
1661
|
+
criteria: - A citizen of the United States - A resident of California - At least
|
|
1662
|
+
18 years of age as of the day of the next election - Not in prison or on parole
|
|
1663
|
+
for the conviction of a felony - Not declared to be mentally incompetent by a
|
|
1664
|
+
court.'
|
|
1665
|
+
content_type:
|
|
1666
|
+
created_at: '2013-06-01T19:00:48Z'
|
|
1667
|
+
id: 47
|
|
1668
|
+
preview: If you just need to register or re-register to vote -- you can do it online!
|
|
1669
|
+
render_markdown: true
|
|
1670
|
+
service_url:
|
|
1671
|
+
slug: how-do-i-register-to-vote
|
|
1672
|
+
status: Published
|
|
1673
|
+
tags: election, voting, vote, register, registrar, city clerk
|
|
1674
|
+
title: How do I register to vote?
|
|
1675
|
+
updated:
|
|
1676
|
+
updated_at: '2013-06-05T06:52:31Z'
|
|
1677
|
+
user_id:
|
|
1678
|
+
- access_count: 0
|
|
1679
|
+
author_link: ''
|
|
1680
|
+
author_name: Sheba Najmi
|
|
1681
|
+
author_pic_content_type: image/jpeg
|
|
1682
|
+
author_pic_file_name: Sheba_Najmi.jpg
|
|
1683
|
+
author_pic_file_size: 3706833
|
|
1684
|
+
author_pic_updated_at: '2013-06-01T22:01:19Z'
|
|
1685
|
+
category_id: 17
|
|
1686
|
+
contact_id: 12
|
|
1687
|
+
content:
|
|
1688
|
+
content_main: 'You can call the Oaklanders Assistance Center at (510) 444-CITY,
|
|
1689
|
+
which is (510) 444-2489. Or email your question to [oac@oaklandnet.com][1]. If
|
|
1690
|
+
you prefer, you may visit the center in-person. Office hours are typically 8:30
|
|
1691
|
+
am to 5pm. [1]: http://mailto:oac@oaklandnet.com'
|
|
1692
|
+
content_main_extra: ''
|
|
1693
|
+
content_md:
|
|
1694
|
+
content_need_to_know: You can also reach your contact directly via a list of [phone
|
|
1695
|
+
numbers for City departments](http://www2.oaklandnet.com/oakca1/groups/cityadministrator/documents/webcontent/dowd003833.pdf).
|
|
1696
|
+
content_type:
|
|
1697
|
+
created_at: '2013-06-01T22:01:26Z'
|
|
1698
|
+
id: 153
|
|
1699
|
+
preview: You can call the Oaklanders Assistance Center at (510) 444-CITY, which
|
|
1700
|
+
is (510) 444-2489.
|
|
1701
|
+
render_markdown: true
|
|
1702
|
+
service_url:
|
|
1703
|
+
slug: can-i-speak-with-a-live-person-at-the-city-for-help-with-a-question
|
|
1704
|
+
status: Published
|
|
1705
|
+
tags: customer service, representative
|
|
1706
|
+
title: Can I speak with a live person at the City for help with a question?
|
|
1707
|
+
updated:
|
|
1708
|
+
updated_at: '2013-06-11T00:53:13Z'
|
|
1709
|
+
user_id:
|
|
1710
|
+
- access_count: 0
|
|
1711
|
+
author_link: ''
|
|
1712
|
+
author_name: Sharon McKellar
|
|
1713
|
+
author_pic_content_type: image/jpeg
|
|
1714
|
+
author_pic_file_name: 576420_10151643329270046_1785765456_n.jpg
|
|
1715
|
+
author_pic_file_size: 41001
|
|
1716
|
+
author_pic_updated_at: '2013-06-01T22:11:26Z'
|
|
1717
|
+
category_id: 15
|
|
1718
|
+
contact_id:
|
|
1719
|
+
content:
|
|
1720
|
+
content_main: 'You can find a full detailed listing of bus fares on the AC Transit
|
|
1721
|
+
site [here][1]. * Regular bus fare is $2.10. * Youth bus fare is $1.05 (ages 5-18)
|
|
1722
|
+
* Senior bus fare is $1.05 (ages 65+) [1]: http://www.actransit.org/rider-info/bus-fares/'
|
|
1723
|
+
content_main_extra: 'You might also consider a convenient buss pass. [Click here
|
|
1724
|
+
to see the answer on where to purchase bus passes][1]. [1]: http://answers.oaklandnet.com/quick_answers/where-do-i-get-a-bus-pass'
|
|
1725
|
+
content_md:
|
|
1726
|
+
content_need_to_know: ''
|
|
1727
|
+
content_type:
|
|
1728
|
+
created_at: '2013-06-01T22:11:27Z'
|
|
1729
|
+
id: 159
|
|
1730
|
+
preview: ''
|
|
1731
|
+
render_markdown: true
|
|
1732
|
+
service_url:
|
|
1733
|
+
slug: how-much-does-it-cost-to-ride-a-bus-in-oakland
|
|
1734
|
+
status: Published
|
|
1735
|
+
tags: bus, public transportation, AC transit
|
|
1736
|
+
title: How much does it cost to ride a bus in Oakland?
|
|
1737
|
+
updated:
|
|
1738
|
+
updated_at: '2013-06-11T01:18:25Z'
|
|
1739
|
+
user_id:
|
|
1740
|
+
- access_count: 0
|
|
1741
|
+
author_link: ''
|
|
1742
|
+
author_name: ''
|
|
1743
|
+
author_pic_content_type:
|
|
1744
|
+
author_pic_file_name:
|
|
1745
|
+
author_pic_file_size:
|
|
1746
|
+
author_pic_updated_at:
|
|
1747
|
+
category_id: 11
|
|
1748
|
+
contact_id: 17
|
|
1749
|
+
content:
|
|
1750
|
+
content_main: 'If there is a tree protruding onto your property you will need to
|
|
1751
|
+
determine if the tree itself is on public or private property. If the tree is
|
|
1752
|
+
on: - **Private Property** - you will need to communicate with the owner and discuss
|
|
1753
|
+
a solution. If the resolution is tree removal, the owner will need to file a [removal
|
|
1754
|
+
permit][1]. - **Public Property** - Please call (510) 615-5566 or submit your
|
|
1755
|
+
request online by clicking here, use the SeeClickFix mobile or web app or email
|
|
1756
|
+
pwacallcenter@oaklandnet.com. [1]: http://www2.oaklandnet.com/Government/o/PWA/o/FE/o/TreeServices/OAK023048'
|
|
1757
|
+
content_main_extra: ''
|
|
1758
|
+
content_md:
|
|
1759
|
+
content_need_to_know: ''
|
|
1760
|
+
content_type:
|
|
1761
|
+
created_at: '2013-06-01T20:55:45Z'
|
|
1762
|
+
id: 110
|
|
1763
|
+
preview: ''
|
|
1764
|
+
render_markdown: true
|
|
1765
|
+
service_url:
|
|
1766
|
+
slug: who-do-i-contact-if-a-tree-is-protruding-on-to-my-property
|
|
1767
|
+
status: Published
|
|
1768
|
+
tags: Tree, Remove, private property
|
|
1769
|
+
title: Who do I contact if a tree is protruding on to my property?
|
|
1770
|
+
updated:
|
|
1771
|
+
updated_at: '2013-06-10T23:43:51Z'
|
|
1772
|
+
user_id:
|
|
1773
|
+
- access_count: 0
|
|
1774
|
+
author_link: ''
|
|
1775
|
+
author_name: Harry Hamilton
|
|
1776
|
+
author_pic_content_type:
|
|
1777
|
+
author_pic_file_name:
|
|
1778
|
+
author_pic_file_size:
|
|
1779
|
+
author_pic_updated_at:
|
|
1780
|
+
category_id: 20
|
|
1781
|
+
contact_id: 12
|
|
1782
|
+
content:
|
|
1783
|
+
content_main: 'Visit Oakland, the official destination marketing organization for
|
|
1784
|
+
the City of Oakland, maintains an online event calendar at [www.visitoakland.org][1].
|
|
1785
|
+
Submit your event information via email to [events@visitoakland.org][2]. [1]:
|
|
1786
|
+
http://www.visitoakland.org [2]: http://mailto:events@visitoakland.org'
|
|
1787
|
+
content_main_extra: ''
|
|
1788
|
+
content_md:
|
|
1789
|
+
content_need_to_know: ''
|
|
1790
|
+
content_type:
|
|
1791
|
+
created_at: '2013-06-01T22:06:48Z'
|
|
1792
|
+
id: 157
|
|
1793
|
+
preview: 'Our community partner, Visit Oakland, maintains an online event calendar. '
|
|
1794
|
+
render_markdown: true
|
|
1795
|
+
service_url:
|
|
1796
|
+
slug: does-the-city-have-a-calendar-of-fun-events
|
|
1797
|
+
status: Published
|
|
1798
|
+
tags: ''
|
|
1799
|
+
title: Does the City have a calendar of fun events?
|
|
1800
|
+
updated:
|
|
1801
|
+
updated_at: '2013-06-11T04:32:26Z'
|
|
1802
|
+
user_id:
|
|
1803
|
+
- access_count: 0
|
|
1804
|
+
author_link: ''
|
|
1805
|
+
author_name: ''
|
|
1806
|
+
author_pic_content_type:
|
|
1807
|
+
author_pic_file_name:
|
|
1808
|
+
author_pic_file_size:
|
|
1809
|
+
author_pic_updated_at:
|
|
1810
|
+
category_id: 17
|
|
1811
|
+
contact_id:
|
|
1812
|
+
content:
|
|
1813
|
+
content_main: 'To get a passport or to renew your existing passport, visit the U.S.
|
|
1814
|
+
State Department''s [website][1] and fill out an application. Then bring your
|
|
1815
|
+
finished application, original birth certificate and check or money order to a
|
|
1816
|
+
local processing center. Visit the following website to find a nearby center.
|
|
1817
|
+
You may need to schedule an appointment. [http://iafdb.travel.state.gov/][2] [1]:
|
|
1818
|
+
http://travel.state.gov/passport/ [2]: http://iafdb.travel.state.gov/'
|
|
1819
|
+
content_main_extra: ''
|
|
1820
|
+
content_md:
|
|
1821
|
+
content_need_to_know: ''
|
|
1822
|
+
content_type:
|
|
1823
|
+
created_at: '2013-06-01T22:09:37Z'
|
|
1824
|
+
id: 158
|
|
1825
|
+
preview: ''
|
|
1826
|
+
render_markdown: true
|
|
1827
|
+
service_url:
|
|
1828
|
+
slug: how-do-i-get-a-passport
|
|
1829
|
+
status: Published
|
|
1830
|
+
tags: ''
|
|
1831
|
+
title: How do I get a passport?
|
|
1832
|
+
updated:
|
|
1833
|
+
updated_at: '2013-06-06T07:45:05Z'
|
|
1834
|
+
user_id:
|
|
1835
|
+
- access_count: 0
|
|
1836
|
+
author_link: ''
|
|
1837
|
+
author_name: Alicia Olivarez
|
|
1838
|
+
author_pic_content_type: image/jpeg
|
|
1839
|
+
author_pic_file_name: 457281_10152383304260096_842475454_o.jpg
|
|
1840
|
+
author_pic_file_size: 322062
|
|
1841
|
+
author_pic_updated_at: '2013-06-01T23:41:54Z'
|
|
1842
|
+
category_id: 8
|
|
1843
|
+
contact_id: 9
|
|
1844
|
+
content:
|
|
1845
|
+
content_main: 'If it is an emergency (a vicious dog or an animal in distress), call
|
|
1846
|
+
(510) 777-3333. If it is not an emergency (barking dogs, obnoxious cats, crowing
|
|
1847
|
+
roosters), call (510) 535-5602. Please note that roosters are illegal in Oakland. '
|
|
1848
|
+
content_main_extra: ''
|
|
1849
|
+
content_md:
|
|
1850
|
+
content_need_to_know: ''
|
|
1851
|
+
content_type:
|
|
1852
|
+
created_at: '2013-06-01T22:51:43Z'
|
|
1853
|
+
id: 183
|
|
1854
|
+
preview: 'If it is an emergency (a vicious dog or an animal in distress), call (510)
|
|
1855
|
+
777-3333. If it is not an emergency (barking dogs, obnoxious cats, crowing roosters),
|
|
1856
|
+
call (510) 535-5602. Please note that roosters are illegal in Oakland. '
|
|
1857
|
+
render_markdown: true
|
|
1858
|
+
service_url:
|
|
1859
|
+
slug: how-can-i-report-an-animal-nuisance
|
|
1860
|
+
status: Published
|
|
1861
|
+
tags: Animal, nuisance
|
|
1862
|
+
title: How can I report an animal nuisance?
|
|
1863
|
+
updated:
|
|
1864
|
+
updated_at: '2013-06-06T04:06:46Z'
|
|
1865
|
+
user_id:
|
|
1866
|
+
- access_count: 0
|
|
1867
|
+
author_link: Labcoop@gmail.com
|
|
1868
|
+
author_name: Larry Bragg
|
|
1869
|
+
author_pic_content_type:
|
|
1870
|
+
author_pic_file_name:
|
|
1871
|
+
author_pic_file_size:
|
|
1872
|
+
author_pic_updated_at:
|
|
1873
|
+
category_id: 5
|
|
1874
|
+
contact_id:
|
|
1875
|
+
content:
|
|
1876
|
+
content_main: 'You can see a list of all the parks and where they are on a map here[1]
|
|
1877
|
+
[1]: http://www2.oaklandnet.com/Government/o/opr/s/Parks/index.htm'
|
|
1878
|
+
content_main_extra: ''
|
|
1879
|
+
content_md:
|
|
1880
|
+
content_need_to_know: 'More information about Oakland Parks can be found here [1]
|
|
1881
|
+
[1]: http://www2.oaklandnet.com/Government/o/opr/s/Parks/index.htm'
|
|
1882
|
+
content_type:
|
|
1883
|
+
created_at: '2013-06-01T22:04:47Z'
|
|
1884
|
+
id: 154
|
|
1885
|
+
preview: ''
|
|
1886
|
+
render_markdown: true
|
|
1887
|
+
service_url:
|
|
1888
|
+
slug: what-is-the-closest-park-to-my-house
|
|
1889
|
+
status: Published
|
|
1890
|
+
tags: 'parks recreation outdoor greenspace trees dogs '
|
|
1891
|
+
title: What is the closest park to my house?
|
|
1892
|
+
updated:
|
|
1893
|
+
updated_at: '2013-06-01T22:57:13Z'
|
|
1894
|
+
user_id:
|
|
1895
|
+
- access_count: 0
|
|
1896
|
+
author_link: ''
|
|
1897
|
+
author_name: Chacha Sikes
|
|
1898
|
+
author_pic_content_type: image/png
|
|
1899
|
+
author_pic_file_name: me2.png
|
|
1900
|
+
author_pic_file_size: 260005
|
|
1901
|
+
author_pic_updated_at: '2013-06-01T22:05:37Z'
|
|
1902
|
+
category_id: 5
|
|
1903
|
+
contact_id:
|
|
1904
|
+
content:
|
|
1905
|
+
content_main: ''
|
|
1906
|
+
content_main_extra: 'There are many trails in the hills and various parks. The Parks
|
|
1907
|
+
and Recreation department lists the names of all of their <a href="http://www2.oaklandnet.com/Government/o/opr/s/Parks/index.htm">parks</a>,
|
|
1908
|
+
as well as various walking tours. You can search for all Bay Area trails near
|
|
1909
|
+
you on an interactive map. <a href="http://www.transitandtrails.org/find/trailheads">Transit
|
|
1910
|
+
to Trails</a> shows many city and county parks, including those that can be reached
|
|
1911
|
+
by public transit. Yelp also lists trails, with reviews: <a href="http://www.yelp.com/search?find_desc=Walking+Trails&find_loc=Oakland%2C+CA">Search
|
|
1912
|
+
Yelp for Walking Trails.</a> '
|
|
1913
|
+
content_md:
|
|
1914
|
+
content_need_to_know: ''
|
|
1915
|
+
content_type:
|
|
1916
|
+
created_at: '2013-06-01T21:10:48Z'
|
|
1917
|
+
id: 114
|
|
1918
|
+
preview: You can hike in any of a number of parks and trails in Oakland.
|
|
1919
|
+
render_markdown: true
|
|
1920
|
+
service_url:
|
|
1921
|
+
slug: what-are-the-closest-hiking-trails
|
|
1922
|
+
status: Published
|
|
1923
|
+
tags: Trails, Hiking, Recreation
|
|
1924
|
+
title: What are the closest hiking trails?
|
|
1925
|
+
updated:
|
|
1926
|
+
updated_at: '2013-06-02T02:48:17Z'
|
|
1927
|
+
user_id:
|
|
1928
|
+
- access_count: 0
|
|
1929
|
+
author_link: ''
|
|
1930
|
+
author_name: ''
|
|
1931
|
+
author_pic_content_type:
|
|
1932
|
+
author_pic_file_name:
|
|
1933
|
+
author_pic_file_size:
|
|
1934
|
+
author_pic_updated_at:
|
|
1935
|
+
category_id: 17
|
|
1936
|
+
contact_id:
|
|
1937
|
+
content:
|
|
1938
|
+
content_main: 'The City of Oakland operates on a two-year budget cycle and is how
|
|
1939
|
+
City Council establishes its goals, program priorities and desired service levels
|
|
1940
|
+
for the upcoming fiscal period. The City Charter requires the City''s budget be
|
|
1941
|
+
balanced -- expenditures must not exceed revenues. The Charter also requires that
|
|
1942
|
+
the budget must be adopted on or before June 30. Budget development and adoption
|
|
1943
|
+
occurs on odd numbered years and mid-cycle budget amendments occur on even numbered
|
|
1944
|
+
years. [Click here to visit the City''s web page on the budget process.][1] [1]:
|
|
1945
|
+
http://ttp://www2.oaklandnet.com/Governmacnt/o/CityAdministration/d/BudgetOffice/DOWD005079.'
|
|
1946
|
+
content_main_extra: ''
|
|
1947
|
+
content_md:
|
|
1948
|
+
content_need_to_know: 'The budget process consists of several important stages:
|
|
1949
|
+
1. Budget Development 2. Budget Adoption 3. Budget Amendment Subscribe for budget
|
|
1950
|
+
updates via email at http://www2.oaklandnet.com/Governmacnt/o/CityAdministration/d/BudgetOffice/DOWD005079.'
|
|
1951
|
+
content_type:
|
|
1952
|
+
created_at: '2014-05-31T18:55:59Z'
|
|
1953
|
+
id: 246
|
|
1954
|
+
preview: ''
|
|
1955
|
+
render_markdown: true
|
|
1956
|
+
service_url:
|
|
1957
|
+
slug: what-is-the-city-s-budget-process--2
|
|
1958
|
+
status: Published
|
|
1959
|
+
tags: city of oakland government budget process
|
|
1960
|
+
title: What is the City's budget process?
|
|
1961
|
+
updated:
|
|
1962
|
+
updated_at: '2014-05-31T18:55:59Z'
|
|
1963
|
+
user_id: 6
|
|
1964
|
+
- access_count: 0
|
|
1965
|
+
author_link: Www.twitter.com/jameane
|
|
1966
|
+
author_name: Jame Ervin
|
|
1967
|
+
author_pic_content_type:
|
|
1968
|
+
author_pic_file_name:
|
|
1969
|
+
author_pic_file_size:
|
|
1970
|
+
author_pic_updated_at:
|
|
1971
|
+
category_id: 11
|
|
1972
|
+
contact_id:
|
|
1973
|
+
content:
|
|
1974
|
+
content_main: You can request a rack on City owned property by filling out the request
|
|
1975
|
+
form. The form asks for information about the address, the business name and your
|
|
1976
|
+
relationship to the business (if available)
|
|
1977
|
+
content_main_extra: ''
|
|
1978
|
+
content_md:
|
|
1979
|
+
content_need_to_know: 'Fill out the form here: http://www.spaceshare.com/bikeracks/oakland.php'
|
|
1980
|
+
content_type:
|
|
1981
|
+
created_at: '2014-05-31T18:34:40Z'
|
|
1982
|
+
id: 228
|
|
1983
|
+
preview: ''
|
|
1984
|
+
render_markdown: true
|
|
1985
|
+
service_url:
|
|
1986
|
+
slug: how-do-you-request-a-bike-rack-in-your-neighborhood-or-commercial-street
|
|
1987
|
+
status: Published
|
|
1988
|
+
tags: 'Bike rack, bike parking, bicycle, neighborhood improvement '
|
|
1989
|
+
title: How do you request a bike rack In your neighborhood or commercial street?
|
|
1990
|
+
updated:
|
|
1991
|
+
updated_at: '2014-05-31T22:12:30Z'
|
|
1992
|
+
user_id:
|
|
1993
|
+
- access_count: 0
|
|
1994
|
+
author_link: ''
|
|
1995
|
+
author_name: Tracy Rabold
|
|
1996
|
+
author_pic_content_type:
|
|
1997
|
+
author_pic_file_name:
|
|
1998
|
+
author_pic_file_size:
|
|
1999
|
+
author_pic_updated_at:
|
|
2000
|
+
category_id: 18
|
|
2001
|
+
contact_id:
|
|
2002
|
+
content:
|
|
2003
|
+
content_main: 'The City does not assist with the payment of property taxes. Questions
|
|
2004
|
+
about delinquent property taxes should be directed to the Alameda County Treasurer-Tax
|
|
2005
|
+
Collector’s Office at [www.acgov.org/treasurer/][1], or by calling 510.272.6800.
|
|
2006
|
+
The County does offer payment plans. With respect to City liens placed on property
|
|
2007
|
+
taxes, under very limited circumstances, payment plans with the City may be allowed
|
|
2008
|
+
and the lien(s) would be reversed. For more information, contact the Oakland Housing
|
|
2009
|
+
Assistance Center: - Phone: (510) 238-6182 - Email: housingassistance@oaklandnet.com
|
|
2010
|
+
- Address: 250 Frank Ogawa Plaza 6th Floor Oakland, CA 94612 - [http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm][2]
|
|
2011
|
+
[1]: http://www.acgov.org/treasurer/ [2]: http://www2.oaklandnet.com/Government/o/hcd/o/HousingAssistanceCenter/index.htm'
|
|
2012
|
+
content_main_extra: ''
|
|
2013
|
+
content_md:
|
|
2014
|
+
content_need_to_know: ''
|
|
2015
|
+
content_type:
|
|
2016
|
+
created_at: '2014-05-31T18:36:58Z'
|
|
2017
|
+
id: 230
|
|
2018
|
+
preview: ''
|
|
2019
|
+
render_markdown: true
|
|
2020
|
+
service_url:
|
|
2021
|
+
slug: i-am-behind-on-my-property-taxes-is-there-a-city-program-that-can-help
|
|
2022
|
+
status: Published
|
|
2023
|
+
tags: property tax payment financial assistance
|
|
2024
|
+
title: I am behind on my property taxes. Is there a City program that can help?
|
|
2025
|
+
updated:
|
|
2026
|
+
updated_at: '2014-06-09T21:42:25Z'
|
|
2027
|
+
user_id:
|
|
2028
|
+
- access_count: 0
|
|
2029
|
+
author_link: ''
|
|
2030
|
+
author_name: Howard Matis
|
|
2031
|
+
author_pic_content_type:
|
|
2032
|
+
author_pic_file_name:
|
|
2033
|
+
author_pic_file_size:
|
|
2034
|
+
author_pic_updated_at:
|
|
2035
|
+
category_id: 11
|
|
2036
|
+
contact_id: 17
|
|
2037
|
+
content:
|
|
2038
|
+
content_main: When you are outside and see an issue that the City of Oakland is
|
|
2039
|
+
responsible, take out your smartphone, click a picture, and then report it. This
|
|
2040
|
+
problems gets tracked in the City's database. You get a link to share with your
|
|
2041
|
+
neighbors, while being informed when the City fixes the problem. First download
|
|
2042
|
+
the app - SeeClickFix. You will need to register with SeeClickFix to get an account.
|
|
2043
|
+
Then, you track your reports by going to the web site https://seeclickfix.com.
|
|
2044
|
+
Once you start reporting these issues, you are notified of nearby problems and
|
|
2045
|
+
can support your neighbors efforts to make your neighborhood better.
|
|
2046
|
+
content_main_extra: ''
|
|
2047
|
+
content_md:
|
|
2048
|
+
content_need_to_know: ''
|
|
2049
|
+
content_type:
|
|
2050
|
+
created_at: '2014-05-31T18:47:54Z'
|
|
2051
|
+
id: 236
|
|
2052
|
+
preview: The app SeeClickFix is an excellent tool to report problems while you walk.
|
|
2053
|
+
You take a picture with your phone and the issue goes into the City database.
|
|
2054
|
+
render_markdown: true
|
|
2055
|
+
service_url:
|
|
2056
|
+
slug: how-do-you-report-a-problem-with-your-smartphone
|
|
2057
|
+
status: Published
|
|
2058
|
+
tags: Pot Holes, Abandoned Vehicles, Blight, Safety Problems, Illegal Dumping, Graffiti,
|
|
2059
|
+
Dumping, Broken Street Lights, Park Maintenance, Signs, Trees, Parking Meter Broken,
|
|
2060
|
+
Signs
|
|
2061
|
+
title: How do you report a problem with your smartphone.
|
|
2062
|
+
updated:
|
|
2063
|
+
updated_at: '2014-05-31T18:47:54Z'
|
|
2064
|
+
user_id:
|
|
2065
|
+
- access_count: 0
|
|
2066
|
+
author_link: www.libbyschaaf.com
|
|
2067
|
+
author_name: Councilmember Libby Schaaf
|
|
2068
|
+
author_pic_content_type: image/jpeg
|
|
2069
|
+
author_pic_file_name: Mosaic_Headshot_small.jpg
|
|
2070
|
+
author_pic_file_size: 30071
|
|
2071
|
+
author_pic_updated_at: '2013-06-01T20:56:08Z'
|
|
2072
|
+
category_id: 17
|
|
2073
|
+
contact_id: 12
|
|
2074
|
+
content:
|
|
2075
|
+
content_main: 'If you don''t know who your Councilmember is, use this [locator tool][1]
|
|
2076
|
+
or call the Council Office Front Desk at (510) 238-7584. The [locator tool][2]
|
|
2077
|
+
also provides your Councilmember''s email. Links to all Councilmember websites
|
|
2078
|
+
are [here][3]. [1]: http://mapgis.oaklandnet.com/councildistricts/ [2]: http://%20http://mapgis.oaklandnet.com/councildistricts/
|
|
2079
|
+
[3]: http://www2.oaklandnet.com/Government/o/CityCouncil/index.htm [4]: http://www2.oaklandnet.com/oakca1/groups/cityclerk/documents/webcontent/oak040150.pdf'
|
|
2080
|
+
content_main_extra: If you know your Council district number, the general phone
|
|
2081
|
+
number for each Councilmember is (510) 238-700[# of District]. For example, the
|
|
2082
|
+
phone number for the District 4 Office (Montclair-Laurel-Allendale) is (510) 238-7004.
|
|
2083
|
+
Oakland's At-Large Councilmember's Office phone is (510) 238-7008. The City's
|
|
2084
|
+
naming convention for emaill addresses is first-initial-last-name@oaklandnet.com,
|
|
2085
|
+
for example Councilmember Libby Schaaf's email is lschaaf@oaklandnet.com. If you
|
|
2086
|
+
want to know what Councilmembers serve on a particular Council Committee go [here][4].
|
|
2087
|
+
If you want to email ALL Councilmembers at once, send to citycouncil@oaklandnet.com
|
|
2088
|
+
. Many Councilmembers have newsletters you can subscribe to and some hold public
|
|
2089
|
+
office hours for drop-in visits.
|
|
2090
|
+
content_md:
|
|
2091
|
+
content_need_to_know: ''
|
|
2092
|
+
content_type:
|
|
2093
|
+
created_at: '2013-06-01T20:56:09Z'
|
|
2094
|
+
id: 111
|
|
2095
|
+
preview: ''
|
|
2096
|
+
render_markdown: true
|
|
2097
|
+
service_url:
|
|
2098
|
+
slug: how-do-i-contact-my-council-member
|
|
2099
|
+
status: Published
|
|
2100
|
+
tags: Council Councilmember
|
|
2101
|
+
title: How do I contact my Council Member?
|
|
2102
|
+
updated:
|
|
2103
|
+
updated_at: '2013-06-01T20:56:09Z'
|
|
2104
|
+
user_id:
|
|
2105
|
+
- access_count: 0
|
|
2106
|
+
author_link: ''
|
|
2107
|
+
author_name: Antonio D
|
|
2108
|
+
author_pic_content_type:
|
|
2109
|
+
author_pic_file_name:
|
|
2110
|
+
author_pic_file_size:
|
|
2111
|
+
author_pic_updated_at:
|
|
2112
|
+
category_id: 6
|
|
2113
|
+
contact_id: 8
|
|
2114
|
+
content:
|
|
2115
|
+
content_main: Yes, you can apply for any City job that is open and apply for as
|
|
2116
|
+
many of them as you like at the same time. But for each position, you have to
|
|
2117
|
+
fill out separate applications since each job posting usually requires information
|
|
2118
|
+
unique to that job – it might be special questions, or you’ll have to attach a
|
|
2119
|
+
copy of a certificate, that sort of thing.
|
|
2120
|
+
content_main_extra: 'Let''s say you''ve applied to a job before at the [Employment
|
|
2121
|
+
Opportunities][1] page. High five. Your standard information is are all saved
|
|
2122
|
+
with your account in your online profile. Address, past work history, all the
|
|
2123
|
+
stock info is saved. You can use the stored information for your new job with
|
|
2124
|
+
a click of a button and update it as you need to. **However, most jobs have Supplemental
|
|
2125
|
+
Questions that you MUST answer.** These questions are specific and unique. For
|
|
2126
|
+
instance, if I apply for a Park Ranger job and a Park Supervisor job, my resume
|
|
2127
|
+
is going to look pretty much the same and I can use it for both. But the questions
|
|
2128
|
+
asked by the applications for the two jobs are different, so I need to answer
|
|
2129
|
+
those questions differently. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm'
|
|
2130
|
+
content_md:
|
|
2131
|
+
content_need_to_know: 'You can file an "Interest Notification" for multiple jobs
|
|
2132
|
+
[here][1] and you''ll get an email when a job opens. You have to apply for every
|
|
2133
|
+
one of those jobs one at a time though. [1]: http://agency.governmentjobs.com/oaklandca/default.cfm?action=openjobrequest'
|
|
2134
|
+
content_type:
|
|
2135
|
+
created_at: '2013-06-01T21:16:51Z'
|
|
2136
|
+
id: 116
|
|
2137
|
+
preview: ''
|
|
2138
|
+
render_markdown: true
|
|
2139
|
+
service_url:
|
|
2140
|
+
slug: can-i-apply-for-more-than-one-city-job-at-a-time
|
|
2141
|
+
status: Published
|
|
2142
|
+
tags: jobs, applying
|
|
2143
|
+
title: Can I apply for more than one City job at a time?
|
|
2144
|
+
updated:
|
|
2145
|
+
updated_at: '2013-06-12T06:48:53Z'
|
|
2146
|
+
user_id:
|
|
2147
|
+
- access_count: 0
|
|
2148
|
+
author_link: ''
|
|
2149
|
+
author_name: Sarah Washburn
|
|
2150
|
+
author_pic_content_type:
|
|
2151
|
+
author_pic_file_name:
|
|
2152
|
+
author_pic_file_size:
|
|
2153
|
+
author_pic_updated_at:
|
|
2154
|
+
category_id: 17
|
|
2155
|
+
contact_id:
|
|
2156
|
+
content:
|
|
2157
|
+
content_main: 'You can find help with your taxes--for free!--at the following locations:
|
|
2158
|
+
* [American Association Retired Persons (AARP) Foundation Tax-Aide][1] * United
|
|
2159
|
+
Way of Bay Area [SparkPoint Centers][2] * Oakland Public Library [Tax Assistance
|
|
2160
|
+
Program][3] Closer to tax time, visit these organizations: * [The Unity Council][4]
|
|
2161
|
+
* [The East Bay Asian Development Corporation][5] The Internal Revenue Service
|
|
2162
|
+
(IRS) also offers [free tax preparation help][6] on their website. [1]: http://www.aarp.org/money/taxes/aarp_taxaide/
|
|
2163
|
+
[2]: http://www.uwba.org/cut-poverty/sparkpoint/ [3]: http://www.oaklandlibrary.org/services/tax-assistance-program
|
|
2164
|
+
[4]: http://www.unitycouncil.org/ [5]: http://www.ebaldc.org/ [6]: http://www.irs.gov/Individuals/Free-Tax-Return-Preparation-for-You-by-Volunteers'
|
|
2165
|
+
content_main_extra: ''
|
|
2166
|
+
content_md:
|
|
2167
|
+
content_need_to_know: 'Visit [Where Can I Get Tax Forms?][1] for more information
|
|
2168
|
+
about taxes on Oakland Answers. [1]: http://answers.oaklandnet.com/quick_answers/where-can-i-get-tax-forms'
|
|
2169
|
+
content_type:
|
|
2170
|
+
created_at: '2013-06-01T21:24:06Z'
|
|
2171
|
+
id: 121
|
|
2172
|
+
preview: Free tax assistance is available at several community organizations in
|
|
2173
|
+
the Oakland area, including the IRS website.
|
|
2174
|
+
render_markdown: true
|
|
2175
|
+
service_url:
|
|
2176
|
+
slug: where-can-i-get-help-with-my-taxes
|
|
2177
|
+
status: Published
|
|
2178
|
+
tags: IRS, taxes, help, tax help, tax forms, tax assistance
|
|
2179
|
+
title: Where can I get help with my taxes?
|
|
2180
|
+
updated:
|
|
2181
|
+
updated_at: '2013-06-01T21:24:06Z'
|
|
2182
|
+
user_id:
|
|
2183
|
+
- access_count: 0
|
|
2184
|
+
author_link: ''
|
|
2185
|
+
author_name: Catherine Bracy & Sheba Najmi
|
|
2186
|
+
author_pic_content_type:
|
|
2187
|
+
author_pic_file_name:
|
|
2188
|
+
author_pic_file_size:
|
|
2189
|
+
author_pic_updated_at:
|
|
2190
|
+
category_id: 2
|
|
2191
|
+
contact_id: 28
|
|
2192
|
+
content:
|
|
2193
|
+
content_main: "**Apply in person at the City of Oakland's Building Services Department
|
|
2194
|
+
Permit Center on the second floor of 250 Frank H. Ogawa Plaza, Oakland.** "
|
|
2195
|
+
content_main_extra: 'The type of permit you need to obtain is dependent on the specifics
|
|
2196
|
+
of your project. Before you go, review the [checklist of documents](http://www2.oaklandnet.com/Government/o/PBN/OurServices/permits/index.htm)
|
|
2197
|
+
to bring with you in order to apply for your permit. '
|
|
2198
|
+
content_md:
|
|
2199
|
+
content_need_to_know: On some simple jobs, you can get a permit during your first
|
|
2200
|
+
visit over-the-counter. But in most circumstances, more time is needed for the
|
|
2201
|
+
City to review the plans prior to issuing construction permits. For urgent projects,
|
|
2202
|
+
you can request an expedited plan review.
|
|
2203
|
+
content_type:
|
|
2204
|
+
created_at: '2013-06-01T21:27:21Z'
|
|
2205
|
+
id: 123
|
|
2206
|
+
preview: Apply for a construction permit in person at the City of Oakland's Planning
|
|
2207
|
+
and Building department.
|
|
2208
|
+
render_markdown: true
|
|
2209
|
+
service_url:
|
|
2210
|
+
slug: how-do-i-get-a-permit-for-constructing-a-building
|
|
2211
|
+
status: Published
|
|
2212
|
+
tags: construction building permit
|
|
2213
|
+
title: How do I get a permit for constructing a building?
|
|
2214
|
+
updated:
|
|
2215
|
+
updated_at: '2013-06-01T22:29:25Z'
|
|
2216
|
+
user_id:
|
|
2217
|
+
- access_count: 0
|
|
2218
|
+
author_link: ''
|
|
2219
|
+
author_name: ''
|
|
2220
|
+
author_pic_content_type:
|
|
2221
|
+
author_pic_file_name:
|
|
2222
|
+
author_pic_file_size:
|
|
2223
|
+
author_pic_updated_at:
|
|
2224
|
+
category_id: 13
|
|
2225
|
+
contact_id: 22
|
|
2226
|
+
content:
|
|
2227
|
+
content_main: 'You can find a list of upcoming and ongoing festivals as well as
|
|
2228
|
+
a general list of fun events taking place in Oakland on the [Visit Oakland Calendar
|
|
2229
|
+
of Festivals page][1]. [1]: http://visitoakland.org/visiting_calendar_of_events.cfm?all=1'
|
|
2230
|
+
content_main_extra: ''
|
|
2231
|
+
content_md:
|
|
2232
|
+
content_need_to_know: ''
|
|
2233
|
+
content_type:
|
|
2234
|
+
created_at: '2013-06-01T21:59:35Z'
|
|
2235
|
+
id: 150
|
|
2236
|
+
preview: ''
|
|
2237
|
+
render_markdown: true
|
|
2238
|
+
service_url:
|
|
2239
|
+
slug: when-what-are-festivals-in-oakland
|
|
2240
|
+
status: Published
|
|
2241
|
+
tags: festivals, activities, events, fun, calendar
|
|
2242
|
+
title: When/what are festivals in Oakland?
|
|
2243
|
+
updated:
|
|
2244
|
+
updated_at: '2013-06-11T04:34:52Z'
|
|
2245
|
+
user_id:
|
|
2246
|
+
- access_count: 0
|
|
2247
|
+
author_link: ''
|
|
2248
|
+
author_name: Tim O'Reilly
|
|
2249
|
+
author_pic_content_type:
|
|
2250
|
+
author_pic_file_name:
|
|
2251
|
+
author_pic_file_size:
|
|
2252
|
+
author_pic_updated_at:
|
|
2253
|
+
category_id: 7
|
|
2254
|
+
contact_id:
|
|
2255
|
+
content:
|
|
2256
|
+
content_main: 'The best way to find out what areas of Oakland have the most reported
|
|
2257
|
+
crimes is by using the interactive map at the [Oakland Crimespotting][1] site.
|
|
2258
|
+
You can explore crimes by neighborhood, by type, by time of day, both recently
|
|
2259
|
+
and over time. [1]: http://oakland.crimespotting.org/ '
|
|
2260
|
+
content_main_extra: ''
|
|
2261
|
+
content_md:
|
|
2262
|
+
content_need_to_know: ''
|
|
2263
|
+
content_type:
|
|
2264
|
+
created_at: '2013-06-01T21:53:21Z'
|
|
2265
|
+
id: 143
|
|
2266
|
+
preview: 'The best way to find out what areas of Oakland have the most reported
|
|
2267
|
+
crimes is by using the Oakland Crimespotting site: http://oakland.crimespotting.org/'
|
|
2268
|
+
render_markdown: true
|
|
2269
|
+
service_url:
|
|
2270
|
+
slug: what-are-the-most-dangerous-areas-in-oakland
|
|
2271
|
+
status: Published
|
|
2272
|
+
tags: ''
|
|
2273
|
+
title: What are the most dangerous areas in Oakland?
|
|
2274
|
+
updated:
|
|
2275
|
+
updated_at: '2013-06-01T22:30:30Z'
|
|
2276
|
+
user_id:
|
|
2277
|
+
- access_count: 0
|
|
2278
|
+
author_link: https://twitter.com/criscristina
|
|
2279
|
+
author_name: Cris Cristina
|
|
2280
|
+
author_pic_content_type:
|
|
2281
|
+
author_pic_file_name:
|
|
2282
|
+
author_pic_file_size:
|
|
2283
|
+
author_pic_updated_at:
|
|
2284
|
+
category_id: 20
|
|
2285
|
+
contact_id:
|
|
2286
|
+
content:
|
|
2287
|
+
content_main: "...the City of Oakland!"
|
|
2288
|
+
content_main_extra: ''
|
|
2289
|
+
content_md:
|
|
2290
|
+
content_need_to_know: ''
|
|
2291
|
+
content_type:
|
|
2292
|
+
created_at: '2013-06-01T21:48:42Z'
|
|
2293
|
+
id: 140
|
|
2294
|
+
preview: "...the City of Oakland!"
|
|
2295
|
+
render_markdown: true
|
|
2296
|
+
service_url:
|
|
2297
|
+
slug: what-is-the-best-place-to-live-work-and-play
|
|
2298
|
+
status: Published
|
|
2299
|
+
tags: Oakland work live play
|
|
2300
|
+
title: What is the best place to live, work, and play?
|
|
2301
|
+
updated:
|
|
2302
|
+
updated_at: '2013-06-01T21:48:42Z'
|
|
2303
|
+
user_id: 2
|
|
2304
|
+
- access_count: 0
|
|
2305
|
+
author_link: ''
|
|
2306
|
+
author_name: ''
|
|
2307
|
+
author_pic_content_type:
|
|
2308
|
+
author_pic_file_name:
|
|
2309
|
+
author_pic_file_size:
|
|
2310
|
+
author_pic_updated_at:
|
|
2311
|
+
category_id: 18
|
|
2312
|
+
contact_id: 13
|
|
2313
|
+
content:
|
|
2314
|
+
content_main: "**Verify that you are legally allowed to evict the tenant.** ◦ A
|
|
2315
|
+
tenant may be evicted for failing to pay rent. ◦ A tenant may be evicted for
|
|
2316
|
+
violating the lease. ◦ A tenant may be evicted for using the rental unit for
|
|
2317
|
+
an unlawful purpose. ◦ A tenant may be evicted for manufacturing or dealing illegal
|
|
2318
|
+
drugs in the rental unit. ◦ A tenant may be evicted for the unlawful use of a
|
|
2319
|
+
weapon or ammunition. ◦ A tenant may be evicted for materially damaging the rental
|
|
2320
|
+
unit. ◦ A tenant may be evicted for causing a significant nuisance to other tenants.
|
|
2321
|
+
**Serve the tenant with a 3-Day Notice to Pay Rent or Quit form.** ◦ Take the
|
|
2322
|
+
completed form to the tenant and hand it to him or her. If he or she refuses to
|
|
2323
|
+
take it, leave it on the ground near the tenant. ◦ If you are unable to serve
|
|
2324
|
+
it directly to the tenant, leave it with someone who is at least 18 years old
|
|
2325
|
+
at the rental unit or with an adult at the tenant's place of work. A copy must
|
|
2326
|
+
also be mailed to the tenant in this situation. ◦ If unable to serve the form
|
|
2327
|
+
directly to another person, post it on the tenant's door and mail a copy of the
|
|
2328
|
+
form to him or her. **Allow the tenant 3 business days (Monday to Friday) after
|
|
2329
|
+
delivering the notice to remedy the situation.** ◦ The 3-day period begins the
|
|
2330
|
+
day after the notice is served. **File an Unlawful Detainer Complaint, a Civil
|
|
2331
|
+
Case Cover Sheet, and a Pre-judgment Right of Possession form.** ◦ The Unlawful
|
|
2332
|
+
Detainer Complaint can be found at the following URL: http://www.courts.ca.gov/documents/ud100.pdf.
|
|
2333
|
+
This is an eviction notice. ◦ The Civil Case Cover Sheet can be found at the
|
|
2334
|
+
following URL: http://www.courts.ca.gov/documents/cm010.pdf ◦ Submit the paperwork
|
|
2335
|
+
to the courthouse in the county that the property is in. ◦ The County Clerk will
|
|
2336
|
+
give you a Summons and a stamped copy of the Unlawful Detainer Complaint. Make
|
|
2337
|
+
sure you also receive the Pre-judgment Right of Possession form. In some cases,
|
|
2338
|
+
you must provide multiple copies for the Clerk to stamp. **Serve the tenant with
|
|
2339
|
+
the Unlawful Detainer Complaint, the Summons, and the Pre-judgment Right of Possession
|
|
2340
|
+
form.** ◦ Serve these in the same way as you served the 3-day Notice to Pay Rent
|
|
2341
|
+
or Quit form. ◦ The tenant will have 5 days to file a response with you and the
|
|
2342
|
+
court. Post and mail the tenant has 10 days to respond, after the 10 days start
|
|
2343
|
+
counting the 5 days, if no response file for judgement. **Complete the court process.**
|
|
2344
|
+
◦ If the tenant does not answer within 5 days after being served, request a default
|
|
2345
|
+
judgment from the court. This can be done by submitting a following form to the
|
|
2346
|
+
court. ◦ If a default judgment is issued, you will be given a Writ of Possession.
|
|
2347
|
+
Take this form to the local Sheriff and have him or her evict the tenant. ◦ If
|
|
2348
|
+
the tenant decides to challenge the eviction, you or the tenant may request a
|
|
2349
|
+
trial in front of a judge or jury. The trial will occur within 21 days of the
|
|
2350
|
+
request. ◦ If you win the case, you will be awarded possession of the property
|
|
2351
|
+
and possibly monetary awards. ◦ If you win the case, the court will order the
|
|
2352
|
+
Sheriff to post a notice giving the tenant 5 days to vacate the rental unit. If
|
|
2353
|
+
the tenant does not leave, the Sheriff will forcibly remove him or her. ◦ If the
|
|
2354
|
+
tenant wins the case, he or she will be permitted to remain in the rental unit.
|
|
2355
|
+
You may have to pay his or her court fees and he or she may be ordered to pay
|
|
2356
|
+
any past-due rent. **Store the tenant's items for 2 weeks if he or she is evicted.**
|
|
2357
|
+
◦ If the tenant leaves items behind, you must store them for 2 weeks and attempt
|
|
2358
|
+
to arrange for the tenant to retrieve them. ◦ If anything remains after this
|
|
2359
|
+
period, you may keep, sell, or dispose of the items. More info: http://www.dca.ca.gov/publications/landlordbook/index.shtml
|
|
2360
|
+
http://www2.oaklandnet.com/oakca/groups/ceda/documents/policy/dowd008116.pdf [1]:
|
|
2361
|
+
http://www.courts.ca.gov/documents/ud100.pdf"
|
|
2362
|
+
content_main_extra: ''
|
|
2363
|
+
content_md:
|
|
2364
|
+
content_need_to_know: ''
|
|
2365
|
+
content_type:
|
|
2366
|
+
created_at: '2014-05-31T19:28:31Z'
|
|
2367
|
+
id: 269
|
|
2368
|
+
preview: 'There are several steps to take into account when researching about evicting
|
|
2369
|
+
a tenant. The first and more important step is to verify that you are legally
|
|
2370
|
+
allowed to evict the tenant. '
|
|
2371
|
+
render_markdown: true
|
|
2372
|
+
service_url:
|
|
2373
|
+
slug: i-am-an-oakland-landlord-how-can-i-evict-a-tenant
|
|
2374
|
+
status: Published
|
|
2375
|
+
tags: tenant - landlord - eviction
|
|
2376
|
+
title: I am an Oakland landlord. How can I evict a tenant?
|
|
2377
|
+
updated:
|
|
2378
|
+
updated_at: '2014-05-31T22:08:28Z'
|
|
2379
|
+
user_id:
|