Mind map gallery: Difference between revisions

From FreeMind
Jump to navigationJump to search
mNo edit summary
(→‎Python: Added the Python Computer Language top-level link with notes about it.)
Line 49: Line 49:


===Python===
===Python===
Most of these notes have been based on '''The Quick Python Book''' from 1999, for Python 1.5.2.  [[User:SimonTeW|SimonTeW]]
<mm>[[:Python_InternetLinks.mm|Python Computer Language|flash|title Python Computer Language - Contents|parameters startCollapsedToLevel=4]]</mm> Notes on the Python computer language.  It doesn't include the absolute basics, such as significant white-space or how to create variables.  It also skips the basics of data types and control flow (see the Quick Reference link in the mind-map for those). 
 
Most of these notes have been based on '''The Quick Python Book''' from 1999, which uses Python 1.5.2.  As a result, language features from newer versions of Python, such as list comprehensions, are not included.  [[User:SimonTeW|SimonTeW]] 02:34, 17 Mar 2008 (PDT)
 
This mind-map acts as a contents page, just listing major topics.  Each major topic in the mind-map has a link to a sub-map with details of that topic.  If you wish to view the sub-maps directly, they are listed below:
#<mm>[[:Python_NamingConventions.mm|Python Naming Conventions|flash|title Python Naming Conventions|parameters startCollapsedToLevel=4]]</mm> Naming conventions for modules, classes, functions, etc.  From PEP 8. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_NamingConventions.mm|Python Naming Conventions|flash|title Python Naming Conventions|parameters startCollapsedToLevel=4]]</mm> Naming conventions for modules, classes, functions, etc.  From PEP 8. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Numeric.mm|Python Data Types - Numerics|flash|title Python Numeric Data Types|parameters startCollapsedToLevel=4]]</mm> A few notes about Python numeric data types.  Not comprehensive. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Numeric.mm|Python Data Types - Numerics|flash|title Python Numeric Data Types|parameters startCollapsedToLevel=4]]</mm> A few notes about Python numeric data types.  Not comprehensive. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
Line 55: Line 59:
#<mm>[[:Python_DataTypes_Dictionary.mm|Python Data Types - Dictionary|flash|title Python Dictionary Data Type|parameters startCollapsedToLevel=4]]</mm> Python dictionary data type. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Dictionary.mm|Python Data Types - Dictionary|flash|title Python Dictionary Data Type|parameters startCollapsedToLevel=4]]</mm> Python dictionary data type. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Bool.mm|Python Data Types - Booleans|flash|title Python Booleans|parameters startCollapsedToLevel=4]]</mm> What evaluates to True, what evaluates to False. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Bool.mm|Python Data Types - Booleans|flash|title Python Booleans|parameters startCollapsedToLevel=4]]</mm> What evaluates to True, what evaluates to False. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Checking.mm|Python Data Types - Testing|flash|title Testing for Python Data Types|parameters startCollapsedToLevel=4]]</mm> How to test Python data types. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataTypes_Checking.mm|Python Data Types - Testing|flash|title Testing for Python Data Types|parameters startCollapsedToLevel=3]]</mm> How to test Python data types. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_ControlFlow.mm|Python Control Flow|flash|title Python Control Flow|parameters startCollapsedToLevel=4]]</mm> Control flow in Python.  Skips the basics, such as the for loop. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_ControlFlow.mm|Python Control Flow|flash|title Python Control Flow|parameters startCollapsedToLevel=4]]</mm> Control flow in Python.  Skips the basics, such as the for loop. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Functions.mm|Python Functions|flash|title Python Functions|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Functions.mm|Python Functions|flash|title Python Functions|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Modules.mm|Python Modules|flash|title Python Modules|parameters startCollapsedToLevel=4]]</mm> Information about modules in Python, not a list of built-in modules. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Modules.mm|Python Modules|flash|title Python Modules|parameters startCollapsedToLevel=4]]</mm> Information about modules in Python, not a list of built-in modules. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Scripts.mm|Python Scipts|flash|title Python Scripts|parameters startCollapsedToLevel=4]]</mm> Scripts in Python, including commandline arguments and options, and redirecting input and output. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Scripts.mm|Python Scipts|flash|title Python Scripts|parameters startCollapsedToLevel=3]]</mm> Scripts in Python, including commandline arguments and options, and redirecting input and output. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Packages.mm|Python Packages|flash|title Python Packages|parameters startCollapsedToLevel=4]]</mm> Python packages, including __init__.py files and rules for importing packages, sub-packages. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Packages.mm|Python Packages|flash|title Python Packages|parameters startCollapsedToLevel=4]]</mm> Python packages, including __init__.py files and rules for importing packages, sub-packages. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Classes.mm|Python Classes|flash|title Python Classes|parameters startCollapsedToLevel=4]]</mm> Using classes in Python: Defining them, instance and class variables, methods, constructors & destructors, inheritance, etc. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Classes.mm|Python Classes|flash|title Python Classes|parameters startCollapsedToLevel=4]]</mm> Using classes in Python: Defining them, instance and class variables, methods, constructors & destructors, inheritance, etc. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
Line 66: Line 70:
#<mm>[[:Python_Path.mm|Python Path (sys.path)|flash|title Python Path (sys.path)|parameters startCollapsedToLevel=4]]</mm> Initialising or adding to sys.path. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_Path.mm|Python Path (sys.path)|flash|title Python Path (sys.path)|parameters startCollapsedToLevel=4]]</mm> Initialising or adding to sys.path. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_FileSystem.mm|Useful Python Functions for Operating on the File System|flash|title Useful Python Functions for Operating on the File System|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_FileSystem.mm|Useful Python Functions for Operating on the File System|flash|title Useful Python Functions for Operating on the File System|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_FileIO.mm|Python File IO|flash|title Python File IO|parameters startCollapsedToLevel=4]]</mm> Reading and writing text and binary files. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_FileIO.mm|Python File IO|flash|title Python File IO|parameters startCollapsedToLevel=3]]</mm> Reading and writing text and binary files. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataSerialization.mm|Python Data Serialization|flash|title Python Data Serialization|parameters startCollapsedToLevel=4]]</mm> Serializing and de-serializing data using the cPickle module. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_DataSerialization.mm|Python Data Serialization|flash|title Python Data Serialization|parameters startCollapsedToLevel=4]]</mm> Serializing and de-serializing data using the cPickle module. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_SpecialAttributes.mm|Python Special Method Attributes|flash|title Python Special Method Attributes|parameters startCollapsedToLevel=4]]</mm> Notes on some special method attributes, such as __str__ . [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_SpecialAttributes.mm|Python Special Method Attributes|flash|title Python Special Method Attributes|parameters startCollapsedToLevel=3]]</mm> Notes on some special method attributes, such as __str__ . [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_RegularExpressions.mm|Python Regular Expressions|flash|title Python Regular Expressions|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_RegularExpressions.mm|Python Regular Expressions|flash|title Python Regular Expressions|parameters startCollapsedToLevel=4]]</mm> [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_COMServer.mm|Python COM Server (Windows Only)|flash|title Python COM Server (Windows Only)|parameters startCollapsedToLevel=4]]</mm> Creating a Windows COM server in Python using PythonWin. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_COMServer.mm|Python COM Server (Windows Only)|flash|title Python COM Server (Windows Only)|parameters startCollapsedToLevel=3]]</mm> Creating a Windows COM server in Python using PythonWin. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_COMClientSide.mm|Python Client-side COM (Windows Only)|flash|title Python Client-side COM (Windows Only)|parameters startCollapsedToLevel=4]]</mm> Notes on client-side COM in Python using PythonWin. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)
#<mm>[[:Python_COMClientSide.mm|Python Client-side COM (Windows Only)|flash|title Python Client-side COM (Windows Only)|parameters startCollapsedToLevel=4]]</mm> Notes on client-side COM in Python using PythonWin. [[User:SimonTeW|SimonTeW]] 02:52, 16 Mar 2008 (PDT)



Revision as of 09:34, 17 March 2008

This gallery shows mind maps contributed by FreeMind users. Many of the mind maps are shown in a Flash browser, which looks different from the FreeMind application.

  • For non-English mind maps just use another wiki pages and link to them from this section


Maps in English

Technology

Investing

Business Procedures, Workflows, Models

  • Sascha Mundstein's maps on mind mapping and business topics, including attacking problems, creativity, a model for venture capital investment analysis, risk management plan, a book review, and an online marketing framework.
  • Business Plan generator, contains a mindmap and a small number of OpenOffice.org spreadsheets (linked to from within the mindmap). Most nodes on the mindmap have notes containing clear explanations of what you need to do, and the rest are self-explanatory. Use this to work out your business plan. Add all the info as notes on the nodes. When you're happy with it, export it to OpenOffice Writer format, then edit the doc and link in the spreadsheets, and hey presto, you've got a complete polished business plan ready to take to the bank or your favourite VC.

Chemistry

Computer Languages

Python

<mm>Python Computer Language|flash|title Python Computer Language - Contents|parameters startCollapsedToLevel=4</mm> Notes on the Python computer language. It doesn't include the absolute basics, such as significant white-space or how to create variables. It also skips the basics of data types and control flow (see the Quick Reference link in the mind-map for those).

Most of these notes have been based on The Quick Python Book from 1999, which uses Python 1.5.2. As a result, language features from newer versions of Python, such as list comprehensions, are not included. SimonTeW 02:34, 17 Mar 2008 (PDT)

This mind-map acts as a contents page, just listing major topics. Each major topic in the mind-map has a link to a sub-map with details of that topic. If you wish to view the sub-maps directly, they are listed below:

  1. <mm>Python Naming Conventions|flash|title Python Naming Conventions|parameters startCollapsedToLevel=4</mm> Naming conventions for modules, classes, functions, etc. From PEP 8. SimonTeW 02:52, 16 Mar 2008 (PDT)
  2. <mm>Python Data Types - Numerics|flash|title Python Numeric Data Types|parameters startCollapsedToLevel=4</mm> A few notes about Python numeric data types. Not comprehensive. SimonTeW 02:52, 16 Mar 2008 (PDT)
  3. <mm>Python Data Types - Sequences|flash|title Python Sequence Data Types|parameters startCollapsedToLevel=4</mm> Python sequence data types: Strings, lists, tuples. SimonTeW 02:52, 16 Mar 2008 (PDT)
  4. <mm>Python Data Types - Dictionary|flash|title Python Dictionary Data Type|parameters startCollapsedToLevel=4</mm> Python dictionary data type. SimonTeW 02:52, 16 Mar 2008 (PDT)
  5. <mm>Python Data Types - Booleans|flash|title Python Booleans|parameters startCollapsedToLevel=4</mm> What evaluates to True, what evaluates to False. SimonTeW 02:52, 16 Mar 2008 (PDT)
  6. <mm>Python Data Types - Testing|flash|title Testing for Python Data Types|parameters startCollapsedToLevel=3</mm> How to test Python data types. SimonTeW 02:52, 16 Mar 2008 (PDT)
  7. <mm>Python Control Flow|flash|title Python Control Flow|parameters startCollapsedToLevel=4</mm> Control flow in Python. Skips the basics, such as the for loop. SimonTeW 02:52, 16 Mar 2008 (PDT)
  8. <mm>Python Functions|flash|title Python Functions|parameters startCollapsedToLevel=4</mm> SimonTeW 02:52, 16 Mar 2008 (PDT)
  9. <mm>Python Modules|flash|title Python Modules|parameters startCollapsedToLevel=4</mm> Information about modules in Python, not a list of built-in modules. SimonTeW 02:52, 16 Mar 2008 (PDT)
  10. <mm>Python Scipts|flash|title Python Scripts|parameters startCollapsedToLevel=3</mm> Scripts in Python, including commandline arguments and options, and redirecting input and output. SimonTeW 02:52, 16 Mar 2008 (PDT)
  11. <mm>Python Packages|flash|title Python Packages|parameters startCollapsedToLevel=4</mm> Python packages, including __init__.py files and rules for importing packages, sub-packages. SimonTeW 02:52, 16 Mar 2008 (PDT)
  12. <mm>Python Classes|flash|title Python Classes|parameters startCollapsedToLevel=4</mm> Using classes in Python: Defining them, instance and class variables, methods, constructors & destructors, inheritance, etc. SimonTeW 02:52, 16 Mar 2008 (PDT)
  13. <mm>Python Scoping and Namespaces|flash|title Python Scoping and Namespaces|parameters startCollapsedToLevel=4</mm> SimonTeW 02:52, 16 Mar 2008 (PDT)
  14. <mm>Python Exceptions|flash|title Python Exceptions|parameters startCollapsedToLevel=4</mm> Python exceptions and assertions. Includes raising and handling exceptions. SimonTeW 02:52, 16 Mar 2008 (PDT)
  15. <mm>Python Path (sys.path)|flash|title Python Path (sys.path)|parameters startCollapsedToLevel=4</mm> Initialising or adding to sys.path. SimonTeW 02:52, 16 Mar 2008 (PDT)
  16. <mm>Useful Python Functions for Operating on the File System|flash|title Useful Python Functions for Operating on the File System|parameters startCollapsedToLevel=4</mm> SimonTeW 02:52, 16 Mar 2008 (PDT)
  17. <mm>Python File IO|flash|title Python File IO|parameters startCollapsedToLevel=3</mm> Reading and writing text and binary files. SimonTeW 02:52, 16 Mar 2008 (PDT)
  18. <mm>Python Data Serialization|flash|title Python Data Serialization|parameters startCollapsedToLevel=4</mm> Serializing and de-serializing data using the cPickle module. SimonTeW 02:52, 16 Mar 2008 (PDT)
  19. <mm>Python Special Method Attributes|flash|title Python Special Method Attributes|parameters startCollapsedToLevel=3</mm> Notes on some special method attributes, such as __str__ . SimonTeW 02:52, 16 Mar 2008 (PDT)
  20. <mm>Python Regular Expressions|flash|title Python Regular Expressions|parameters startCollapsedToLevel=4</mm> SimonTeW 02:52, 16 Mar 2008 (PDT)
  21. <mm>Python COM Server (Windows Only)|flash|title Python COM Server (Windows Only)|parameters startCollapsedToLevel=3</mm> Creating a Windows COM server in Python using PythonWin. SimonTeW 02:52, 16 Mar 2008 (PDT)
  22. <mm>Python Client-side COM (Windows Only)|flash|title Python Client-side COM (Windows Only)|parameters startCollapsedToLevel=4</mm> Notes on client-side COM in Python using PythonWin. SimonTeW 02:52, 16 Mar 2008 (PDT)

Educational

Personal Learning Environment Map Gallery

Medicine

Software

  • I would like mind map to be able to <mm> export as a javascript Pie Menu, </mm> not a tree menu. That will give similar functionality without flash or java and make this a true break-out product. --Phalseid 22:49, 14 Jul 2007 (PDT)

    happy blending!

Free Mind

TRUCOS

Teachable, Reusable Units of Cognition in Open Source: Open Source software presented by means of the TRUC educational pattern.

Spirituality

Miscellaneous

  • Steuerrecht.mm moved to the Mind Map Gallery in German

Links to Map Galleries in other languages (alphabetical order)

Bahasa Indonesia

Chinese

French

German

Hungarian

Italian

Japanese

Portuguese

Russian

Spanish

Turkish