I installed Anaconda and Jupyter Notebook. When I launch from Jupyter Notebook I see such a message "copy and paste one of these urls". How can I copy thess urls? I tried to click with the right button, left button, double click. Nothing helps, there is no interaction with the open window. I use Windows 8.1.
Can you please tell me why this window is not active and how can I copy the URL?
prtscr
You could either click on the Python icon in the top left corner of the window to get into the edit menu. (Select + Copy) or you could use Ctrl + M to select and Ctrl + C to copy.
But usually the browser is supposed to open itself and go to the notebook.
HTH
Related
VS code recently added the ability to work with jupyter notebooks (.ipynb files), this is to say it renders them as notebooks and not the underlying text.
The problem I'm running into is I want to make some edits on the raw text rather than the "notebook" but I can't figure out how to show it as a text file the way any other editor would.
Is there a way to toggle between the views?
Disable automatically opening *.ipynb files in Notebook Editor
To make sure the Jupyter notebooks don't open in the Notebook Editor automatically, make sure to disable this settings. (Command Palette -> Settings)
OR
In the User or Workspace settings.json, add the following the root json - "jupyter.useNotebookEditor": false
To toggle between the Notebook Editor and Raw Text Mode Editing
There is an option/command called Reopen Editor with..., which will provide you options to open the *.ipynb file in text mode.
You trigger this by performing a Right Click on the Editor Tab (Editor Title Bar) or Command Palette -> Reopen Editor with...
PS: I have the Jupyter extension (v2020.12.414227025)
Open: File > Preferences > Settings
Search ipynb and deselect the following:
Other answers didn't work for me recently. I found no "use notebook editor" option under preferences, perhaps vs code has reorganized recently. Instead I found the following solution. Right click on an *.ipynb file tab to get the context menu, and click "Reopen Editor With..." as pictured below.
Then on the following popup click "configure default editor for .ipynb", and then click on the text editor as seen below:
And viola. The default settings have been changed.
I think the fastest way is to rename the file.
Just press F2 (or return for mac) while selecting the file in the vscode explorer, then rename from my-notebook.ipynb to my-notebook.json, because jupyter ipynb files are regular json files
Create .json file and paste the notebook json in there, save the file and then rename the extension to .ipynb and it will open in the jupyter editor
(Similar to aquirdturtle's answer)
What about
On the left side explorer
Right Click on file -> Open With -> Text Editor
Set the setting
"files.associations": {
"*.ipynb": "text"
}
Or try click on the Status Bar field that shows the Language Mode of the file in the lower right.
Use the command: Change Language Mode
I am having difficulty in making a shortcut which I have installed on a client’s machine appear with the ‘Fox’ icon.
On my own machine I create the exe file myapp.exe, then create a shortcut to myapp.exe and copy it to the desktop. The shortcut shows with the Fox icon.
I then copy myapp.exe to the client’s machine, and create a shortcut in the same folder. With Windows Explorer that shortcut shows with the Fox icon. If however I copy it to the client’s desktop, the shortcut appears with a different icon (a rather general ‘folder’ with 6 coloured rectangles).
But If I then right-click on that shortcut (on the desktop) and click on Properties, Shortcut, the tab shows at the top the ‘Fox’ shortcut icon and the name of the application. And when I click on ‘Change icon’, the Fox icon is the only one which is offered at first.
Still within properties, I can change the icon (e.g.) to that from Teamviewer. If I save that, then the shortcut on the users desktop has indeed chanfged to Teamviewer.
Back on my machine, within VFP, I open up the project and look at the ‘Other | Other files’ tab and see that there are a lot of .bmp files, some them icons I have created. Do I perhaps need to add some icon into that group and then rebuild the exe?
Thanks very much.
I know how to use markdown-styles in settings to supply my own CSS for styling Markdown previews, but I don't know what elements and CSS classes to style. Are the ones used in Markdown preview documented somewhere?
Open a Markdown file.
Open the split preview window (Cmd + K, V on Mac, or the split view icon in the upper right-hand corner of the window, or open the command palette (menu View → Command Palette or Shift + Cmd + P on Mac) and run Markdown: open Preview to the side.
Open the command palette and run Developer: Open WEBVIEW developer tools.
That will open a browser-like inspector, and you can drill down and see whatever you need there.
Note that Toggle Developer Tools in the Help menu does not work for this — it does not drill down into the Preview's webview window.
You can use vr8ce’s helpful answer to find the source of the default stylesheet. On the Mac, this is the path:
/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/extensions/markdown-language-features/media/markdown.css
Jupyter notebook has a new feature of cell tags since version 5.0 as described in the changelog.
I activated the cell tags going to View > Cell Toolbar as described on their page.
How can I deactivate this little panel on the cells?
Pressing the same button again doesn't help.
Do the same process but this time just click None
If last answer did not help, you also can edit .ipynb file code. in Jupyter - Home-running- stop your file, after that go to the explorer- click right bottom on your_file.ipynb open with notebook(just like .txt) - scroll down, find raw with "celltoolbar": "None", and delete this and save file, after run file in jupyter.
Is it possible to copy clipboard from iOS simulator to my mac?
Not sure I should ask here or at AskDifferent.
Using Xcode 10 Beta
Trying going to Edit>Automatically Sync Pasteboard. Mine was checked, but they weren't synced. Try unchecking it then re-checking it.
If that doesn't work, Uncheck it, select text and copy within simulator, then click Edit>Get Pasteboard.
Select the text in the simulator, and make sure the edit menu with "Copy" is visible on the simulator screen
Use the Mac keyboard to press "⌘ + C" to copy the text into mac clipboard.
Update(Have tested on MacOS 11.3.1):
Select the text in the simulator, and make sure the edit menu with "Copy" is visible on the simulator screen
Use the Mac keyboard to press "⌘ + Shift + C", and click "Copy" in the previous step to copy the text into mac clipboard
In addition to the use of the Edit Menu in Simulator.app to copy data between the macOS and iOS pasteboards, with Xcode 8, you can do this from the simctl command line. Check out:
xcrun simctl pbinfo
xcrun simctl pbsync
xcrun simctl pbcopy
xcrun simctl pbpaste
Yes! First, make sure whatever you want to bring to the Mac is on your simulator's clipboard already. Then, do the regular copy shortcut (⌘ + C) to bring the simulator's clipboard to your Mac's clipboard.
You should now be able to paste whatever it was on your Mac, given that it was a compatible format.
None of these answers worked for me, I'm not sure why the simplest way isn't listed in one of the answers, but it is to first copy like you would usually on iOS, then browse to the simulator menu at the top left of MacOS: Edit > Get Pasteboard