Archives
Categories
- Art (24)
- Bigger reality (68)
- Blender (33)
- DIY (166)
- GNU/Linux (101)
- Health (111)
- Motorcycle (44)
- Permaculture (121)
- Photography (118)
- Python (20)
- Reprap 3D Printer (122)
- Science and technologies (138)
- Uncategorized (65)
Website
- Doctor Yourself Health Homesteading website that promotes self reliance.
- Exploring Electric Universe
- F* THE BANK$ This website is run by a feisty group of Occupy Wall Street activists and members of the The Other 98%…
- Professor Ph. M. Kanarev's Books and Lectures Professor Kanarev has developed a new theory of a Microcosm and Mechanodynamics that open up Free Energy technologies.
- Wade Frazier's personal website Free Energy technologies, alternative medicine, abundance paradigm
- 3D modeling
- 3D printer
- 2006 Yamaha R1
- bike
- bird
- birds
- blender
- Blender 2.69
- Buckminster Fuller
- Bulbul Junior
- Calculus
- calibration
- Canon EOS 1000D
- Canon Rebel XS
- cat
- convert
- corrupted system
- COVID-19
- Debian GNU/Linux
- Debian Wheezy
- Devuan
- Digital Camera
- Digital photography
- DIY
- dog
- E3D V6 Hotend
- electronics
- ffmpeg
- Free Energy
- geodesic dome
- GIMP
- GNU/Linux
- GoPro HD Hero2
- health
- helmet
- house project
- Hydraulic press
- ImageMagick
- mathematics
- Mini Kossel
- motorcycle
- Natural Farming
- nature
- Neal Hirsig
- Nikon D200
- OpenSCAD
- open source
- Original Prusa i3 MK2
- Permaculture
- photography
- Physics
- PLA
- plant
- python
- reprap
- Reprap 3D Printer
- Rice
- science
- sculpture
- SmaTrig
- Sony A6000
- Steel Fisher
- steel pipe
- Stop5G
- SymPy
- technology
- time lapse
- truth
- vaccine
- Wheezy
- wood working
- 기술
- 두차
- 쌀
- 자연농사
Tag Archives: python
sympy – continuity test of functions
All functions I used here from Chapter 1 Exercises on Calculus and Analytic Geometry (9th Edition) by George B. Thomas, Ross L. Finney. It has discontinuity at 2 of x. Smooth graph of a function means it has continuity in … Continue reading
Posted in Python, Science and technologies
Tagged Calculus, limit, mathematics, python, symbolic, symbolic computation, SymPy
Leave a comment
sympy plot function examples
Running environment is IPython Notebook in Debian Wheezy.
Posted in Python
Tagged graph, IPython notebook, mathmatics, plot function, python, rational function, ylim option
Leave a comment
IPython notebook installation in Debian Wheezy
$ sudo apt-get install ipython-notebook python-matplotlib Reading package lists… Done Building dependency tree Reading state information… Done python-matplotlib is already the newest version. python-matplotlib set to manually installed. The following extra packages will be installed: ipython-notebook-common libjs-mathjax libpgm-5.1-0 libzmq1 python-mysqldb … Continue reading
Some notes about parallel computing in Python
I spent two days to study parallel computing by using Python’s multiprocessing module. My Debian box has AMD 6-core 64bit processor. Python version is 2.7.5. Interesting things I’ve found so far is using the multiprocessing module does produce 3 to … Continue reading
Posted in GNU/Linux, Python
Tagged Debian Wheezy, multiprocessing module, parallel computing, python
Leave a comment
IPython and matplotlib
OS: Debian Wheezy The explanation is here. $ ipython -pylab WARNING: `-pylab` flag has been deprecated. Use `–pylab` instead, or `–pylab=foo` to specify a backend.Python 2.7.3 (default, Sep 9 2012, 17:41:34) Type “copyright”, “credits” or “license” for more information. IPython … Continue reading
Posted in GNU/Linux
Tagged Debian GNU/Linux, graphics, interactive shell, Ipython, mathematics, matplotlib, python, Wheezy
Leave a comment
VPython segmentation fault error after Wheezy upgrade
My Linux workstation uses fglrx graphic driver for Xorg. I experienced ‘Segmentation fault’ run-time error when I ran VPython codes today afternoon. In Squeeze it worked fine. Hmm… I forgot the old box was using open-source Radeon driver in Squeeze. … Continue reading
Posted in GNU/Linux, Python
Tagged ATI Radeon HD 3000, Debian Wheezy, fglrx, python, segmentation fault, vpython
Leave a comment
Python resources
The author of The Python Standard Library By Example Doug Hellmann’s website has Python Module of the Week. It has many examples how to use standard modules. http://www.doughellmann.com/PyMOTW/about.html Working with Python subprocess – Shells, Processes, Streams, Pipes, Redirects and More … Continue reading
Posted in Python
Tagged Doug Hellmann, module, programming, python, standard library
Leave a comment
IOError: [Errno 32] Broken pipe
Python version I use is 2.7.3 in Debian Wheezy. The subprocess example code from here creates annoying error: Traceback (most recent call last): File “process_example4.py”, line 8, in sys.stdout.flush() IOError: [Errno 32] Broken pipe process_example4.py import sys while True: input … Continue reading
Bash – Turning on and off wildcard expansion
I’m dealing with the same problem for a small python script that uses ‘ls’ as sub process. How to prevent wildcard expansion in bash? $ set -f $ /path/to/globme.sh $ set+f $ YourFirstArgument YourSecondArgument … For detail, follow this link. … Continue reading
Posted in GNU/Linux, Python
Tagged bash, command line argument, Debian GNU/Linux, glob, ls, python, script, wildcard expansion
Leave a comment