Sean
- Total activity 26
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 12
-
Created shortkey for commenting javascript in Django project
I am using professional version. In the .html file, I wrote javascript code. If I use ctrl+/, it does not give the correct comment, instead of // it gives django template comment {# #}How shoudl ... -
Created export settings
I have two machines, each of which has a different user name. My Python library and interpreter is located under my user name directory.When exporting settings from one machine and importing it to ... -
Created Pycharm console (debug) search history
In Ipython webiste:===================Search command historyIPython provides two ways for searching through previous input and thus reduce the need for repetitive typing:Start typing, and then use ... -
Created Python console variable view: "copy value" does not work for ndarray (54*54)
a is ndarray 54*54 matrix.I click "copy values" it does not copy the data, actually, my test shows it does not copy anything of it. When I choose other smaller amount of variable data, it did copy ... -
Created How to run startup script in Debug mode and print numpy array
(1) If I use "run" instead of "debug" mode, I can define some startup commands in the settings:python console.However, if I use debug mode, the startup script does not run. Specifically, I would li... -
Created %store magic function missing
If I open ipython from my terminal, %store works. However if I open console in pycharm, this function is missing. -
Created run python console using same kernel
Can I open two python console (using Tool–> run Python console) using the same kernel? They share the same variables. -
Created Incorrect autocompletion in Pycharm python console
type(alldata[0]) Out[12]: numpy.ndarray alldata[0]. # autocompletion shows up (e.g., "alldata[0].all" ) Then, select the first one., get alldata[0].alldata[0].all # which should be "alldata[... -
Created numpy auto-suggestion/autocompletion too slow
I use Enthought canopy python with numpy and scipy.import numpy as npnp. #### when I type "np.", no auto-completion popup for numpy functions... I have to type until "np.array(", then code sugge...