├── .gitignore ├── .travis.yml ├── DEV.html ├── LICENSE.txt ├── Makefile ├── README.md ├── make.bat ├── requirements.txt └── source ├── R_IDE.rst ├── _files └── environment.yml ├── _static ├── .gitignore ├── custom.css ├── google_analytics_tracker.js ├── robots.txt ├── start-cocalc.png └── start-cocalc.svg ├── _templates ├── about.html ├── breadcrumbs.html ├── footer.html ├── layout.html └── navigation.html ├── account-dropdown.rst ├── account-toolbar.rst ├── account ├── img │ ├── account │ │ ├── public-files.png │ │ ├── three-rcpt-hidden.png │ │ ├── three-rcpt-shown.png │ │ ├── three-subs-cancel.png │ │ └── three-subs.png │ ├── add-ssh-keys.png │ ├── enable-auto-pay.png │ ├── new-subscr.png │ ├── purch01.png │ ├── purch02.png │ ├── settings │ │ ├── account-licenses-manage.png │ │ ├── account-settings.png │ │ ├── account-tickets.png │ │ ├── buy-lic-1.png │ │ ├── buy-lic-2.png │ │ ├── buy-lic-2a.png │ │ ├── buy-lic-3.png │ │ ├── delete-account.png │ │ ├── editor-settings-0-top.png │ │ ├── editor-settings-1-bottom.png │ │ ├── editor-settings.png │ │ ├── lic-you-manage.png │ │ ├── prefs-other-gen-names.png │ │ ├── prefs-other.png │ │ └── standby-screen.png │ ├── ssh-fingerprints.png │ └── ssh-keys-in-dropdown.png ├── licenses.rst ├── preferences.rst ├── public-files.rst ├── purchases.rst ├── ssh.rst └── support.rst ├── activity-bar.rst ├── advanced_capabilities.rst ├── ai.rst ├── alternativeto ├── colab.rst ├── index.rst └── jupyterhub.rst ├── api2 ├── directory-listing.rst ├── email-address-from-account-id.rst ├── get-purchases.rst ├── index.rst ├── latex.rst ├── purchasing-licenses.rst ├── stop.rst └── user-query.rst ├── apikeys.rst ├── backups.rst ├── billing.rst ├── chat.rst ├── chatgpt.rst ├── cloud_file_system.rst ├── cocalc-cloud.rst ├── cocalc-desktop.rst ├── compute_server.rst ├── conf.py ├── contents.rst ├── core_applications.rst ├── csv-viewer.rst ├── display-options.rst ├── explorer.rst ├── files-search.rst ├── files └── gnuplot.tex ├── flyouts.rst ├── frame-editor.rst ├── fullscreen.rst ├── genindex.rst ├── getting-started.rst ├── howto ├── activeloop-hub.rst ├── assembly-language.rst ├── awscli.rst ├── bash-fortunes.rst ├── bokeh-server.rst ├── cant-save.rst ├── clock-is-off.rst ├── connectivity-issues.rst ├── convert-html-to-pdf.rst ├── cplusplus.rst ├── custom-jupyter-kernel.rst ├── dask.rst ├── disk-space-warning.rst ├── external-tools.rst ├── file-too-large.rst ├── firewall-info.rst ├── fix-broken-jupyter-pdf.rst ├── fortran.rst ├── front-end-dev.rst ├── gap-kernel-unavailable.rst ├── git.rst ├── google-api.rst ├── gsl.rst ├── img │ ├── big-file.png │ ├── c++-compile.png │ ├── clock-is-off.png │ ├── clock-skew.png │ ├── compute_server_turtle.png │ ├── create-folder.png │ ├── create-project.png │ ├── download-config.png │ ├── enable-sheets-api.png │ ├── enter-token.png │ ├── example-spreadsheet.png │ ├── exoplanets-streamlit.png │ ├── files-upload.png │ ├── fortranmagic-1.png │ ├── fortranmagic-2.png │ ├── glances.png │ ├── go-to-link.png │ ├── gsl-compile.png │ ├── htop.png │ ├── hub_logo.png │ ├── invite_link.png │ ├── ipynb-too-large.png │ ├── jlab-change-kernel.png │ ├── jlab-env.png │ ├── jlab-ext-example.png │ ├── jlab-launcher.png │ ├── jupyter-classic-change-kernel.png │ ├── jupyter-kernel.png │ ├── jupyter-select-kernel-lg.png │ ├── jupyter-turtle.png │ ├── kernel_SIGKILL.png │ ├── latex-unzip.png │ ├── latex-upload.png │ ├── mongodb.png │ ├── neuron-jupyter.png │ ├── nteract-turtle.png │ ├── oauth-sign-in.png │ ├── octave-jupyter.png │ ├── octave-x11.png │ ├── only-public.png │ ├── overleaf-export.png │ ├── plotly-dash.png │ ├── pluto-1.jpg │ ├── pluto-2.jpg │ ├── pluto-launch.png │ ├── project-name.png │ ├── ruby-fe.png │ ├── second-run.png │ ├── shiny-rmeans.png │ ├── split-ls.png │ ├── split-py.png │ ├── top.png │ ├── tt-export-api.png │ ├── tt-export-button.png │ ├── tt-exported-json.png │ ├── turtle-spirals.png │ ├── upload-py.png │ └── verify.png ├── index.rst ├── install-julia-package.rst ├── install-python-lib.rst ├── install-r-package.rst ├── jupyter-extension.rst ├── jupyter-kernel-selection.rst ├── jupyter-kernel-terminated.rst ├── jupyter-plot-png-svg.rst ├── jupyterlab-extensions.rst ├── license-doesnt-work.rst ├── low-memory.rst ├── missing-project.rst ├── multiple-accounts.rst ├── nbgrader.rst ├── neuron.rst ├── octave.rst ├── orphan.rst ├── overleaf.rst ├── parallel.rst ├── plotly-dash.rst ├── pluto.rst ├── postgresql.rst ├── project-invitation-tokens.rst ├── recover-deleted-file.rst ├── remarkjs-slideshow.rst ├── ruby.rst ├── run-r-step-by-step.rst ├── running-processes.rst ├── sage-question.rst ├── shiny-server.rst ├── slow-worksheet.rst ├── software-development.rst ├── streamlit.rst ├── sudo-make-install.rst ├── trouble.rst ├── turtle.rst ├── upload.rst └── webserver.rst ├── img ├── AI_Jupyter.png ├── AI_at_mention.png ├── AI_at_mention_Haiku.png ├── AI_formula.png ├── AI_help_me_fix.png ├── AI_reply_to_response.png ├── AI_response_in_chat.png ├── AI_terminal.png ├── AI_what_is_sent.png ├── LLM_charge.png ├── LLM_choice.png ├── R_IDE_server.png ├── TimeTravel_button.png ├── TimeTravel_changes.png ├── TimeTravel_frame.png ├── TimeTravel_git.png ├── account-api-key.png ├── account-api-key2.png ├── account-api-key3.png ├── account-dropdown-closeup.png ├── account-dropdown.png ├── account-toolbar.png ├── activity-bar-2.png ├── activity-bar.png ├── add-lic-1b.png ├── add-lic-2b.png ├── add-star.png ├── add_credit_voucher.png ├── allow_collaborator_control.png ├── annotated_empty_project.png ├── annotated_frame_change.png ├── annotated_frame_editor.png ├── annotated_jupyter_notebook.png ├── annotated_multiple_frames.png ├── annotated_new_file.png ├── annotated_search_pin_menu.png ├── annotated_side_chat_AI.png ├── annotated_timetravel.png ├── antd-icons │ ├── avatar-sample.png │ ├── comment-icon.png │ ├── dashboard-icon.png │ ├── disconnect-icon.png │ ├── lock-icon.png │ ├── pages-icon.png │ ├── public-icon.png │ ├── remove-icon.png │ ├── run-icon.png │ ├── search-icon.png │ ├── stop-icon.png │ └── sync-icon.png ├── before-create-vouchers.png ├── boost-add-2GB.png ├── cfs_access_estimates.png ├── cfs_backup_h.png ├── cfs_estimate_plots.png ├── cfs_location.png ├── cfs_move.png ├── cfs_terminal_stats.png ├── cfs_terminal_warmup.png ├── ch-2.png ├── ch-4.png ├── ch-5.png ├── ch-ask-pandas-question.png ├── ch-cocalc-features.png ├── ch-copy-python-code.png ├── ch-explain-code-jup.png ├── ch-fix-jup-err.png ├── ch-linux-term.png ├── ch-top-of-frame-ed.png ├── chat-gpt-tour.png ├── chatroom-formula.png ├── chatroom.png ├── close_and_halt.png ├── cocalc-custom-tensorflow2.png ├── cocalc-doc-logo.svg ├── cocalc-doc-logo.svg.png ├── cocalc-intro-1.png ├── cocalc-ipywidgets-sync-2019-05-08.gif ├── cocalc-news.png ├── cocalc-screenshot-20200123.png ├── code-cells-in-wb.png ├── compute_server_DISPLAY.png ├── compute_server_applications.png ├── compute_server_confirmation.png ├── compute_server_cost.png ├── compute_server_cost_running_vs_stopped.png ├── compute_server_create_dialog.png ├── compute_server_creating.png ├── compute_server_creating_2.png ├── compute_server_direct_connect.png ├── compute_server_escape.png ├── compute_server_fast_data.png ├── compute_server_files.png ├── compute_server_kernel.png ├── compute_server_notebook.png ├── compute_server_project_files.png ├── compute_server_proxy.png ├── compute_server_select_kernel.png ├── compute_server_status.png ├── compute_server_sudo.png ├── compute_server_sync_files.png ├── compute_server_syncing.png ├── compute_server_terminal.png ├── compute_server_web_applications_advanced.png ├── configure_voucher.png ├── create-timer.png ├── create-vouchers-1.png ├── create_voucher_from_cart.png ├── csv-viewer.png ├── dark-mode-example.png ├── dark-mode-setting.png ├── details-expanded.png ├── details-summary-only.png ├── edit-terminal-split.png ├── emoji-list.png ├── enter-voucher-code.png ├── explain2.png ├── explain3.png ├── explain4.png ├── explorer-a.png ├── explorer-b.png ├── explorer-c.png ├── explorer-tour2.png ├── export-file-use-times.png ├── favicon-32x32.png ├── file_shift_click.png ├── files-search.png ├── files-toolbar.png ├── first-steps-hide.png ├── first-steps-message.png ├── flyouts │ ├── explorer-flyout.png │ ├── find-flyout.png │ ├── log-flyout.png │ ├── new-flyout.png │ ├── processes-flyout.png │ ├── servers-flyout.png │ └── settings-flyout.png ├── font-options-ipynb1.png ├── font-options-ipynb2.png ├── font-options-md.png ├── frame-editor-python.png ├── frame_focus.png ├── fullscreen_button.png ├── fullscreen_mode.png ├── fullscreen_partial.png ├── getting-started │ ├── 2021-11-welcome-sign-in.png │ ├── conn-ind.png │ ├── conn-stat.png │ ├── create-notebook.png │ ├── create-project.png │ ├── process-info.png │ ├── proj-1-a.png │ ├── run-first-cell.png │ ├── select-kernel.png │ ├── sign-up-1.png │ ├── sign-up-2.png │ ├── view-projects.png │ └── welcome-sign-up.png ├── icons │ ├── bullhorn.png │ ├── cocalc-logo.svg │ ├── docs-counter.png │ ├── envelope-icon.png │ ├── expand.png │ ├── insert-icon.png │ ├── lock.png │ ├── mask-icon.png │ ├── present-icon.png │ ├── servers-icon.png │ ├── upgrades-icon.png │ └── users-icon.png ├── incompat-licenses.png ├── institute_license_applied.png ├── institute_pays.png ├── ipynb-too-large-help.png ├── jn_TOC_and_trust.png ├── jn_editing_cells.png ├── jn_help.png ├── jn_running_code.png ├── jupyter │ ├── cell-insert-bar.png │ ├── cell-insert-chatgpt.png │ ├── cocalc-widgets-a.png │ ├── delete-protect.png │ ├── edit-protect.png │ ├── jup-cell-num-timing.png │ ├── jup-toc2.png │ ├── jupyter-halt-button.png │ ├── jupyter-notebook-cocalc-1.png │ ├── jupyter-notebook-cocalc-2.png │ ├── jupyter-wav-2.png │ ├── place-image.png │ ├── plain-jupyter-server.png │ ├── slideshow-1.png │ ├── slideshow-2.png │ ├── slideshow-3.png │ ├── switch-to-classical.png │ └── switch-to-cocalc.png ├── latex-asymptote.png ├── latex-gnuplot-shell-escape.png ├── latex-knitr.png ├── latex-multifile.png ├── latex-pstricks-demo3.png ├── latex-pstricks-demo4.png ├── latex-pythontex.png ├── latex-sagetex.png ├── latex-spellcheck.png ├── latex-spellcheck123.jpg ├── latex-ui.png ├── latex-word-count.png ├── license_expanded.png ├── licenses.png ├── markdown-library-numbers.png ├── markdown-sample.png ├── md-fenced-exec.png ├── md-fenced-info.png ├── md-text-vs-code.png ├── nbgrader │ ├── nbg-autograded.png │ ├── nbg-code-snippet.png │ ├── nbg-contents.png │ ├── nbg-cq-code.png │ ├── nbg-create-assg-0.png │ ├── nbg-create-assg-1.png │ ├── nbg-create-assg.png │ ├── nbg-gen-sv.png │ ├── nbg-manual-grade.png │ ├── nbg-new-notebook.png │ ├── nbg-open-assg-folder.png │ ├── nbg-student-grade.png │ ├── nbg-view-ca.png │ ├── nbgrader_GRADEmd.png │ ├── nbgrader_UI_elements.png │ ├── nbgrader_assign.png │ ├── nbgrader_fully_graded.png │ ├── nbgrader_manual.png │ ├── nbgrader_return.png │ ├── nbgrader_student_version.png │ ├── nbgrader_templates.png │ ├── run-nbgrader-3.png │ ├── run-nbgrader.png │ ├── show_nbgrader_UI.png │ └── sync-grades-2.png ├── new-config-page.png ├── new-timer.png ├── no_sudo.png ├── not-rich.png ├── obtain_credit_voucher.png ├── open-pages-view.png ├── open-search-view.png ├── open_sharing_link.png ├── overview-map.png ├── page-one-of-two.png ├── paygo01.png ├── paygo02.png ├── paygo03b.png ├── paygo4.png ├── paygo5.png ├── peer_grading_enable.png ├── peer_grading_grades.png ├── peer_grading_guide.png ├── pin_software_environment.png ├── plus-new.png ├── processes.png ├── proj-license-key.png ├── project-files │ ├── file-action-copy-1.png │ ├── file-action-copy-2.png │ ├── file-action-move.png │ ├── file-actions-multiple.png │ ├── file-actions.png │ ├── files-filtered-mask.png │ ├── files-filtered-nomask.png │ ├── files-lib.png │ ├── files-list.png │ ├── files-with-hidden.png │ └── mini-terminal.png ├── project-home.png ├── project-info │ └── project-info-table.png ├── project-library.png ├── project-list │ ├── my-first-project.png │ ├── proj-01.png │ ├── proj-02a.png │ ├── proj-03a.png │ ├── proj-04a.png │ └── projects-tour.png ├── project-log-filter.png ├── project-log.png ├── project-settings │ ├── add-collabs.png │ ├── addingprojkey.png │ ├── current-collabs.png │ ├── deleted-and-hidden-a.png │ ├── delproj1.png │ ├── delproj2.png │ ├── email-invitation.png │ ├── env-vars.png │ ├── feat-config.png │ ├── hidden.png │ ├── hide-or-delete.png │ ├── image-hover-project-tab.png │ ├── image-in-shared-list.png │ ├── image-in-shared-project.png │ ├── jupyter-server-a.png │ ├── jupyterlab-server-a.png │ ├── open-upgrade-contributions.png │ ├── proj-name-etc.png │ ├── project-control.png │ ├── project-image-list.png │ ├── project-match.png │ ├── project-restart-confirm.png │ ├── project-restarting.png │ ├── project-settings-cloud-storage.png │ ├── restart-sagews-a.png │ ├── selected-image-experimental.png │ ├── show-deleted.png │ ├── show-hidden.png │ ├── ssh-user-host.png │ ├── stop-project-confirm.png │ ├── title-and-desc-a.png │ ├── upgrade-contributions-full.png │ ├── upgrade-contributions.png │ ├── usage-and-quotas-hint.png │ ├── usage-and-quotas.png │ └── usernameathost.png ├── project-toolbar-projects.png ├── project-toolbar.png ├── projects-tour2.png ├── publish_listed.png ├── publish_unlisted.png ├── publish_using_explorer.png ├── published_file_in_explorer.png ├── quarto.jpeg ├── quarto.png ├── r-markdown-library.png ├── redeem-a-code.png ├── reference-links.png ├── regex-search-ed.png ├── remove-star.png ├── restrict_students.png ├── rich-text-latex-1.png ├── rich-text-latex-2.png ├── rmd-pdf-example.png ├── sagews-side-chat-a.png ├── sagews │ ├── sagews-1q.png │ ├── sagews-2q.png │ ├── sagews-example-tt.png │ ├── sagews-example.png │ ├── sagews-help-0.png │ ├── sagews-help-1.png │ ├── sagews-help-2.png │ ├── sagews-help.png │ ├── sagews-stacktrace.png │ ├── sagews-timetravel-a.png │ └── tabcomplete.png ├── search-and-pages.png ├── servers-pane.png ├── set-font-color-1.png ├── set-font-color-2.png ├── share-at-landing.png ├── share-dialog.png ├── share-home-page.png ├── shared-folder.png ├── slides-pages.png ├── slides │ ├── insert-slide.png │ ├── present-dropdown.png │ ├── slides.png │ ├── start-presentation.png │ └── toggle-slides-toolbar.png ├── snippets │ ├── custom-snippets.png │ ├── snippets-btn-ipynb.png │ ├── snippets-btn-sagews.png │ ├── snippets-langs.png │ └── snippets.png ├── student-pay-2b.png ├── student-pay-3b.png ├── student-pay-levels.png ├── student │ ├── cocalc-student-pays-1.png │ ├── cocalc-student-pays-2.png │ ├── cocalc-student-pays-3.png │ ├── cocalc-student-pays-too-late.png │ ├── content.png │ ├── control.png │ ├── download.png │ ├── drag.png │ ├── projects.png │ ├── restart_project.png │ ├── student_question.png │ ├── time_diff.png │ └── upload.png ├── students_pay_directly.png ├── task-list.png ├── teaching │ ├── Enter_grade.png │ ├── Export_grades.png │ ├── Identify_student.png │ ├── access_collected_assignments.png │ ├── add-students-2.png │ ├── add-students-3.png │ ├── add-students-4.png │ ├── add-students-5.png │ ├── add_handout.png │ ├── add_students.png │ ├── add_students_step2.png │ ├── add_tas.png │ ├── added_students.png │ ├── after_latex_render.png │ ├── assign_assignment.png │ ├── assignment_list.png │ ├── before_latex_render.png │ ├── chat_button.png │ ├── collaborators.png │ ├── collect_assignment.png │ ├── collected_assignments.png │ ├── collected_folder.png │ ├── colored_feedback_markdown.png │ ├── colored_feedback_text.png │ ├── configure_upgrades.png │ ├── copy-missing.png │ ├── course-empty-trash.png │ ├── course-reconfigure.png │ ├── course_file.png │ ├── create_course_file.png │ ├── create_new_course_project.png │ ├── delete-student-2.png │ ├── delete-student.png │ ├── download.png │ ├── due-date.png │ ├── export-collected.png │ ├── export_grades.png │ ├── feedback.png │ ├── file.png │ ├── filelist_with_collect.png │ ├── find-handout.png │ ├── find_assignment.png │ ├── folder.png │ ├── graded_assignment.png │ ├── handout-course.png │ ├── handout_after_distributing.png │ ├── handout_before_distributing.png │ ├── handout_expanded.png │ ├── inst-pay-01-no-upgr.png │ ├── inst-pay-02-add-upgr.png │ ├── inst-pay-03-student-before.png │ ├── inst-pay-04-student-after.png │ ├── inst-pay-06-before3rd.png │ ├── institute_pays.png │ ├── instructor_cursor.png │ ├── instructor_notification.png │ ├── license-strategy.png │ ├── math-202-tree.png │ ├── mentioning_student.png │ ├── new-instructor-project-started.png │ ├── new.png │ ├── new_managecourse.png │ ├── non-nbg-2.png │ ├── notification_highlighted.png │ ├── open_assignment.png │ ├── peer_grading_activation.png │ ├── projects-cc.png │ ├── reinvite-students.png │ ├── restart_project.png │ ├── restrict-student-projects.png │ ├── restrict_students.png │ ├── return_button.png │ ├── returned_assignment.png │ ├── returned_assignment_files.png │ ├── send_assignment.png │ ├── set_instructor_license_title.png │ ├── settings.png │ ├── shared1.png │ ├── site-lic-course-config.png │ ├── site-lic-course-create-crse.png │ ├── site-lic-course-create-proj.png │ ├── site-lic-course-restart-post.png │ ├── site-lic-course-restart-pre.png │ ├── start_all_clicked.png │ ├── stop_notebook.png │ ├── student-license-view.jpg │ ├── student_got_mentioned.png │ ├── student_question.png │ ├── student_replies.png │ ├── students-pay-2.png │ ├── students-pay-3.png │ ├── students_pay.png │ ├── term_command_course.png │ ├── tex-mentions.png │ ├── time_travel.png │ ├── time_travel_sliders.png │ ├── undelete-student-2a.png │ ├── undelete-student.png │ ├── upgrade-instructor-project.png │ ├── upgrading_students.png │ └── upgrading_students2.png ├── term-tour.png ├── terminal │ ├── chrome-customize-fonts.png │ ├── chrome-fixed-width-font.png │ └── clean-terminal.png ├── terminals4.png ├── time-travel-changes.png ├── time-travel-ui.png ├── timer-file-expired.png ├── update-credit-cards3.png ├── upgrade_instructor_project.png ├── upgrades-adjust.png ├── upgrades-applied.png ├── upgrades-download-receipts.png ├── upgrades-payment-info.png ├── upgrades-plan-selection.png ├── upgrades-subscription-info.png ├── upgrades.png ├── use-license-key-a.png ├── users.png ├── view-codes.png ├── voucher-center-upper.png ├── voucher-order-complete.png ├── voucher_center.png ├── vouchers-you-redeemed.png ├── vsc_x11_plotting_cocalc.png ├── vsc_x11_plotting_vsc.png ├── vscode-server.png ├── wb-search-view.png ├── wb-tasks-code.png ├── wb-tasks-rendered.png ├── whiteboard-sage.png ├── whiteboard │ ├── chat.png │ ├── cut-copy-paste.png │ ├── insert-page.png │ ├── timers.png │ └── wb-timer-expired.png ├── x11-gedit-save.png ├── x11-inkscape-dialog.png ├── x11-launcher-buttons.png ├── x11-libreoffice-tabs.png ├── x11-maxima.png ├── x11-scilab-2019-05-04.png ├── x11-spyder-hdpi.png ├── yes-rich.png └── your-vouchers.png ├── index.rst ├── introduction.rst ├── ipad.rst ├── jupyter-tips-and-tricks.rst ├── jupyter.rst ├── latex-faq.rst ├── latex-features.rst ├── latex-start.rst ├── latex.rst ├── licenses.rst ├── markdown.rst ├── news.rst ├── news └── ubuntu-2004.rst ├── on-premises.rst ├── paygo.rst ├── platform-news.rst ├── plus-new.rst ├── processes.rst ├── project-faq.rst ├── project-files.rst ├── project-home.rst ├── project-init.rst ├── project-library.rst ├── project-list.rst ├── project-log.rst ├── project-settings.rst ├── project-toolbar.rst ├── project.rst ├── references.rst ├── restrict-student-projects.rst ├── rich-text.rst ├── sagews.rst ├── servers.rst ├── service_options.rst ├── share.rst ├── signature_features.rst ├── slides.rst ├── snippets.rst ├── software.rst ├── software ├── custom_software.rst ├── custom_software0.rst ├── img │ ├── sage-R-plot3d.png │ └── sage9.2-3d-ani.png ├── updates-2018.rst ├── updates-2019.rst ├── updates-2020.rst ├── updates-2021.rst ├── updates-2022.rst ├── updates-2023.rst └── updates-2024.rst ├── tasks.rst ├── teaching-add-students.rst ├── teaching-after-course.rst ├── teaching-course-management.rst ├── teaching-create-course.rst ├── teaching-instructors.rst ├── teaching-interactions.rst ├── teaching-nbgrader.rst ├── teaching-overview.rst ├── teaching-peer-grading.rst ├── teaching-students.rst ├── teaching-tips_and_tricks.rst ├── teaching-upgrade-course.rst ├── teaching-workshop.rst ├── terminal.rst ├── time-travel.rst ├── timers.rst ├── tours.rst ├── trial.rst ├── upgrade-guide.rst ├── upgrades.rst ├── user_interface.rst ├── users.rst ├── videos.rst ├── vouchers.rst ├── vscode.rst ├── whiteboard.rst ├── why.rst ├── why_not.rst └── x11.rst /.travis.yml: -------------------------------------------------------------------------------- 1 | os: linux 2 | 3 | dist: xenial 4 | 5 | language: python 6 | 7 | python: 8 | - "3.6" 9 | 10 | git: 11 | depth: 10 12 | 13 | cache: pip 14 | install: 15 | - pip install -r requirements.txt 16 | 17 | script: "make html" 18 | 19 | deploy: 20 | strategy: git 21 | provider: pages 22 | local_dir: build/html/ 23 | skip_cleanup: true 24 | token: $DOC_COCALC_TOKEN 25 | keep_history: false 26 | fqdn: doc.cocalc.com 27 | target_branch: gh-pages 28 | on: 29 | branch: master 30 | -------------------------------------------------------------------------------- /DEV.html: -------------------------------------------------------------------------------- 1 | Travis CI Status 2 | 3 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | pushd %~dp0 4 | 5 | REM Command file for Sphinx documentation 6 | 7 | if "%SPHINXBUILD%" == "" ( 8 | set SPHINXBUILD=sphinx-build 9 | ) 10 | set SOURCEDIR=source 11 | set BUILDDIR=build 12 | set SPHINXPROJ=CoCalcDocumentation 13 | 14 | if "%1" == "" goto help 15 | 16 | %SPHINXBUILD% >NUL 2>NUL 17 | if errorlevel 9009 ( 18 | echo. 19 | echo.The 'sphinx-build' command was not found. Make sure you have Sphinx 20 | echo.installed, then set the SPHINXBUILD environment variable to point 21 | echo.to the full path of the 'sphinx-build' executable. Alternatively you 22 | echo.may add the Sphinx directory to PATH. 23 | echo. 24 | echo.If you don't have Sphinx installed, grab it from 25 | echo.http://sphinx-doc.org/ 26 | exit /b 1 27 | ) 28 | 29 | %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 30 | goto end 31 | 32 | :help 33 | %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% 34 | 35 | :end 36 | popd 37 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx>=5.0 2 | sphinx_rtd_theme 3 | sphinx-sitemap 4 | 5 | -------------------------------------------------------------------------------- /source/_files/environment.yml: -------------------------------------------------------------------------------- 1 | name: myenv 2 | channels: 3 | - conda-forge 4 | - bioconda 5 | - defaults 6 | dependencies: 7 | - ipykernel 8 | - pandas 9 | - matplotlib 10 | - biopython 11 | - samtools 12 | -------------------------------------------------------------------------------- /source/_static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/_static/.gitignore -------------------------------------------------------------------------------- /source/_static/google_analytics_tracker.js: -------------------------------------------------------------------------------- 1 | // window.dataLayer = window.dataLayer || []; 2 | // function gtag(){dataLayer.push(arguments);} 3 | // gtag('js', new Date()); 4 | // gtag('config', 'UA-34321400-6'); 5 | -------------------------------------------------------------------------------- /source/_static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/_static/robots.txt -------------------------------------------------------------------------------- /source/_static/start-cocalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/_static/start-cocalc.png -------------------------------------------------------------------------------- /source/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- 1 | {%- extends "sphinx_rtd_theme/breadcrumbs.html" %} 2 | 3 | {% block breadcrumbs_aside %} 4 |
  • 5 | 10 | Ask us a Question! 11 | 12 |
  • 13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /source/_templates/footer.html: -------------------------------------------------------------------------------- 1 | {% extends "!footer.html" %} 2 | {% block extrafooter %} 3 | 4 |
    5 |

    6 | Please contact us for Questions and Feedback, 7 | Documentation Repository, 8 | Privacy Policy and ToS. 9 |

    10 |

    11 | {{ _('Edit this page on GitHub') }} 12 |

    13 |

    14 | Start CoCalc – start free, upgrade later! 15 |

    16 |
    17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /source/_templates/navigation.html: -------------------------------------------------------------------------------- 1 | {# from https://github.com/bitprophet/alabaster/blob/master/alabaster/navigation.html #} 2 | 3 | {# don't state the obvious: #} 4 | {#

    {{ _('Navigation') }}

    #} 5 | 6 | {{ toctree(includehidden=theme_sidebar_includehidden, collapse="true") }} 7 | {% if theme_extra_nav_links %} 8 | 9 |

    Links:

    10 | 15 | 16 | {% endif %} -------------------------------------------------------------------------------- /source/account/img/account/public-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/account/public-files.png -------------------------------------------------------------------------------- /source/account/img/account/three-rcpt-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/account/three-rcpt-hidden.png -------------------------------------------------------------------------------- /source/account/img/account/three-rcpt-shown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/account/three-rcpt-shown.png -------------------------------------------------------------------------------- /source/account/img/account/three-subs-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/account/three-subs-cancel.png -------------------------------------------------------------------------------- /source/account/img/account/three-subs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/account/three-subs.png -------------------------------------------------------------------------------- /source/account/img/add-ssh-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/add-ssh-keys.png -------------------------------------------------------------------------------- /source/account/img/enable-auto-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/enable-auto-pay.png -------------------------------------------------------------------------------- /source/account/img/new-subscr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/new-subscr.png -------------------------------------------------------------------------------- /source/account/img/purch01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/purch01.png -------------------------------------------------------------------------------- /source/account/img/purch02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/purch02.png -------------------------------------------------------------------------------- /source/account/img/settings/account-licenses-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/account-licenses-manage.png -------------------------------------------------------------------------------- /source/account/img/settings/account-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/account-settings.png -------------------------------------------------------------------------------- /source/account/img/settings/account-tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/account-tickets.png -------------------------------------------------------------------------------- /source/account/img/settings/buy-lic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/buy-lic-1.png -------------------------------------------------------------------------------- /source/account/img/settings/buy-lic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/buy-lic-2.png -------------------------------------------------------------------------------- /source/account/img/settings/buy-lic-2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/buy-lic-2a.png -------------------------------------------------------------------------------- /source/account/img/settings/buy-lic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/buy-lic-3.png -------------------------------------------------------------------------------- /source/account/img/settings/delete-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/delete-account.png -------------------------------------------------------------------------------- /source/account/img/settings/editor-settings-0-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/editor-settings-0-top.png -------------------------------------------------------------------------------- /source/account/img/settings/editor-settings-1-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/editor-settings-1-bottom.png -------------------------------------------------------------------------------- /source/account/img/settings/editor-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/editor-settings.png -------------------------------------------------------------------------------- /source/account/img/settings/lic-you-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/lic-you-manage.png -------------------------------------------------------------------------------- /source/account/img/settings/prefs-other-gen-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/prefs-other-gen-names.png -------------------------------------------------------------------------------- /source/account/img/settings/prefs-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/prefs-other.png -------------------------------------------------------------------------------- /source/account/img/settings/standby-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/settings/standby-screen.png -------------------------------------------------------------------------------- /source/account/img/ssh-fingerprints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/ssh-fingerprints.png -------------------------------------------------------------------------------- /source/account/img/ssh-keys-in-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/account/img/ssh-keys-in-dropdown.png -------------------------------------------------------------------------------- /source/account/support.rst: -------------------------------------------------------------------------------- 1 | 2 | .. index:: Account Tab; support 3 | .. index:: 4 | Support; view tickets 5 | 6 | .. _account-support: 7 | 8 | ======== 9 | Support 10 | ======== 11 | 12 | Support tickets 13 | ================ 14 | 15 | .. figure:: img/settings/account-tickets.png 16 | :width: 90% 17 | :align: center 18 | :alt: view support tickets 19 | 20 | see support tickets at https://cocalc.com/support 21 | 22 | 23 | View your open and closed CoCalc support requests here. A red background indicates an open ticket, while a blue background indicates a closed ticket. 24 | 25 | .. note:: 26 | 27 | If you email CoCalc support from an email address other than what is on your account, the help ticket that is created won't be listed here. *A good rule when you have a question is to have the file relating to your question open in CoCalc, then click the Help button to request support. That way, the ticket will be listed here, and CoCalc staff will see a link to the file in question.* 28 | -------------------------------------------------------------------------------- /source/advanced_capabilities.rst: -------------------------------------------------------------------------------- 1 | ===================== 2 | Advanced Capabilities 3 | ===================== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | software 9 | vscode 10 | R_IDE 11 | x11 12 | 13 | sagews 14 | markdown 15 | rich-text 16 | csv-viewer 17 | 18 | whiteboard 19 | tasks 20 | timers 21 | slides 22 | snippets 23 | 24 | backups 25 | apikeys 26 | api2/index.rst 27 | display-options 28 | -------------------------------------------------------------------------------- /source/alternativeto/index.rst: -------------------------------------------------------------------------------- 1 | Comparing with Others 2 | ===================== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | colab 8 | jupyterhub -------------------------------------------------------------------------------- /source/api2/stop.rst: -------------------------------------------------------------------------------- 1 | ====== 2 | stop 3 | ====== 4 | 5 | 6 | Use the ``stop`` endpoint to stop a CoCalc project, given its project_id. Note that this endpoint is in the ``v2/projects/`` subdirectory. The user must be signed in and must be an owner or collaborator on the project. 7 | 8 | .. code:: bash 9 | 10 | x='sk_xxxxx' # your API key 11 | 12 | # project_id of the project you want to stop 13 | p='304506b4-262e-11ed-a279-2f22f36cbe91' 14 | 15 | curl -sk \ 16 | -u $x: \ 17 | -d project_id=$p \ 18 | https://cocalc.com/api/v2/projects/stop 19 | 20 | ### project will be stopped; normal output is a pair of braces 21 | {} 22 | 23 | You can learn more about the ``stop`` endpoint by viewing the source code at `https://github.com/sagemathinc/.../api/v2/projects/stop.ts `__. 24 | -------------------------------------------------------------------------------- /source/billing.rst: -------------------------------------------------------------------------------- 1 | .. index:: 2 | Billing 3 | FAQ; Billing 4 | 5 | .. _upgrades-faq: 6 | 7 | Billing FAQ 8 | =========== 9 | 10 | This page answers questions related to billing. 11 | To learn more about licenses, see :doc:`licenses`. 12 | Questions about projects are covered in :doc:`project-faq`. 13 | 14 | 15 | .. _invoice: 16 | .. index:: 17 | Billing; Invoice 18 | Invoice 19 | 20 | How do I get an **invoice** with specific information? 21 | *********************************************************** 22 | 23 | Please email us at help@cocalc.com before making a purchase to get custom quotes and invoices with detailed information. 24 | If you have already purchased something, we cannot issue a different invoice, but we can add extra information such as your address on the PDF invoice and have it signed. 25 | 26 | 27 | .. index:: 28 | Wire transfer 29 | 30 | Can I pay via wire transfer? 31 | *********************************************************** 32 | 33 | For purchases **above $100** we support wire transfers. 34 | Please contact help@cocalc.com with all relevant details about your intended purchase. 35 | 36 | 37 | -------------------------------------------------------------------------------- /source/chatgpt.rst: -------------------------------------------------------------------------------- 1 | .. index:: ChatGPT 2 | 3 | .. _chatgpt-tour: 4 | 5 | .. _gpt-versions: 6 | 7 | ChatGPT 8 | ======= 9 | 10 | ChatGPT was the first LLM integrated into CoCalc, but a lot of things have changed since then! See :doc:`ai` for the current state. 11 | 12 | -------------------------------------------------------------------------------- /source/cocalc-cloud.rst: -------------------------------------------------------------------------------- 1 | CoCalc Cloud 2 | ============ 3 | 4 | "CoCalc Cloud" turned out to be a confusing name, it has been changed to :ref:`cocalc_onprem`. 5 | -------------------------------------------------------------------------------- /source/cocalc-desktop.rst: -------------------------------------------------------------------------------- 1 | .. index:: Cocalc; desktop application 2 | 3 | ===================== 4 | CoCalc Desktop 5 | ===================== 6 | 7 | .. contents:: 8 | :local: 9 | :depth: 1 10 | 11 | The goal of Cocalc Desktop is to provide a minimal easy-to-install version of CoCalc for MS Windows and MacOS (both M1 and x86). 12 | Instead of visiting the CoCalc.com website from your web browser, you launch the desktop application. 13 | 14 | If you suspect that browser enhancements and extensions may be causing slow CoCalc response time, then you might want to try the CoCalc desktop application to see if that eliminates the problem. 15 | 16 | For more information, and installable files, see this link: `CoCalc Desktop `_. 17 | 18 | -------------------------------------------------------------------------------- /source/contents.rst: -------------------------------------------------------------------------------- 1 | .. CoCalc User Manual master file. 2 | Main purpose is the root `toctree` directive. 3 | 4 | Welcome to CoCalc's User Manual! 5 | ================================================ 6 | 7 | This explains in depth how you can work productively on `CoCalc`_. 8 | 9 | .. toctree:: 10 | :maxdepth: 2 11 | 12 | introduction 13 | core_applications 14 | signature_features 15 | advanced_capabilities 16 | user_interface 17 | service_options 18 | howto/index 19 | 20 | getting-started 21 | teaching-instructors 22 | teaching-students 23 | 24 | howto/trouble 25 | 26 | Indices, references and tables 27 | ============================== 28 | 29 | .. toctree:: 30 | :caption: Appendix 31 | 32 | references 33 | genindex 34 | 35 | 36 | .. disabled (search is in the navbar and modindex makes no sense) 37 | * :ref:`search` 38 | * :ref:`modindex` 39 | 40 | 41 | .. _CoCalc: https://cocalc.com/ 42 | -------------------------------------------------------------------------------- /source/core_applications.rst: -------------------------------------------------------------------------------- 1 | Core Applications 2 | ================= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | jupyter 8 | jupyter-tips-and-tricks 9 | latex 10 | terminal 11 | -------------------------------------------------------------------------------- /source/csv-viewer.rst: -------------------------------------------------------------------------------- 1 | .. index:: CSV Viewer 2 | 3 | ============================= 4 | CSV Viewer 5 | ============================= 6 | 7 | If you open a CSV file in CoCalc, by default it will show you a nicely formatted tabular view, indicated by "Grid" shown in the display mode pulldown menu at upper right. To see and edit the raw text, select "Raw" mode in the pulldown. The screenshot shows Grid and Raw displays side by side: 8 | 9 | .. figure:: img/csv-viewer.png 10 | :width: 100% 11 | :align: center 12 | :alt: CSV viewer 13 | 14 | split screen showing CSV view on the left and Raw view on the right 15 | 16 | .. note:: 17 | 18 | The CSV grid viewer doesn't support collaborative editing yet. 19 | 20 | Here's the CoCalc feature announcement and discussion: `ANN: csv viewer `_. -------------------------------------------------------------------------------- /source/files-search.rst: -------------------------------------------------------------------------------- 1 | .. index:: Files Search 2 | 3 | ============================= 4 | Files Search 5 | ============================= 6 | 7 | .. _ft-search: 8 | 9 | |search| Find 10 | ============= 11 | 12 | You can search for text within a folder. 13 | 14 | * If a file is selected, clicking "Find" will search the folder containing that file. 15 | * You can also select a folder to search using the Explorer. 16 | 17 | There are options for searching subdirectories, case sensitive search, hidden files, and search within a git repository. 18 | 19 | .. figure:: img/files-search.png 20 | :width: 80% 21 | :align: center 22 | :alt: files search 23 | 24 | Files Search 25 | 26 | .. |search| 27 | image:: https://github.com/encharm/Font-Awesome-SVG-PNG/raw/master/black/png/128/search.png 28 | :width: 16px 29 | :alt: search magnifying glass icon 30 | -------------------------------------------------------------------------------- /source/genindex.rst: -------------------------------------------------------------------------------- 1 | .. This file is a placeholder and will be replaced 2 | .. credits: https://stackoverflow.com/a/40579324/54236 3 | 4 | Index 5 | ##### -------------------------------------------------------------------------------- /source/howto/convert-html-to-pdf.rst: -------------------------------------------------------------------------------- 1 | .. index:: Convert HTML to PDF 2 | .. _html2pdf: 3 | 4 | ========================= 5 | Convert HTML to PDF 6 | ========================= 7 | 8 | There are various ways to convert an HTML file you have to a PDF. One that is supported on CoCalc uses the Chrome browser directly:: 9 | 10 | chromium-browser --headless --disable-gpu --no-sandbox --run-all-compositor-stages-before-draw --print-to-pdf="output.pdf" "input.html" 11 | 12 | 13 | Open a :doc:`../terminal` to run it. 14 | You have to replace ``input.html`` by the HTML file and ``output.pdf`` by the name of the PDF file how you want to call it. 15 | Note, that you need to be in the same directory as the files – otherwise use ``cd`` to switch there or prefix the filenames with the corresponding paths. 16 | 17 | PS: for Jupyter Notebooks, there are two export to PDF functionalities. They're in the "File" menu and either use this command under the hood or first convert to LaTeX and then render it. -------------------------------------------------------------------------------- /source/howto/disk-space-warning.rst: -------------------------------------------------------------------------------- 1 | .. index:: Disk space warning 2 | 3 | 4 | ====================== 5 | Disk Space Warning 6 | ====================== 7 | 8 | You may receive a warning that your project is running out of disk space. Here are a few options to consider if the project's storage disk is full. As noted in :doc:`../backups`, project snapshot storage does not count against your disk space quota. 9 | 10 | - Store less data, delete what you don't need. 11 | - Work with more than one project. 12 | - :ref:`Edit your license ` to add more disk space. 13 | - Connect to a :ref:`remote file storage `. 14 | - If the problem is with a Jupyter notebook using too much disk space, click on :doc:`../servers` in the :doc:`../activity-bar`, then "JupyterLab server", then open your file from there, and remove extra content to make the size smaller, then save it. After that you may be able to open it in Cocalc again. 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/howto/front-end-dev.rst: -------------------------------------------------------------------------------- 1 | .. index:: Front-end web development 2 | 3 | .. _front-end-dev: 4 | 5 | 6 | ======================================= 7 | Front-end Web Development 8 | ======================================= 9 | 10 | A CoCalc project is a convenient platform for learning the latest tools for front-end web development, including `Node.js `_, `React `_, and `Next.js `_. 11 | 12 | .. contents:: 13 | :local: 14 | :depth: 2 15 | 16 | General Notes 17 | ============== 18 | 19 | Before starting 20 | 21 | * **BaseURL.** 22 | * **Security Model.** 23 | * **Not for production.** 24 | 25 | Simple Python Server 26 | ==================== 27 | 28 | xxx 29 | 30 | Node.js 31 | ======= 32 | 33 | xxx 34 | 35 | Typescript 36 | ========== 37 | 38 | VSCode 39 | ====== 40 | 41 | 42 | React 43 | ===== 44 | 45 | Nextjs 46 | ====== 47 | 48 | Connecting to a database 49 | ======================== 50 | 51 | Modifying CoCalc Sources 52 | ======================== 53 | 54 | CoCalc Docker Image 55 | ------------------- 56 | 57 | CoCalc.com 58 | -------------------- 59 | 60 | -------------------------------------------------------------------------------- /source/howto/gap-kernel-unavailable.rst: -------------------------------------------------------------------------------- 1 | .. index:: GAP; jupyter kernel unavailable 2 | 3 | .. _gap-kernel-unavailable: 4 | 5 | ================================= 6 | GAP Jupyter kernel not available 7 | ================================= 8 | 9 | For persons wanting to use `GAP - Groups, Algorithms, Programming `_, note that there is a `long-standing bug `_. For that reason, we removed the GAP Jupyter kernel from CoCalc. 10 | 11 | As a workaround, you can work with GAP in a :doc:`Sage worksheet <../sagews>` (file in CoCalc ending in .sagews). Start that file in a single block of code with:: 12 | 13 | %auto 14 | %default_mode gap 15 | 16 | and then run it via shift-return. At this point, you are working with GAP in Sage. 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /source/howto/img/big-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/big-file.png -------------------------------------------------------------------------------- /source/howto/img/c++-compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/c++-compile.png -------------------------------------------------------------------------------- /source/howto/img/clock-is-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/clock-is-off.png -------------------------------------------------------------------------------- /source/howto/img/clock-skew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/clock-skew.png -------------------------------------------------------------------------------- /source/howto/img/compute_server_turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/compute_server_turtle.png -------------------------------------------------------------------------------- /source/howto/img/create-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/create-folder.png -------------------------------------------------------------------------------- /source/howto/img/create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/create-project.png -------------------------------------------------------------------------------- /source/howto/img/download-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/download-config.png -------------------------------------------------------------------------------- /source/howto/img/enable-sheets-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/enable-sheets-api.png -------------------------------------------------------------------------------- /source/howto/img/enter-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/enter-token.png -------------------------------------------------------------------------------- /source/howto/img/example-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/example-spreadsheet.png -------------------------------------------------------------------------------- /source/howto/img/exoplanets-streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/exoplanets-streamlit.png -------------------------------------------------------------------------------- /source/howto/img/files-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/files-upload.png -------------------------------------------------------------------------------- /source/howto/img/fortranmagic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/fortranmagic-1.png -------------------------------------------------------------------------------- /source/howto/img/fortranmagic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/fortranmagic-2.png -------------------------------------------------------------------------------- /source/howto/img/glances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/glances.png -------------------------------------------------------------------------------- /source/howto/img/go-to-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/go-to-link.png -------------------------------------------------------------------------------- /source/howto/img/gsl-compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/gsl-compile.png -------------------------------------------------------------------------------- /source/howto/img/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/htop.png -------------------------------------------------------------------------------- /source/howto/img/hub_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/hub_logo.png -------------------------------------------------------------------------------- /source/howto/img/invite_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/invite_link.png -------------------------------------------------------------------------------- /source/howto/img/ipynb-too-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/ipynb-too-large.png -------------------------------------------------------------------------------- /source/howto/img/jlab-change-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jlab-change-kernel.png -------------------------------------------------------------------------------- /source/howto/img/jlab-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jlab-env.png -------------------------------------------------------------------------------- /source/howto/img/jlab-ext-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jlab-ext-example.png -------------------------------------------------------------------------------- /source/howto/img/jlab-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jlab-launcher.png -------------------------------------------------------------------------------- /source/howto/img/jupyter-classic-change-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jupyter-classic-change-kernel.png -------------------------------------------------------------------------------- /source/howto/img/jupyter-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jupyter-kernel.png -------------------------------------------------------------------------------- /source/howto/img/jupyter-select-kernel-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jupyter-select-kernel-lg.png -------------------------------------------------------------------------------- /source/howto/img/jupyter-turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/jupyter-turtle.png -------------------------------------------------------------------------------- /source/howto/img/kernel_SIGKILL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/kernel_SIGKILL.png -------------------------------------------------------------------------------- /source/howto/img/latex-unzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/latex-unzip.png -------------------------------------------------------------------------------- /source/howto/img/latex-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/latex-upload.png -------------------------------------------------------------------------------- /source/howto/img/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/mongodb.png -------------------------------------------------------------------------------- /source/howto/img/neuron-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/neuron-jupyter.png -------------------------------------------------------------------------------- /source/howto/img/nteract-turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/nteract-turtle.png -------------------------------------------------------------------------------- /source/howto/img/oauth-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/oauth-sign-in.png -------------------------------------------------------------------------------- /source/howto/img/octave-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/octave-jupyter.png -------------------------------------------------------------------------------- /source/howto/img/octave-x11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/octave-x11.png -------------------------------------------------------------------------------- /source/howto/img/only-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/only-public.png -------------------------------------------------------------------------------- /source/howto/img/overleaf-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/overleaf-export.png -------------------------------------------------------------------------------- /source/howto/img/plotly-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/plotly-dash.png -------------------------------------------------------------------------------- /source/howto/img/pluto-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/pluto-1.jpg -------------------------------------------------------------------------------- /source/howto/img/pluto-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/pluto-2.jpg -------------------------------------------------------------------------------- /source/howto/img/pluto-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/pluto-launch.png -------------------------------------------------------------------------------- /source/howto/img/project-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/project-name.png -------------------------------------------------------------------------------- /source/howto/img/ruby-fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/ruby-fe.png -------------------------------------------------------------------------------- /source/howto/img/second-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/second-run.png -------------------------------------------------------------------------------- /source/howto/img/shiny-rmeans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/shiny-rmeans.png -------------------------------------------------------------------------------- /source/howto/img/split-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/split-ls.png -------------------------------------------------------------------------------- /source/howto/img/split-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/split-py.png -------------------------------------------------------------------------------- /source/howto/img/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/top.png -------------------------------------------------------------------------------- /source/howto/img/tt-export-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/tt-export-api.png -------------------------------------------------------------------------------- /source/howto/img/tt-export-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/tt-export-button.png -------------------------------------------------------------------------------- /source/howto/img/tt-exported-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/tt-exported-json.png -------------------------------------------------------------------------------- /source/howto/img/turtle-spirals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/turtle-spirals.png -------------------------------------------------------------------------------- /source/howto/img/upload-py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/upload-py.png -------------------------------------------------------------------------------- /source/howto/img/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/howto/img/verify.png -------------------------------------------------------------------------------- /source/howto/jupyter-plot-png-svg.rst: -------------------------------------------------------------------------------- 1 | .. index::Jupyter Notebooks;Plots SVG PNG 2 | 3 | ======================================== 4 | SVG and PNG plots in Jupyter Notebooks 5 | ======================================== 6 | 7 | For samples and comparison of plots in a Cocalc Jupyter notebook, see this example: `SVG or PNG plots in CoCalc Notebooks `_. 8 | 9 | These examples are for a notebook using one of the Python 3 Jupyter kernels. 10 | -------------------------------------------------------------------------------- /source/howto/license-doesnt-work.rst: -------------------------------------------------------------------------------- 1 | .. index:: License Does Not Work 2 | .. _lic_not_work: 3 | 4 | ============================== 5 | License Doesn't Work 6 | ============================== 7 | 8 | If you buy a license, in most cases nothing happens automatically. So it may appear that the license isn't working. 9 | 10 | To add resources to a project after you buy a license, 11 | go to settings for your project and :ref:`apply the license to your project `. Be sure to restart the project after applying the license. Do these steps for each project that you would like to be upgraded. Exception: if you are managing a course with CoCalc, follow the steps here: :ref:`install your license in the course file ` to upgrade both the instructor project and all student projects. 12 | 13 | At any time, you can visit https://cocalc.com/settings/licenses to see how all the licenses you manage are allocated across your projects. -------------------------------------------------------------------------------- /source/howto/orphan.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | .. toctree:: 4 | :hidden: 5 | 6 | cant-save 7 | disk-space-warning 8 | front-end-dev 9 | nbgrader 10 | ../account/licenses 11 | ../account/public-files 12 | ../account/purchases 13 | ../account/ssh 14 | ../account/support 15 | ../chatgpt 16 | ../cocalc-cloud 17 | ../platform-news 18 | -------------------------------------------------------------------------------- /source/howto/run-r-step-by-step.rst: -------------------------------------------------------------------------------- 1 | .. index:: Jupyter Notebooks; R step by step 2 | .. index:: R; jupytext 3 | 4 | .. _run-r-step-by-step: 5 | 6 | 7 | ======================================= 8 | R Step-by-Step with Jupyter 9 | ======================================= 10 | 11 | Suppose you have an R script that you would like to debug, or step through line by line collaboratively with others. 12 | 13 | You can do this using a Jupyter notebook and CoCalc's built-in collaboration. 14 | Start by using the `jupytext `_ command to convert a script to blocks of code in cells in a notebook. 15 | 16 | If your R script is ``rscript.R``, then do the following: 17 | 18 | #. Upload ``rscript.R`` to a CoCalc project. 19 | 20 | #. Open a :doc:`terminal <../terminal>` and run the commands:: 21 | 22 | jupytext rscript.r --to ipynb 23 | open rscript.ipynb 24 | 25 | #. In the Jupyter notebook, select the "R (system-wide)" kernel. You will see the script separated into multiple cells in the notebook. 26 | 27 | You can then step through the script by running one cell in the notebook at a time. 28 | -------------------------------------------------------------------------------- /source/howto/sudo-make-install.rst: -------------------------------------------------------------------------------- 1 | .. index:: Install compiled software 2 | .. _sudo-make-install: 3 | 4 | ================================================== 5 | Install compiled software 6 | ================================================== 7 | 8 | By default, it is not possible to install any software globally via ``sudo`` or other mechanisms. 9 | 10 | However, standard `GNU Make `_ (and other) build frameworks allow to customize the install target, 11 | by setting a ``prefix`` for the ``bin``, ``lib``, ``share``, … directories. 12 | 13 | This means, modifying instructions like this:: 14 | 15 | $ ./configure 16 | $ make 17 | $ sudo make install 18 | 19 | 20 | to be similar to the following:: 21 | 22 | $ ./configure --prefix=$HOME/.local 23 | $ make 24 | $ make install 25 | 26 | should work! 27 | 28 | Then, the compiled software will end up in your ``~/.local`` directory, i.e. binaries will be in ``~/.local/bin/…`` and hence be in your ``$PATH``. 29 | 30 | -------------------------------------------------------------------------------- /source/howto/trouble.rst: -------------------------------------------------------------------------------- 1 | .. index:: Troubleshooting 2 | .. index:: Problems 3 | 4 | ======================== 5 | Troubleshooting 6 | ======================== 7 | 8 | This collection of guides summarizes ways to overcome certain problems. 9 | If you can't access CoCalc or end up stuck looking at "Loading ...", check out :doc:`connectivity-issues`. 10 | Furthermore, there are explanations about crashing worksheets, 11 | understanding low memory warnings and how to triage situations where you can't find your project. 12 | 13 | .. toctree:: 14 | :maxdepth: 1 15 | 16 | cant-save.rst 17 | clock-is-off.rst 18 | connectivity-issues.rst 19 | disk-space-warning.rst 20 | file-too-large.rst 21 | gap-kernel-unavailable.rst 22 | sudo-make-install.rst 23 | jupyter-kernel-terminated 24 | license-doesnt-work.rst 25 | low-memory.rst 26 | slow-worksheet.rst 27 | sage-question.rst 28 | recover-deleted-file.rst 29 | missing-project.rst 30 | -------------------------------------------------------------------------------- /source/img/AI_Jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_Jupyter.png -------------------------------------------------------------------------------- /source/img/AI_at_mention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_at_mention.png -------------------------------------------------------------------------------- /source/img/AI_at_mention_Haiku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_at_mention_Haiku.png -------------------------------------------------------------------------------- /source/img/AI_formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_formula.png -------------------------------------------------------------------------------- /source/img/AI_help_me_fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_help_me_fix.png -------------------------------------------------------------------------------- /source/img/AI_reply_to_response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_reply_to_response.png -------------------------------------------------------------------------------- /source/img/AI_response_in_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_response_in_chat.png -------------------------------------------------------------------------------- /source/img/AI_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_terminal.png -------------------------------------------------------------------------------- /source/img/AI_what_is_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/AI_what_is_sent.png -------------------------------------------------------------------------------- /source/img/LLM_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/LLM_charge.png -------------------------------------------------------------------------------- /source/img/LLM_choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/LLM_choice.png -------------------------------------------------------------------------------- /source/img/R_IDE_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/R_IDE_server.png -------------------------------------------------------------------------------- /source/img/TimeTravel_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/TimeTravel_button.png -------------------------------------------------------------------------------- /source/img/TimeTravel_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/TimeTravel_changes.png -------------------------------------------------------------------------------- /source/img/TimeTravel_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/TimeTravel_frame.png -------------------------------------------------------------------------------- /source/img/TimeTravel_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/TimeTravel_git.png -------------------------------------------------------------------------------- /source/img/account-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-api-key.png -------------------------------------------------------------------------------- /source/img/account-api-key2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-api-key2.png -------------------------------------------------------------------------------- /source/img/account-api-key3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-api-key3.png -------------------------------------------------------------------------------- /source/img/account-dropdown-closeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-dropdown-closeup.png -------------------------------------------------------------------------------- /source/img/account-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-dropdown.png -------------------------------------------------------------------------------- /source/img/account-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/account-toolbar.png -------------------------------------------------------------------------------- /source/img/activity-bar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/activity-bar-2.png -------------------------------------------------------------------------------- /source/img/activity-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/activity-bar.png -------------------------------------------------------------------------------- /source/img/add-lic-1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/add-lic-1b.png -------------------------------------------------------------------------------- /source/img/add-lic-2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/add-lic-2b.png -------------------------------------------------------------------------------- /source/img/add-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/add-star.png -------------------------------------------------------------------------------- /source/img/add_credit_voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/add_credit_voucher.png -------------------------------------------------------------------------------- /source/img/allow_collaborator_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/allow_collaborator_control.png -------------------------------------------------------------------------------- /source/img/annotated_empty_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_empty_project.png -------------------------------------------------------------------------------- /source/img/annotated_frame_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_frame_change.png -------------------------------------------------------------------------------- /source/img/annotated_frame_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_frame_editor.png -------------------------------------------------------------------------------- /source/img/annotated_jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_jupyter_notebook.png -------------------------------------------------------------------------------- /source/img/annotated_multiple_frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_multiple_frames.png -------------------------------------------------------------------------------- /source/img/annotated_new_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_new_file.png -------------------------------------------------------------------------------- /source/img/annotated_search_pin_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_search_pin_menu.png -------------------------------------------------------------------------------- /source/img/annotated_side_chat_AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_side_chat_AI.png -------------------------------------------------------------------------------- /source/img/annotated_timetravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/annotated_timetravel.png -------------------------------------------------------------------------------- /source/img/antd-icons/avatar-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/avatar-sample.png -------------------------------------------------------------------------------- /source/img/antd-icons/comment-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/comment-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/dashboard-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/dashboard-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/disconnect-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/disconnect-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/lock-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/lock-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/pages-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/pages-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/public-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/public-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/remove-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/remove-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/run-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/run-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/search-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/stop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/stop-icon.png -------------------------------------------------------------------------------- /source/img/antd-icons/sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/antd-icons/sync-icon.png -------------------------------------------------------------------------------- /source/img/before-create-vouchers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/before-create-vouchers.png -------------------------------------------------------------------------------- /source/img/boost-add-2GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/boost-add-2GB.png -------------------------------------------------------------------------------- /source/img/cfs_access_estimates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_access_estimates.png -------------------------------------------------------------------------------- /source/img/cfs_backup_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_backup_h.png -------------------------------------------------------------------------------- /source/img/cfs_estimate_plots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_estimate_plots.png -------------------------------------------------------------------------------- /source/img/cfs_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_location.png -------------------------------------------------------------------------------- /source/img/cfs_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_move.png -------------------------------------------------------------------------------- /source/img/cfs_terminal_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_terminal_stats.png -------------------------------------------------------------------------------- /source/img/cfs_terminal_warmup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cfs_terminal_warmup.png -------------------------------------------------------------------------------- /source/img/ch-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-2.png -------------------------------------------------------------------------------- /source/img/ch-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-4.png -------------------------------------------------------------------------------- /source/img/ch-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-5.png -------------------------------------------------------------------------------- /source/img/ch-ask-pandas-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-ask-pandas-question.png -------------------------------------------------------------------------------- /source/img/ch-cocalc-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-cocalc-features.png -------------------------------------------------------------------------------- /source/img/ch-copy-python-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-copy-python-code.png -------------------------------------------------------------------------------- /source/img/ch-explain-code-jup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-explain-code-jup.png -------------------------------------------------------------------------------- /source/img/ch-fix-jup-err.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-fix-jup-err.png -------------------------------------------------------------------------------- /source/img/ch-linux-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-linux-term.png -------------------------------------------------------------------------------- /source/img/ch-top-of-frame-ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ch-top-of-frame-ed.png -------------------------------------------------------------------------------- /source/img/chat-gpt-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/chat-gpt-tour.png -------------------------------------------------------------------------------- /source/img/chatroom-formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/chatroom-formula.png -------------------------------------------------------------------------------- /source/img/chatroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/chatroom.png -------------------------------------------------------------------------------- /source/img/close_and_halt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/close_and_halt.png -------------------------------------------------------------------------------- /source/img/cocalc-custom-tensorflow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-custom-tensorflow2.png -------------------------------------------------------------------------------- /source/img/cocalc-doc-logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-doc-logo.svg.png -------------------------------------------------------------------------------- /source/img/cocalc-intro-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-intro-1.png -------------------------------------------------------------------------------- /source/img/cocalc-ipywidgets-sync-2019-05-08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-ipywidgets-sync-2019-05-08.gif -------------------------------------------------------------------------------- /source/img/cocalc-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-news.png -------------------------------------------------------------------------------- /source/img/cocalc-screenshot-20200123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/cocalc-screenshot-20200123.png -------------------------------------------------------------------------------- /source/img/code-cells-in-wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/code-cells-in-wb.png -------------------------------------------------------------------------------- /source/img/compute_server_DISPLAY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_DISPLAY.png -------------------------------------------------------------------------------- /source/img/compute_server_applications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_applications.png -------------------------------------------------------------------------------- /source/img/compute_server_confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_confirmation.png -------------------------------------------------------------------------------- /source/img/compute_server_cost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_cost.png -------------------------------------------------------------------------------- /source/img/compute_server_cost_running_vs_stopped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_cost_running_vs_stopped.png -------------------------------------------------------------------------------- /source/img/compute_server_create_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_create_dialog.png -------------------------------------------------------------------------------- /source/img/compute_server_creating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_creating.png -------------------------------------------------------------------------------- /source/img/compute_server_creating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_creating_2.png -------------------------------------------------------------------------------- /source/img/compute_server_direct_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_direct_connect.png -------------------------------------------------------------------------------- /source/img/compute_server_escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_escape.png -------------------------------------------------------------------------------- /source/img/compute_server_fast_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_fast_data.png -------------------------------------------------------------------------------- /source/img/compute_server_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_files.png -------------------------------------------------------------------------------- /source/img/compute_server_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_kernel.png -------------------------------------------------------------------------------- /source/img/compute_server_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_notebook.png -------------------------------------------------------------------------------- /source/img/compute_server_project_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_project_files.png -------------------------------------------------------------------------------- /source/img/compute_server_proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_proxy.png -------------------------------------------------------------------------------- /source/img/compute_server_select_kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_select_kernel.png -------------------------------------------------------------------------------- /source/img/compute_server_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_status.png -------------------------------------------------------------------------------- /source/img/compute_server_sudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_sudo.png -------------------------------------------------------------------------------- /source/img/compute_server_sync_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_sync_files.png -------------------------------------------------------------------------------- /source/img/compute_server_syncing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_syncing.png -------------------------------------------------------------------------------- /source/img/compute_server_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_terminal.png -------------------------------------------------------------------------------- /source/img/compute_server_web_applications_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/compute_server_web_applications_advanced.png -------------------------------------------------------------------------------- /source/img/configure_voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/configure_voucher.png -------------------------------------------------------------------------------- /source/img/create-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/create-timer.png -------------------------------------------------------------------------------- /source/img/create-vouchers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/create-vouchers-1.png -------------------------------------------------------------------------------- /source/img/create_voucher_from_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/create_voucher_from_cart.png -------------------------------------------------------------------------------- /source/img/csv-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/csv-viewer.png -------------------------------------------------------------------------------- /source/img/dark-mode-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/dark-mode-example.png -------------------------------------------------------------------------------- /source/img/dark-mode-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/dark-mode-setting.png -------------------------------------------------------------------------------- /source/img/details-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/details-expanded.png -------------------------------------------------------------------------------- /source/img/details-summary-only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/details-summary-only.png -------------------------------------------------------------------------------- /source/img/edit-terminal-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/edit-terminal-split.png -------------------------------------------------------------------------------- /source/img/emoji-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/emoji-list.png -------------------------------------------------------------------------------- /source/img/enter-voucher-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/enter-voucher-code.png -------------------------------------------------------------------------------- /source/img/explain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explain2.png -------------------------------------------------------------------------------- /source/img/explain3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explain3.png -------------------------------------------------------------------------------- /source/img/explain4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explain4.png -------------------------------------------------------------------------------- /source/img/explorer-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explorer-a.png -------------------------------------------------------------------------------- /source/img/explorer-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explorer-b.png -------------------------------------------------------------------------------- /source/img/explorer-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explorer-c.png -------------------------------------------------------------------------------- /source/img/explorer-tour2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/explorer-tour2.png -------------------------------------------------------------------------------- /source/img/export-file-use-times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/export-file-use-times.png -------------------------------------------------------------------------------- /source/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/favicon-32x32.png -------------------------------------------------------------------------------- /source/img/file_shift_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/file_shift_click.png -------------------------------------------------------------------------------- /source/img/files-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/files-search.png -------------------------------------------------------------------------------- /source/img/files-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/files-toolbar.png -------------------------------------------------------------------------------- /source/img/first-steps-hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/first-steps-hide.png -------------------------------------------------------------------------------- /source/img/first-steps-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/first-steps-message.png -------------------------------------------------------------------------------- /source/img/flyouts/explorer-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/explorer-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/find-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/find-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/log-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/log-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/new-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/new-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/processes-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/processes-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/servers-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/servers-flyout.png -------------------------------------------------------------------------------- /source/img/flyouts/settings-flyout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/flyouts/settings-flyout.png -------------------------------------------------------------------------------- /source/img/font-options-ipynb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/font-options-ipynb1.png -------------------------------------------------------------------------------- /source/img/font-options-ipynb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/font-options-ipynb2.png -------------------------------------------------------------------------------- /source/img/font-options-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/font-options-md.png -------------------------------------------------------------------------------- /source/img/frame-editor-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/frame-editor-python.png -------------------------------------------------------------------------------- /source/img/frame_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/frame_focus.png -------------------------------------------------------------------------------- /source/img/fullscreen_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/fullscreen_button.png -------------------------------------------------------------------------------- /source/img/fullscreen_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/fullscreen_mode.png -------------------------------------------------------------------------------- /source/img/fullscreen_partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/fullscreen_partial.png -------------------------------------------------------------------------------- /source/img/getting-started/2021-11-welcome-sign-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/2021-11-welcome-sign-in.png -------------------------------------------------------------------------------- /source/img/getting-started/conn-ind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/conn-ind.png -------------------------------------------------------------------------------- /source/img/getting-started/conn-stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/conn-stat.png -------------------------------------------------------------------------------- /source/img/getting-started/create-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/create-notebook.png -------------------------------------------------------------------------------- /source/img/getting-started/create-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/create-project.png -------------------------------------------------------------------------------- /source/img/getting-started/process-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/process-info.png -------------------------------------------------------------------------------- /source/img/getting-started/proj-1-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/proj-1-a.png -------------------------------------------------------------------------------- /source/img/getting-started/run-first-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/run-first-cell.png -------------------------------------------------------------------------------- /source/img/getting-started/select-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/select-kernel.png -------------------------------------------------------------------------------- /source/img/getting-started/sign-up-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/sign-up-1.png -------------------------------------------------------------------------------- /source/img/getting-started/sign-up-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/sign-up-2.png -------------------------------------------------------------------------------- /source/img/getting-started/view-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/view-projects.png -------------------------------------------------------------------------------- /source/img/getting-started/welcome-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/getting-started/welcome-sign-up.png -------------------------------------------------------------------------------- /source/img/icons/bullhorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/bullhorn.png -------------------------------------------------------------------------------- /source/img/icons/docs-counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/docs-counter.png -------------------------------------------------------------------------------- /source/img/icons/envelope-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/envelope-icon.png -------------------------------------------------------------------------------- /source/img/icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/expand.png -------------------------------------------------------------------------------- /source/img/icons/insert-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/insert-icon.png -------------------------------------------------------------------------------- /source/img/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/lock.png -------------------------------------------------------------------------------- /source/img/icons/mask-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/mask-icon.png -------------------------------------------------------------------------------- /source/img/icons/present-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/present-icon.png -------------------------------------------------------------------------------- /source/img/icons/servers-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/servers-icon.png -------------------------------------------------------------------------------- /source/img/icons/upgrades-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/upgrades-icon.png -------------------------------------------------------------------------------- /source/img/icons/users-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/icons/users-icon.png -------------------------------------------------------------------------------- /source/img/incompat-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/incompat-licenses.png -------------------------------------------------------------------------------- /source/img/institute_license_applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/institute_license_applied.png -------------------------------------------------------------------------------- /source/img/institute_pays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/institute_pays.png -------------------------------------------------------------------------------- /source/img/ipynb-too-large-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/ipynb-too-large-help.png -------------------------------------------------------------------------------- /source/img/jn_TOC_and_trust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jn_TOC_and_trust.png -------------------------------------------------------------------------------- /source/img/jn_editing_cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jn_editing_cells.png -------------------------------------------------------------------------------- /source/img/jn_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jn_help.png -------------------------------------------------------------------------------- /source/img/jn_running_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jn_running_code.png -------------------------------------------------------------------------------- /source/img/jupyter/cell-insert-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/cell-insert-bar.png -------------------------------------------------------------------------------- /source/img/jupyter/cell-insert-chatgpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/cell-insert-chatgpt.png -------------------------------------------------------------------------------- /source/img/jupyter/cocalc-widgets-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/cocalc-widgets-a.png -------------------------------------------------------------------------------- /source/img/jupyter/delete-protect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/delete-protect.png -------------------------------------------------------------------------------- /source/img/jupyter/edit-protect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/edit-protect.png -------------------------------------------------------------------------------- /source/img/jupyter/jup-cell-num-timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jup-cell-num-timing.png -------------------------------------------------------------------------------- /source/img/jupyter/jup-toc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jup-toc2.png -------------------------------------------------------------------------------- /source/img/jupyter/jupyter-halt-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jupyter-halt-button.png -------------------------------------------------------------------------------- /source/img/jupyter/jupyter-notebook-cocalc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jupyter-notebook-cocalc-1.png -------------------------------------------------------------------------------- /source/img/jupyter/jupyter-notebook-cocalc-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jupyter-notebook-cocalc-2.png -------------------------------------------------------------------------------- /source/img/jupyter/jupyter-wav-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/jupyter-wav-2.png -------------------------------------------------------------------------------- /source/img/jupyter/place-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/place-image.png -------------------------------------------------------------------------------- /source/img/jupyter/plain-jupyter-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/plain-jupyter-server.png -------------------------------------------------------------------------------- /source/img/jupyter/slideshow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/slideshow-1.png -------------------------------------------------------------------------------- /source/img/jupyter/slideshow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/slideshow-2.png -------------------------------------------------------------------------------- /source/img/jupyter/slideshow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/slideshow-3.png -------------------------------------------------------------------------------- /source/img/jupyter/switch-to-classical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/switch-to-classical.png -------------------------------------------------------------------------------- /source/img/jupyter/switch-to-cocalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/jupyter/switch-to-cocalc.png -------------------------------------------------------------------------------- /source/img/latex-asymptote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-asymptote.png -------------------------------------------------------------------------------- /source/img/latex-gnuplot-shell-escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-gnuplot-shell-escape.png -------------------------------------------------------------------------------- /source/img/latex-knitr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-knitr.png -------------------------------------------------------------------------------- /source/img/latex-multifile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-multifile.png -------------------------------------------------------------------------------- /source/img/latex-pstricks-demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-pstricks-demo3.png -------------------------------------------------------------------------------- /source/img/latex-pstricks-demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-pstricks-demo4.png -------------------------------------------------------------------------------- /source/img/latex-pythontex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-pythontex.png -------------------------------------------------------------------------------- /source/img/latex-sagetex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-sagetex.png -------------------------------------------------------------------------------- /source/img/latex-spellcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-spellcheck.png -------------------------------------------------------------------------------- /source/img/latex-spellcheck123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-spellcheck123.jpg -------------------------------------------------------------------------------- /source/img/latex-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-ui.png -------------------------------------------------------------------------------- /source/img/latex-word-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/latex-word-count.png -------------------------------------------------------------------------------- /source/img/license_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/license_expanded.png -------------------------------------------------------------------------------- /source/img/licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/licenses.png -------------------------------------------------------------------------------- /source/img/markdown-library-numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/markdown-library-numbers.png -------------------------------------------------------------------------------- /source/img/markdown-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/markdown-sample.png -------------------------------------------------------------------------------- /source/img/md-fenced-exec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/md-fenced-exec.png -------------------------------------------------------------------------------- /source/img/md-fenced-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/md-fenced-info.png -------------------------------------------------------------------------------- /source/img/md-text-vs-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/md-text-vs-code.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-autograded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-autograded.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-code-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-code-snippet.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-contents.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-cq-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-cq-code.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-create-assg-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-create-assg-0.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-create-assg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-create-assg-1.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-create-assg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-create-assg.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-gen-sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-gen-sv.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-manual-grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-manual-grade.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-new-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-new-notebook.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-open-assg-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-open-assg-folder.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-student-grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-student-grade.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbg-view-ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbg-view-ca.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_GRADEmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_GRADEmd.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_UI_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_UI_elements.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_assign.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_fully_graded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_fully_graded.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_manual.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_return.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_student_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_student_version.png -------------------------------------------------------------------------------- /source/img/nbgrader/nbgrader_templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/nbgrader_templates.png -------------------------------------------------------------------------------- /source/img/nbgrader/run-nbgrader-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/run-nbgrader-3.png -------------------------------------------------------------------------------- /source/img/nbgrader/run-nbgrader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/run-nbgrader.png -------------------------------------------------------------------------------- /source/img/nbgrader/show_nbgrader_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/show_nbgrader_UI.png -------------------------------------------------------------------------------- /source/img/nbgrader/sync-grades-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/nbgrader/sync-grades-2.png -------------------------------------------------------------------------------- /source/img/new-config-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/new-config-page.png -------------------------------------------------------------------------------- /source/img/new-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/new-timer.png -------------------------------------------------------------------------------- /source/img/no_sudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/no_sudo.png -------------------------------------------------------------------------------- /source/img/not-rich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/not-rich.png -------------------------------------------------------------------------------- /source/img/obtain_credit_voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/obtain_credit_voucher.png -------------------------------------------------------------------------------- /source/img/open-pages-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/open-pages-view.png -------------------------------------------------------------------------------- /source/img/open-search-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/open-search-view.png -------------------------------------------------------------------------------- /source/img/open_sharing_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/open_sharing_link.png -------------------------------------------------------------------------------- /source/img/overview-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/overview-map.png -------------------------------------------------------------------------------- /source/img/page-one-of-two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/page-one-of-two.png -------------------------------------------------------------------------------- /source/img/paygo01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/paygo01.png -------------------------------------------------------------------------------- /source/img/paygo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/paygo02.png -------------------------------------------------------------------------------- /source/img/paygo03b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/paygo03b.png -------------------------------------------------------------------------------- /source/img/paygo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/paygo4.png -------------------------------------------------------------------------------- /source/img/paygo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/paygo5.png -------------------------------------------------------------------------------- /source/img/peer_grading_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/peer_grading_enable.png -------------------------------------------------------------------------------- /source/img/peer_grading_grades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/peer_grading_grades.png -------------------------------------------------------------------------------- /source/img/peer_grading_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/peer_grading_guide.png -------------------------------------------------------------------------------- /source/img/pin_software_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/pin_software_environment.png -------------------------------------------------------------------------------- /source/img/plus-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/plus-new.png -------------------------------------------------------------------------------- /source/img/processes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/processes.png -------------------------------------------------------------------------------- /source/img/proj-license-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/proj-license-key.png -------------------------------------------------------------------------------- /source/img/project-files/file-action-copy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/file-action-copy-1.png -------------------------------------------------------------------------------- /source/img/project-files/file-action-copy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/file-action-copy-2.png -------------------------------------------------------------------------------- /source/img/project-files/file-action-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/file-action-move.png -------------------------------------------------------------------------------- /source/img/project-files/file-actions-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/file-actions-multiple.png -------------------------------------------------------------------------------- /source/img/project-files/file-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/file-actions.png -------------------------------------------------------------------------------- /source/img/project-files/files-filtered-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/files-filtered-mask.png -------------------------------------------------------------------------------- /source/img/project-files/files-filtered-nomask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/files-filtered-nomask.png -------------------------------------------------------------------------------- /source/img/project-files/files-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/files-lib.png -------------------------------------------------------------------------------- /source/img/project-files/files-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/files-list.png -------------------------------------------------------------------------------- /source/img/project-files/files-with-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/files-with-hidden.png -------------------------------------------------------------------------------- /source/img/project-files/mini-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-files/mini-terminal.png -------------------------------------------------------------------------------- /source/img/project-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-home.png -------------------------------------------------------------------------------- /source/img/project-info/project-info-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-info/project-info-table.png -------------------------------------------------------------------------------- /source/img/project-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-library.png -------------------------------------------------------------------------------- /source/img/project-list/my-first-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/my-first-project.png -------------------------------------------------------------------------------- /source/img/project-list/proj-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/proj-01.png -------------------------------------------------------------------------------- /source/img/project-list/proj-02a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/proj-02a.png -------------------------------------------------------------------------------- /source/img/project-list/proj-03a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/proj-03a.png -------------------------------------------------------------------------------- /source/img/project-list/proj-04a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/proj-04a.png -------------------------------------------------------------------------------- /source/img/project-list/projects-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-list/projects-tour.png -------------------------------------------------------------------------------- /source/img/project-log-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-log-filter.png -------------------------------------------------------------------------------- /source/img/project-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-log.png -------------------------------------------------------------------------------- /source/img/project-settings/add-collabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/add-collabs.png -------------------------------------------------------------------------------- /source/img/project-settings/addingprojkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/addingprojkey.png -------------------------------------------------------------------------------- /source/img/project-settings/current-collabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/current-collabs.png -------------------------------------------------------------------------------- /source/img/project-settings/deleted-and-hidden-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/deleted-and-hidden-a.png -------------------------------------------------------------------------------- /source/img/project-settings/delproj1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/delproj1.png -------------------------------------------------------------------------------- /source/img/project-settings/delproj2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/delproj2.png -------------------------------------------------------------------------------- /source/img/project-settings/email-invitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/email-invitation.png -------------------------------------------------------------------------------- /source/img/project-settings/env-vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/env-vars.png -------------------------------------------------------------------------------- /source/img/project-settings/feat-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/feat-config.png -------------------------------------------------------------------------------- /source/img/project-settings/hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/hidden.png -------------------------------------------------------------------------------- /source/img/project-settings/hide-or-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/hide-or-delete.png -------------------------------------------------------------------------------- /source/img/project-settings/image-hover-project-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/image-hover-project-tab.png -------------------------------------------------------------------------------- /source/img/project-settings/image-in-shared-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/image-in-shared-list.png -------------------------------------------------------------------------------- /source/img/project-settings/image-in-shared-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/image-in-shared-project.png -------------------------------------------------------------------------------- /source/img/project-settings/jupyter-server-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/jupyter-server-a.png -------------------------------------------------------------------------------- /source/img/project-settings/jupyterlab-server-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/jupyterlab-server-a.png -------------------------------------------------------------------------------- /source/img/project-settings/open-upgrade-contributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/open-upgrade-contributions.png -------------------------------------------------------------------------------- /source/img/project-settings/proj-name-etc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/proj-name-etc.png -------------------------------------------------------------------------------- /source/img/project-settings/project-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-control.png -------------------------------------------------------------------------------- /source/img/project-settings/project-image-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-image-list.png -------------------------------------------------------------------------------- /source/img/project-settings/project-match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-match.png -------------------------------------------------------------------------------- /source/img/project-settings/project-restart-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-restart-confirm.png -------------------------------------------------------------------------------- /source/img/project-settings/project-restarting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-restarting.png -------------------------------------------------------------------------------- /source/img/project-settings/project-settings-cloud-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/project-settings-cloud-storage.png -------------------------------------------------------------------------------- /source/img/project-settings/restart-sagews-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/restart-sagews-a.png -------------------------------------------------------------------------------- /source/img/project-settings/selected-image-experimental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/selected-image-experimental.png -------------------------------------------------------------------------------- /source/img/project-settings/show-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/show-deleted.png -------------------------------------------------------------------------------- /source/img/project-settings/show-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/show-hidden.png -------------------------------------------------------------------------------- /source/img/project-settings/ssh-user-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/ssh-user-host.png -------------------------------------------------------------------------------- /source/img/project-settings/stop-project-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/stop-project-confirm.png -------------------------------------------------------------------------------- /source/img/project-settings/title-and-desc-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/title-and-desc-a.png -------------------------------------------------------------------------------- /source/img/project-settings/upgrade-contributions-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/upgrade-contributions-full.png -------------------------------------------------------------------------------- /source/img/project-settings/upgrade-contributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/upgrade-contributions.png -------------------------------------------------------------------------------- /source/img/project-settings/usage-and-quotas-hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/usage-and-quotas-hint.png -------------------------------------------------------------------------------- /source/img/project-settings/usage-and-quotas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/usage-and-quotas.png -------------------------------------------------------------------------------- /source/img/project-settings/usernameathost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-settings/usernameathost.png -------------------------------------------------------------------------------- /source/img/project-toolbar-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-toolbar-projects.png -------------------------------------------------------------------------------- /source/img/project-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/project-toolbar.png -------------------------------------------------------------------------------- /source/img/projects-tour2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/projects-tour2.png -------------------------------------------------------------------------------- /source/img/publish_listed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/publish_listed.png -------------------------------------------------------------------------------- /source/img/publish_unlisted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/publish_unlisted.png -------------------------------------------------------------------------------- /source/img/publish_using_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/publish_using_explorer.png -------------------------------------------------------------------------------- /source/img/published_file_in_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/published_file_in_explorer.png -------------------------------------------------------------------------------- /source/img/quarto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/quarto.jpeg -------------------------------------------------------------------------------- /source/img/quarto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/quarto.png -------------------------------------------------------------------------------- /source/img/r-markdown-library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/r-markdown-library.png -------------------------------------------------------------------------------- /source/img/redeem-a-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/redeem-a-code.png -------------------------------------------------------------------------------- /source/img/reference-links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/reference-links.png -------------------------------------------------------------------------------- /source/img/regex-search-ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/regex-search-ed.png -------------------------------------------------------------------------------- /source/img/remove-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/remove-star.png -------------------------------------------------------------------------------- /source/img/restrict_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/restrict_students.png -------------------------------------------------------------------------------- /source/img/rich-text-latex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/rich-text-latex-1.png -------------------------------------------------------------------------------- /source/img/rich-text-latex-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/rich-text-latex-2.png -------------------------------------------------------------------------------- /source/img/rmd-pdf-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/rmd-pdf-example.png -------------------------------------------------------------------------------- /source/img/sagews-side-chat-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews-side-chat-a.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-1q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-1q.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-2q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-2q.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-example-tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-example-tt.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-example.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-help-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-help-0.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-help-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-help-1.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-help-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-help-2.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-help.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-stacktrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-stacktrace.png -------------------------------------------------------------------------------- /source/img/sagews/sagews-timetravel-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/sagews-timetravel-a.png -------------------------------------------------------------------------------- /source/img/sagews/tabcomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/sagews/tabcomplete.png -------------------------------------------------------------------------------- /source/img/search-and-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/search-and-pages.png -------------------------------------------------------------------------------- /source/img/servers-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/servers-pane.png -------------------------------------------------------------------------------- /source/img/set-font-color-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/set-font-color-1.png -------------------------------------------------------------------------------- /source/img/set-font-color-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/set-font-color-2.png -------------------------------------------------------------------------------- /source/img/share-at-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/share-at-landing.png -------------------------------------------------------------------------------- /source/img/share-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/share-dialog.png -------------------------------------------------------------------------------- /source/img/share-home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/share-home-page.png -------------------------------------------------------------------------------- /source/img/shared-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/shared-folder.png -------------------------------------------------------------------------------- /source/img/slides-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides-pages.png -------------------------------------------------------------------------------- /source/img/slides/insert-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides/insert-slide.png -------------------------------------------------------------------------------- /source/img/slides/present-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides/present-dropdown.png -------------------------------------------------------------------------------- /source/img/slides/slides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides/slides.png -------------------------------------------------------------------------------- /source/img/slides/start-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides/start-presentation.png -------------------------------------------------------------------------------- /source/img/slides/toggle-slides-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/slides/toggle-slides-toolbar.png -------------------------------------------------------------------------------- /source/img/snippets/custom-snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/snippets/custom-snippets.png -------------------------------------------------------------------------------- /source/img/snippets/snippets-btn-ipynb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/snippets/snippets-btn-ipynb.png -------------------------------------------------------------------------------- /source/img/snippets/snippets-btn-sagews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/snippets/snippets-btn-sagews.png -------------------------------------------------------------------------------- /source/img/snippets/snippets-langs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/snippets/snippets-langs.png -------------------------------------------------------------------------------- /source/img/snippets/snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/snippets/snippets.png -------------------------------------------------------------------------------- /source/img/student-pay-2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student-pay-2b.png -------------------------------------------------------------------------------- /source/img/student-pay-3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student-pay-3b.png -------------------------------------------------------------------------------- /source/img/student-pay-levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student-pay-levels.png -------------------------------------------------------------------------------- /source/img/student/cocalc-student-pays-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/cocalc-student-pays-1.png -------------------------------------------------------------------------------- /source/img/student/cocalc-student-pays-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/cocalc-student-pays-2.png -------------------------------------------------------------------------------- /source/img/student/cocalc-student-pays-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/cocalc-student-pays-3.png -------------------------------------------------------------------------------- /source/img/student/cocalc-student-pays-too-late.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/cocalc-student-pays-too-late.png -------------------------------------------------------------------------------- /source/img/student/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/content.png -------------------------------------------------------------------------------- /source/img/student/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/control.png -------------------------------------------------------------------------------- /source/img/student/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/download.png -------------------------------------------------------------------------------- /source/img/student/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/drag.png -------------------------------------------------------------------------------- /source/img/student/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/projects.png -------------------------------------------------------------------------------- /source/img/student/restart_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/restart_project.png -------------------------------------------------------------------------------- /source/img/student/student_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/student_question.png -------------------------------------------------------------------------------- /source/img/student/time_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/time_diff.png -------------------------------------------------------------------------------- /source/img/student/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/student/upload.png -------------------------------------------------------------------------------- /source/img/students_pay_directly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/students_pay_directly.png -------------------------------------------------------------------------------- /source/img/task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/task-list.png -------------------------------------------------------------------------------- /source/img/teaching/Enter_grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/Enter_grade.png -------------------------------------------------------------------------------- /source/img/teaching/Export_grades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/Export_grades.png -------------------------------------------------------------------------------- /source/img/teaching/Identify_student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/Identify_student.png -------------------------------------------------------------------------------- /source/img/teaching/access_collected_assignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/access_collected_assignments.png -------------------------------------------------------------------------------- /source/img/teaching/add-students-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add-students-2.png -------------------------------------------------------------------------------- /source/img/teaching/add-students-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add-students-3.png -------------------------------------------------------------------------------- /source/img/teaching/add-students-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add-students-4.png -------------------------------------------------------------------------------- /source/img/teaching/add-students-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add-students-5.png -------------------------------------------------------------------------------- /source/img/teaching/add_handout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add_handout.png -------------------------------------------------------------------------------- /source/img/teaching/add_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add_students.png -------------------------------------------------------------------------------- /source/img/teaching/add_students_step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add_students_step2.png -------------------------------------------------------------------------------- /source/img/teaching/add_tas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/add_tas.png -------------------------------------------------------------------------------- /source/img/teaching/added_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/added_students.png -------------------------------------------------------------------------------- /source/img/teaching/after_latex_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/after_latex_render.png -------------------------------------------------------------------------------- /source/img/teaching/assign_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/assign_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/assignment_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/assignment_list.png -------------------------------------------------------------------------------- /source/img/teaching/before_latex_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/before_latex_render.png -------------------------------------------------------------------------------- /source/img/teaching/chat_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/chat_button.png -------------------------------------------------------------------------------- /source/img/teaching/collaborators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/collaborators.png -------------------------------------------------------------------------------- /source/img/teaching/collect_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/collect_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/collected_assignments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/collected_assignments.png -------------------------------------------------------------------------------- /source/img/teaching/collected_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/collected_folder.png -------------------------------------------------------------------------------- /source/img/teaching/colored_feedback_markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/colored_feedback_markdown.png -------------------------------------------------------------------------------- /source/img/teaching/colored_feedback_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/colored_feedback_text.png -------------------------------------------------------------------------------- /source/img/teaching/configure_upgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/configure_upgrades.png -------------------------------------------------------------------------------- /source/img/teaching/copy-missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/copy-missing.png -------------------------------------------------------------------------------- /source/img/teaching/course-empty-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/course-empty-trash.png -------------------------------------------------------------------------------- /source/img/teaching/course-reconfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/course-reconfigure.png -------------------------------------------------------------------------------- /source/img/teaching/course_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/course_file.png -------------------------------------------------------------------------------- /source/img/teaching/create_course_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/create_course_file.png -------------------------------------------------------------------------------- /source/img/teaching/create_new_course_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/create_new_course_project.png -------------------------------------------------------------------------------- /source/img/teaching/delete-student-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/delete-student-2.png -------------------------------------------------------------------------------- /source/img/teaching/delete-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/delete-student.png -------------------------------------------------------------------------------- /source/img/teaching/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/download.png -------------------------------------------------------------------------------- /source/img/teaching/due-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/due-date.png -------------------------------------------------------------------------------- /source/img/teaching/export-collected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/export-collected.png -------------------------------------------------------------------------------- /source/img/teaching/export_grades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/export_grades.png -------------------------------------------------------------------------------- /source/img/teaching/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/feedback.png -------------------------------------------------------------------------------- /source/img/teaching/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/file.png -------------------------------------------------------------------------------- /source/img/teaching/filelist_with_collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/filelist_with_collect.png -------------------------------------------------------------------------------- /source/img/teaching/find-handout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/find-handout.png -------------------------------------------------------------------------------- /source/img/teaching/find_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/find_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/folder.png -------------------------------------------------------------------------------- /source/img/teaching/graded_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/graded_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/handout-course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/handout-course.png -------------------------------------------------------------------------------- /source/img/teaching/handout_after_distributing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/handout_after_distributing.png -------------------------------------------------------------------------------- /source/img/teaching/handout_before_distributing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/handout_before_distributing.png -------------------------------------------------------------------------------- /source/img/teaching/handout_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/handout_expanded.png -------------------------------------------------------------------------------- /source/img/teaching/inst-pay-01-no-upgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/inst-pay-01-no-upgr.png -------------------------------------------------------------------------------- /source/img/teaching/inst-pay-02-add-upgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/inst-pay-02-add-upgr.png -------------------------------------------------------------------------------- /source/img/teaching/inst-pay-03-student-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/inst-pay-03-student-before.png -------------------------------------------------------------------------------- /source/img/teaching/inst-pay-04-student-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/inst-pay-04-student-after.png -------------------------------------------------------------------------------- /source/img/teaching/inst-pay-06-before3rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/inst-pay-06-before3rd.png -------------------------------------------------------------------------------- /source/img/teaching/institute_pays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/institute_pays.png -------------------------------------------------------------------------------- /source/img/teaching/instructor_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/instructor_cursor.png -------------------------------------------------------------------------------- /source/img/teaching/instructor_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/instructor_notification.png -------------------------------------------------------------------------------- /source/img/teaching/license-strategy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/license-strategy.png -------------------------------------------------------------------------------- /source/img/teaching/math-202-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/math-202-tree.png -------------------------------------------------------------------------------- /source/img/teaching/mentioning_student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/mentioning_student.png -------------------------------------------------------------------------------- /source/img/teaching/new-instructor-project-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/new-instructor-project-started.png -------------------------------------------------------------------------------- /source/img/teaching/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/new.png -------------------------------------------------------------------------------- /source/img/teaching/new_managecourse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/new_managecourse.png -------------------------------------------------------------------------------- /source/img/teaching/non-nbg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/non-nbg-2.png -------------------------------------------------------------------------------- /source/img/teaching/notification_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/notification_highlighted.png -------------------------------------------------------------------------------- /source/img/teaching/open_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/open_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/peer_grading_activation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/peer_grading_activation.png -------------------------------------------------------------------------------- /source/img/teaching/projects-cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/projects-cc.png -------------------------------------------------------------------------------- /source/img/teaching/reinvite-students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/reinvite-students.png -------------------------------------------------------------------------------- /source/img/teaching/restart_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/restart_project.png -------------------------------------------------------------------------------- /source/img/teaching/restrict-student-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/restrict-student-projects.png -------------------------------------------------------------------------------- /source/img/teaching/restrict_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/restrict_students.png -------------------------------------------------------------------------------- /source/img/teaching/return_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/return_button.png -------------------------------------------------------------------------------- /source/img/teaching/returned_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/returned_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/returned_assignment_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/returned_assignment_files.png -------------------------------------------------------------------------------- /source/img/teaching/send_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/send_assignment.png -------------------------------------------------------------------------------- /source/img/teaching/set_instructor_license_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/set_instructor_license_title.png -------------------------------------------------------------------------------- /source/img/teaching/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/settings.png -------------------------------------------------------------------------------- /source/img/teaching/shared1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/shared1.png -------------------------------------------------------------------------------- /source/img/teaching/site-lic-course-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/site-lic-course-config.png -------------------------------------------------------------------------------- /source/img/teaching/site-lic-course-create-crse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/site-lic-course-create-crse.png -------------------------------------------------------------------------------- /source/img/teaching/site-lic-course-create-proj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/site-lic-course-create-proj.png -------------------------------------------------------------------------------- /source/img/teaching/site-lic-course-restart-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/site-lic-course-restart-post.png -------------------------------------------------------------------------------- /source/img/teaching/site-lic-course-restart-pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/site-lic-course-restart-pre.png -------------------------------------------------------------------------------- /source/img/teaching/start_all_clicked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/start_all_clicked.png -------------------------------------------------------------------------------- /source/img/teaching/stop_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/stop_notebook.png -------------------------------------------------------------------------------- /source/img/teaching/student-license-view.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/student-license-view.jpg -------------------------------------------------------------------------------- /source/img/teaching/student_got_mentioned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/student_got_mentioned.png -------------------------------------------------------------------------------- /source/img/teaching/student_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/student_question.png -------------------------------------------------------------------------------- /source/img/teaching/student_replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/student_replies.png -------------------------------------------------------------------------------- /source/img/teaching/students-pay-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/students-pay-2.png -------------------------------------------------------------------------------- /source/img/teaching/students-pay-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/students-pay-3.png -------------------------------------------------------------------------------- /source/img/teaching/students_pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/students_pay.png -------------------------------------------------------------------------------- /source/img/teaching/term_command_course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/term_command_course.png -------------------------------------------------------------------------------- /source/img/teaching/tex-mentions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/tex-mentions.png -------------------------------------------------------------------------------- /source/img/teaching/time_travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/time_travel.png -------------------------------------------------------------------------------- /source/img/teaching/time_travel_sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/time_travel_sliders.png -------------------------------------------------------------------------------- /source/img/teaching/undelete-student-2a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/undelete-student-2a.png -------------------------------------------------------------------------------- /source/img/teaching/undelete-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/undelete-student.png -------------------------------------------------------------------------------- /source/img/teaching/upgrade-instructor-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/upgrade-instructor-project.png -------------------------------------------------------------------------------- /source/img/teaching/upgrading_students.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/upgrading_students.png -------------------------------------------------------------------------------- /source/img/teaching/upgrading_students2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/teaching/upgrading_students2.png -------------------------------------------------------------------------------- /source/img/term-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/term-tour.png -------------------------------------------------------------------------------- /source/img/terminal/chrome-customize-fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/terminal/chrome-customize-fonts.png -------------------------------------------------------------------------------- /source/img/terminal/chrome-fixed-width-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/terminal/chrome-fixed-width-font.png -------------------------------------------------------------------------------- /source/img/terminal/clean-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/terminal/clean-terminal.png -------------------------------------------------------------------------------- /source/img/terminals4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/terminals4.png -------------------------------------------------------------------------------- /source/img/time-travel-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/time-travel-changes.png -------------------------------------------------------------------------------- /source/img/time-travel-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/time-travel-ui.png -------------------------------------------------------------------------------- /source/img/timer-file-expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/timer-file-expired.png -------------------------------------------------------------------------------- /source/img/update-credit-cards3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/update-credit-cards3.png -------------------------------------------------------------------------------- /source/img/upgrade_instructor_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrade_instructor_project.png -------------------------------------------------------------------------------- /source/img/upgrades-adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-adjust.png -------------------------------------------------------------------------------- /source/img/upgrades-applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-applied.png -------------------------------------------------------------------------------- /source/img/upgrades-download-receipts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-download-receipts.png -------------------------------------------------------------------------------- /source/img/upgrades-payment-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-payment-info.png -------------------------------------------------------------------------------- /source/img/upgrades-plan-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-plan-selection.png -------------------------------------------------------------------------------- /source/img/upgrades-subscription-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades-subscription-info.png -------------------------------------------------------------------------------- /source/img/upgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/upgrades.png -------------------------------------------------------------------------------- /source/img/use-license-key-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/use-license-key-a.png -------------------------------------------------------------------------------- /source/img/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/users.png -------------------------------------------------------------------------------- /source/img/view-codes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/view-codes.png -------------------------------------------------------------------------------- /source/img/voucher-center-upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/voucher-center-upper.png -------------------------------------------------------------------------------- /source/img/voucher-order-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/voucher-order-complete.png -------------------------------------------------------------------------------- /source/img/voucher_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/voucher_center.png -------------------------------------------------------------------------------- /source/img/vouchers-you-redeemed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/vouchers-you-redeemed.png -------------------------------------------------------------------------------- /source/img/vsc_x11_plotting_cocalc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/vsc_x11_plotting_cocalc.png -------------------------------------------------------------------------------- /source/img/vsc_x11_plotting_vsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/vsc_x11_plotting_vsc.png -------------------------------------------------------------------------------- /source/img/vscode-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/vscode-server.png -------------------------------------------------------------------------------- /source/img/wb-search-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/wb-search-view.png -------------------------------------------------------------------------------- /source/img/wb-tasks-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/wb-tasks-code.png -------------------------------------------------------------------------------- /source/img/wb-tasks-rendered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/wb-tasks-rendered.png -------------------------------------------------------------------------------- /source/img/whiteboard-sage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard-sage.png -------------------------------------------------------------------------------- /source/img/whiteboard/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard/chat.png -------------------------------------------------------------------------------- /source/img/whiteboard/cut-copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard/cut-copy-paste.png -------------------------------------------------------------------------------- /source/img/whiteboard/insert-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard/insert-page.png -------------------------------------------------------------------------------- /source/img/whiteboard/timers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard/timers.png -------------------------------------------------------------------------------- /source/img/whiteboard/wb-timer-expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/whiteboard/wb-timer-expired.png -------------------------------------------------------------------------------- /source/img/x11-gedit-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-gedit-save.png -------------------------------------------------------------------------------- /source/img/x11-inkscape-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-inkscape-dialog.png -------------------------------------------------------------------------------- /source/img/x11-launcher-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-launcher-buttons.png -------------------------------------------------------------------------------- /source/img/x11-libreoffice-tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-libreoffice-tabs.png -------------------------------------------------------------------------------- /source/img/x11-maxima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-maxima.png -------------------------------------------------------------------------------- /source/img/x11-scilab-2019-05-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-scilab-2019-05-04.png -------------------------------------------------------------------------------- /source/img/x11-spyder-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/x11-spyder-hdpi.png -------------------------------------------------------------------------------- /source/img/yes-rich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/yes-rich.png -------------------------------------------------------------------------------- /source/img/your-vouchers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/img/your-vouchers.png -------------------------------------------------------------------------------- /source/introduction.rst: -------------------------------------------------------------------------------- 1 | ================= 2 | Introduction 3 | ================= 4 | 5 | .. toctree:: 6 | 7 | index 8 | why 9 | why_not 10 | alternativeto/index 11 | videos 12 | tours 13 | news 14 | -------------------------------------------------------------------------------- /source/latex.rst: -------------------------------------------------------------------------------- 1 | .. index:: LaTeX Editor 2 | .. _latex-editor: 3 | 4 | ====================== 5 | LaTeX Editor 6 | ====================== 7 | 8 | [LaTeX]_ is a sophisticated markup language and processor for typesetting documents. 9 | For a general introduction, read this `LaTeX wiki book`_ or any other resource. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | latex-start.rst 15 | latex-features.rst 16 | latex-faq.rst 17 | howto/overleaf.rst 18 | 19 | 20 | .. _LaTeX wiki book: https://en.wikibooks.org/wiki/LaTeX -------------------------------------------------------------------------------- /source/news.rst: -------------------------------------------------------------------------------- 1 | .. index:: NEWS 2 | 3 | ====================== 4 | CoCalc News 5 | ====================== 6 | 7 | CoCalc has a channel for sharing news. The intent is to aid in keeping you updated on the latest developments and coming modifications. 8 | 9 | .. figure:: img/cocalc-news.png 10 | :width: 100% 11 | :align: center 12 | :alt: cocalc news page 13 | 14 | CoCalc news 15 | 16 | 17 | News items are available at https://cocalc.com/news and as notifications in the application itself. You can also grab the RSS feed to ingest it in a reader of your choice 18 | 19 | Here's the CoCalc feature announcement and discussion: `ANN: News in CoCalc #6631 `_. 20 | 21 | Inside the CoCalc application, the :ref:`notification-counter` will alert you to unread news items. You can also view a list of past news items with the counter. 22 | -------------------------------------------------------------------------------- /source/processes.rst: -------------------------------------------------------------------------------- 1 | .. index:: Processes 2 | 3 | ============================= 4 | Processes 5 | ============================= 6 | 7 | .. _ft-info: 8 | 9 | |microchip| Processes 10 | ===================== 11 | 12 | The "Processes" panel offers a consolidated view of real-time activity within the current project. Use the Help toggle at right for details. You can view use of CPU, memory, and disk space. There is a list of running processes showing resource use by each and allowing you to terminate non-essential processes. 13 | 14 | The "Memory" column in the Table of Processes can help you track down out-of-memory problems. 15 | 16 | .. image:: img/processes.png 17 | :align: center 18 | :width: 95% 19 | :alt: Processes panel 20 | 21 | There are additional linux commands that provide further detail. See :doc:`howto/running-processes`. 22 | 23 | .. |microchip| 24 | image:: https://github.com/encharm/Font-Awesome-SVG-PNG/raw/master/black/png/128/microchip.png 25 | :width: 16px 26 | :alt: processes microchip icon -------------------------------------------------------------------------------- /source/project-home.rst: -------------------------------------------------------------------------------- 1 | .. index:: Project Home 2 | 3 | ============================= 4 | Project Home 5 | ============================= 6 | 7 | When a project is selected, The Project Home page displays general information about the selected project. The plan is to make the layout user-configurable. 8 | 9 | .. figure:: img/project-home.png 10 | :width: 80% 11 | :align: center 12 | :alt: project home page 13 | 14 | the Project Home page can be opened from the top of the :doc:`activity-bar`. 15 | 16 | Here's the CoCalc feature announcement and discussion: `ANN: Projects now have a homepage `_. -------------------------------------------------------------------------------- /source/references.rst: -------------------------------------------------------------------------------- 1 | ================================= 2 | References 3 | ================================= 4 | 5 | .. [Git] https://www.git-scm.org 6 | .. [LaTeX] https://www.latex-project.org/ 7 | .. [SymPy] https://www.sympy.org/ 8 | -------------------------------------------------------------------------------- /source/servers.rst: -------------------------------------------------------------------------------- 1 | .. index:: Servers 2 | 3 | ============================= 4 | Servers 5 | ============================= 6 | 7 | |servers| Servers 8 | ================== 9 | 10 | After opening a project, you can run various servers in addition to the main CoCalc service. Click "Servers" in the :doc:`activity-bar` to see what's available. Options include Jupyter Classic, JupyterLab, VS Code Server, Pluto, and even possibly custom servers of your own design. 11 | 12 | 13 | .. figure:: img/servers-pane.png 14 | :width: 80% 15 | :align: center 16 | :alt: servers pane 17 | 18 | .. 19 | 20 | .. |servers| 21 | image:: img/icons/servers-icon.png 22 | :width: 24px 23 | :alt: servers icon 24 | -------------------------------------------------------------------------------- /source/service_options.rst: -------------------------------------------------------------------------------- 1 | Service Options 2 | =================== 3 | 4 | .. toctree:: 5 | 6 | trial 7 | licenses 8 | paygo 9 | vouchers 10 | on-premises 11 | cocalc-desktop -------------------------------------------------------------------------------- /source/signature_features.rst: -------------------------------------------------------------------------------- 1 | Signature Features 2 | ================== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | ai 8 | chat 9 | share 10 | time-travel 11 | compute_server 12 | cloud_file_system 13 | -------------------------------------------------------------------------------- /source/software/custom_software.rst: -------------------------------------------------------------------------------- 1 | ========================================= 2 | Custom Software 3 | ========================================= 4 | 5 | Besides the :ref:`default software environment `, 6 | CoCalc also offers :ref:`customizable software environments `. 7 | They bundle content for a specific purpose with software and libraries 8 | in order to form a runnable environment for them. 9 | 10 | .. include:: custom_software0.rst 11 | -------------------------------------------------------------------------------- /source/software/img/sage-R-plot3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/software/img/sage-R-plot3d.png -------------------------------------------------------------------------------- /source/software/img/sage9.2-3d-ani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagemathinc/cocalc-doc/235027ebd7a67c030b79f0643cf61c593b4470bd/source/software/img/sage9.2-3d-ani.png -------------------------------------------------------------------------------- /source/tours.rst: -------------------------------------------------------------------------------- 1 | .. index:: Tours 2 | 3 | =============== 4 | Tours 5 | =============== 6 | 7 | * :ref:`explorer-tour` 8 | * :ref:`projects-tour` 9 | * :ref:`chatgpt-tour` 10 | * :ref:`terminal-tour` 11 | -------------------------------------------------------------------------------- /source/upgrade-guide.rst: -------------------------------------------------------------------------------- 1 | .. index:: Project Upgrades 2 | .. _upgrade-guide: 3 | 4 | ===================== 5 | Project Upgrades 6 | ===================== 7 | 8 | If you want to upgrade a project from a :doc:`trial project `, you can add a CoCalc license. See the section of this manual on :doc:`licenses` for more information. 9 | 10 | Questions about quotas, upgrades, and billing are answered in :doc:`billing`. 11 | -------------------------------------------------------------------------------- /source/user_interface.rst: -------------------------------------------------------------------------------- 1 | =================== 2 | User Interface 3 | =================== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | fullscreen 9 | frame-editor 10 | project 11 | project-toolbar 12 | activity-bar 13 | project-home 14 | flyouts 15 | explorer 16 | plus-new 17 | project-log 18 | files-search 19 | servers 20 | users 21 | upgrades 22 | processes 23 | project-settings 24 | 25 | account-dropdown 26 | account-toolbar 27 | account/preferences 28 | account/purchases 29 | billing 30 | ipad -------------------------------------------------------------------------------- /source/users.rst: -------------------------------------------------------------------------------- 1 | .. index:: Users 2 | 3 | Users 4 | ===== 5 | 6 | .. raw:: html 7 | 8 |
    16 | 17 | After opening a project, you can view, add, and remove collaborators on the project. 18 | 19 | Click "Users" in the :doc:`activity-bar` to manage collaborators: 20 | 21 | .. figure:: img/users.png 22 | :width: 80% 23 | :align: center 24 | :alt: Users Panel 25 | 26 | Users Panel 27 | -------------------------------------------------------------------------------- /source/videos.rst: -------------------------------------------------------------------------------- 1 | .. index:: Videos 2 | 3 | Videos 4 | ====== 5 | 6 | CoCalc has a big collection of shorter and longer videos explaining various elements of the interface and different tasks! Many of them are embedded throughout this documentation, but you can browse them directly at https://www.youtube.com/@cocalc-cloud/playlists 7 | --------------------------------------------------------------------------------