222 links
  • Zertrin's links
  • Home
  • Login
  • RSS Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
18 results tagged programming x
  • C++ Rvalue References Explained
    Wed 21 Dec 2022 11:55:50 PM +08 - permalink -
    - http://thbecker.net/articles/rvalue_references/section_01.html
    c++ doc programming reference
  • BashPitfalls - Greg's Wiki
    This page is a compilation of common mistakes made by bash users. Each example is flawed in some way.
    Wed 09 Sep 2020 12:10:26 PM +08 - permalink -
    - https://mywiki.wooledge.org/BashPitfalls
    bash linux programming
  • The Joel Test: 12 Steps to Better Code – Joel on Software
    [2000-08-09]

    The Joel Test

    1.    Do you use source control?
    2.    Can you make a build in one step?
    3.    Do you make daily builds?
    4.    Do you have a bug database?
    5.    Do you fix bugs before writing new code?
    6.    Do you have an up-to-date schedule?
    7.    Do you have a spec?
    8.    Do programmers have quiet working conditions?
    9.    Do you use the best tools money can buy?
    10.    Do you have testers?
    11.    Do new candidates write code during their interview?
    12.    Do you do hallway usability testing?
    Sat 04 Aug 2018 09:15:52 AM +08 - permalink -
    - https://www.joelonsoftware.com/2000/08/09/the-joel-test-12-steps-to-better-code/
    code programming test
  • tabulate 0.7.5 : Python Package Index
    Pretty-print tabular data in Python, a library and a command-line utility.
    Wed 17 Aug 2016 11:56:52 PM +08 - permalink -
    - https://pypi.python.org/pypi/tabulate
    programming python table
  • Python module sarge - “Subprocess Allegedly Rewards Good Encapsulation”
    If you want to interact with external programs from your Python applications, Sarge is a library which is intended to make your life easier than using the subprocess module in Python’s standard library.
    Fri 22 Jan 2016 11:06:45 PM +08 - permalink -
    - https://sarge.readthedocs.org/en/latest/index.html
    lib process programming python sarge subprocess
  • Jupyter Ascending
    IPython 4.0 is out, completing the initial transition to Project Jupyter
    Wed 12 Aug 2015 11:20:24 PM +08 - permalink -
    - https://blog.jupyter.org/2015/08/12/first-release-of-jupyter/
    ipython jupyter programming python
  • Java class access pitfalls | Undocumented Matlab
    [Condensed mirror of the pitfalls, see the page for details]

    1. Forgetting or mistyping the package name: Since Java is case-sensitive, the package name must be exact.

    2. Mistyping the class name. As with package names, Java class names are also case-sensitive. Beware of cases of O/0 (capital-”o” vs. the digit zero), and I/l/1 (capital-”i” vs. lowercase “L” vs. the digit 1). Also note whether the class name includes the underscore (“_”) character.
         
    3. Using a Java class that was compiled using a newer JDK major-version than the JVM used in Matlab.

    4. Forgetting to update the Java classpath.

    5. Dependency #1: A class that depends on any other class that is not on the current Java classpath (either dynamic or static).

    6. Dependency #2: A class on the static Java classpath that depends on another class which is on the dynamic Java classpath. All static classes must depend only on other static classes, since the static classpath is processed before the dynamic one, when the JVM is launched at Matlab startup.
         
    7. Non-public class – Matlab can only access public classes. If the class is private, protected or has package visibility (by not specifying any visibility modifier at all), then the class would not be loadable by Matlab, only by other Java classes. So remember to add the public keyword in the definition of all the Java classes that you wish to directly use in Matlab.
         
    8. Non-public constructor – Matlab can only create objects for non-static classes that have public constructors. If all the class constructors are non-public, then Matlab cannot create a class instance object. In such a case we would get a misleading error message, that at least hints that the problem is with the constructor.
    Mon 01 Jun 2015 02:09:12 PM +08 - permalink -
    - http://undocumentedmatlab.com/blog/java-class-access-pitfalls
    java matlab programming
  • boltons — boltons 0.5.0 documentation
    Boltons is a set of pure-Python utilities in the same spirit as — and yet conspicuously missing from — the the standard library, including:

    - Atomic file saving, bolted on with fileutils
    - A highly-optimized OrderedMultiDict, in dictutils
    - Two types of PriorityQueue, in queueutils
    - Chunked and windowed() iteration, in iterutils
    - A full-featured TracebackInfo type, for representing stack traces, in tbutils
    Sat 11 Apr 2015 12:27:44 PM +08 - permalink -
    - https://boltons.readthedocs.org/en/latest/
    lib programming python tools
  • git clone in Haskell from the bottom up
    Mon 22 Dec 2014 11:03:40 PM +08 - permalink -
    - http://stefan.saasen.me/articles/git-clone-in-haskell-from-the-bottom-up/
    clone git haskell programming
  • Nuitka Home
    What is Nuitka
    The TL;DR ...

    Nuitka is a Python compiler.

    It's fully compatible with Python 2.6, 2.7, 3.2 and 3.3.

    You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.

    Free license (Apache).
    Mon 22 Dec 2014 10:49:00 PM +08 - permalink -
    - http://nuitka.net/pages/overview.html
    compiler exe programming python
  • Python Books
    Browse 225 Python Books. 53 Free Books.
    Fri 28 Nov 2014 11:35:21 PM +08 - permalink -
    - http://importpython.com/books/
    book programming python
  • xlwings - Replace Excel VBA with Python!
    Make Excel fly with Python!

    Replace your VBA code with Python, a powerful yet easy-to-use programming language that is highly suited for numerical analysis. Supports Windows & Mac!

    - Easy deployment: The receiver of an xlwings-powered spreadsheets only needs Python with minimal dependencies — or nothing at all when shipped with the Python
    - Cross-Platform: xlwings works with Microsoft Excel on Windows and Mac.
    - Plug-and-Play: No cumbersome installation of Excel add-ins or license keys.
    - Flexible: Works with pretty much every combination of Excel and Python.
    - Two way communication: Call Python from Excel or interact with Excel from Python.
    - Free and open-source: xlwings is released under a permissive BSD-License.
    Sun 28 Sep 2014 09:38:41 PM +08 - permalink -
    - http://xlwings.org/
    excel programming python vba windows
  • Python Module of the Week
    The Python Module of the Week series, or PyMOTW, is a tour of the Python standard library through short examples.
    Thu 31 Jul 2014 03:35:26 PM +08 - permalink -
    - http://pymotw.com/2/contents.html
    programming python
  • thumbnail
    Git pretty - So you have a mess on your hands
    Flowchart to solve common problems when something was done wrong in git.
    Wed 16 Jul 2014 10:42:43 AM +08 - permalink -
    - http://justinhileman.info/article/git-pretty/git-pretty.png
    dev flowchart git pretty programming
  • Writing code that runs under both Python2 and 3
    The intent of this page is to provide specific guidelines in a quick reference format for writing code that is compatible with both Python2 and Python3. The idea is that you can check this single page once you're familiar with the basic concepts and approaches but need a refresher on a specific coding techniques.
    Thu 31 Oct 2013 12:17:18 AM +08 - permalink -
    - https://wiki.python.org/moin/PortingToPy3k/BilingualQuickRef
    programming python
  • YouTube thumbnail
    Don't Do This - Python
    Video très drôle sur un tas de WTF en python. Niveau assez élevé.

    (via @sam_et_max sur twitter https://twitter.com/sam_et_max/status/385843305994395648)
    Fri 04 Oct 2013 01:30:13 AM +08 - permalink -
    - http://www.youtube.com/watch?v=H2yfXnUb1S4
    programming python wtf
  • Kint - a powerful and modern PHP debugging tool
    http://raveren.github.io/kint/
    Wed 11 Sep 2013 11:23:20 AM +08 - permalink -
    - https://github.com/raveren/kint/
    debug php programming
  • Why Python? | Linux Journal
    Traduction française : http://www.olivierpons.fr/2010/02/06/debutants-pourquoi-le-langage-python/
    Mon 26 Nov 2012 03:33:05 PM +08 - permalink -
    - http://www.linuxjournal.com/article/3882
    linux perl programming python
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, no-database delicious clone by the Shaarli community - Help/documentation