This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import print_function | |
| import pickle | |
| import os.path | |
| from googleapiclient.discovery import build | |
| from google_auth_oauthlib.flow import InstalledAppFlow | |
| from google.auth.transport.requests import Request | |
| from googleapiclient.http import MediaIoBaseDownload | |
| import io | |
| # If modifying these scopes, delete the file token.pickle. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configuration file for ipython. | |
| #------------------------------------------------------------------------------ | |
| # InteractiveShellApp(Configurable) configuration | |
| #------------------------------------------------------------------------------ | |
| ## A Mixin for applications that start InteractiveShell instances. | |
| # | |
| # Provides configurables for loading extensions and executing files as part of | |
| # configuring a Shell environment. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| import os | |
| import subprocess | |
| import uuid | |
| from IPython.core.magic import register_cell_magic | |
| from IPython.display import SVG | |
| from metakernel import Magic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // leave at least 2 line with only a star on it below, or doc generation fails | |
| /** | |
| * | |
| * | |
| * Placeholder for custom user javascript | |
| * mainly to be overridden in profile/static/custom/custom.js | |
| * This will always be an empty file in IPython | |
| * | |
| * User could add any javascript in the `profile/static/custom/custom.js` file. | |
| * It will be executed by the ipython notebook at load time. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gnuplot_binary 'C:\Program Files\gnuplot\bin\gnuplot.exe' | |
| graphics_toolkit 'gnuplot' | |
| graphics_toolkit('gnuplot') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %MATLABRC Master startup MATLAB script. | |
| % MATLABRC is automatically executed by MATLAB during startup. | |
| % It sets the default figure size, and sets a few uicontrol defaults. | |
| % | |
| % On multi-user or networked systems, the system manager can put | |
| % any messages, definitions, etc. that apply to all users here. | |
| % | |
| % A STARTUP command is invoked after executing MATLABRC if the file 'startup.m' | |
| % exists on the MATLAB path. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "userId": null, | |
| "frameworkId": "a11c5c00-6278-11eb-8318-c1377d65b139", | |
| "trackingDisabled": false, | |
| "enterpriseDisabled": false, | |
| "meta": { | |
| "created_at": 1611955580, | |
| "updated_at": 1612322029 | |
| }, | |
| "shownNotificationsHistory": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| python=C:\ProgramData\Miniconda3\python.exe | |
| loglevel=verbose |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| doskey save=doskey /history $g$g %USERPROFILE%\command_history.log | |
| doskey quit=doskey /history $g$g %USERPROFILE%\command_history.log $T exit | |
| doskey exit=doskey /history $g$g %USERPROFILE%\command_history.log $t exit $1 $2 | |
| doskey history=find /I "$*" %USERPROFILE%\command_history.log | |
| doskey activate=.\venv\Scripts\activate.bat | |
| doskey getconfig=aws lambda get-function-configuration --function-name "$*-dev-app" --query "Environment.Variables" $g config-dev.json | |
| cls |