Saturday, June 24, 2023

Optuma control and good videos

good examples

  1. The Wheel of 24¶
  2. The Wheel of 24 chart was one of the charts used by W.D. Gann in identifying market turning points. Optuma has developed the Wheel of 24 using the same graphical power as the Square of Nine chart. The Wheel of 24 chart requires the Gann tool module add-on, and can be opened from the Gann folder located under the New menu button.

  3. The Square of Nine¶
  4. No longer is the old wooden Square of Nine wheel needed. Optuma first developed a fully customisable and interactive Square of Nine wheel in 2002, offering users complete control for quick and easy time and price target point identification using the methods of W.D. Gann.

    The Square of Nine is the most well known of Gann’s charts although he never revealed exactly where his ideas behind the chart came from - in fact, he only ever wrote one paragraph on it. However, Gann’s writing has been decoded to reveal that he used the Square of Nine to help call market tops and bottoms.

    Aspects reading

  5. How to Read Aspects in an Astrology Chart
  6. One of the more difficult transitions up-and-coming astrologers have to make is identifying aspects in a natal chart. All those lines can be disorienting! Here are some helpful tools you can use to increase your proficiency with identifying these planetary relationships!

  7. Aspects in Astrology
  8. The aspects in astrology. Geometric relationships between the planets shows how those parts of our psyche interact.

disk space user control and circular control

good Circular control projects and related user control demo projects...

need more Gauge controls...

  1. Dancing Links Library
  2. A VB.NET library with all necessary classes for exact cover solving with dancing links.

  3. Circular maze
  4. An algorithm which automatically generates circular mazes.

  5. Disc Used Space Control in Circle ProgressBar
  6. This Circle ProgressBar tells you about DVD or CD used space

  7. RoundButton Windows Control - Ever Decreasing Circles
  8. A Windows round button control in C# with designer support

  9. WYSIWYG Progress Circle for .NET Framework (C#)
  10. Progress Circle control for Windows Forms applications

  11. Mohr's Circle Calculator and Transformation of 2D State of Stress - in HTML5
  12. An HTML application to visualize the Mohr's Circle and Transformation of Two-Dimensional State of Stress.

  13. Circular Indeterminate Progress Indicator Control
  14. This article introduces the reader to the steps taken to create a user control that displays a circular indeterminate progress control.

  15. Soddy Crescent Construction
  16. An algorithm to construct and animate a Soddy Crescent

  17. Circular Progress Indicator
  18. Firefox like circular progress indicator

  19. Hypocycloid
  20. A Windows Forms control to model the behaviour of a hypocycloid curve.

  21. Using C to Blend Mathematics and Art (When Math goes Beautiful)
  22. Using C to blend Mathematics and Art that will produce a carving

  23. Photoshop-Style Angle and Altitude Selectors
  24. C# custom controls with the look and functionaliy of Photoshop's angle selectors.

  25. RadialControls - Normal Controls, BenT
  26. A tutorial on RadialControls - a library of circular controls for Windows 8 Apps.

  27. Targeting Design-Time Events of User Controls
  28. The article will go over various design-time features including smart tags, menu items, adornments.

  29. A 3D Plotting Library in C#
  30. A library which draws 3D images on any GDI+ Graphics object.

  31. RoundedButton Control - Demystifying DrawArc
  32. This article presents the RoundedButton control and describes the .Net DrawArc method, the subject of a number of questions on programming forums.

  33. The ViewPort Explorer
  34. A viewport explorer utility.

  35. Draw a US Flag using C# and GDI+
  36. This article shows how to draw graphics objects using C# and GDI+

  37. Data Structures in Object Oriented Programming
  38. There's a popular book that presents Data Structures tied to procedural code. Well, this article is all about using Data Structures in Object Oriented Programming.

  39. An SVG Analog Clock
  40. The basics of rendering a clock in Scalable Vector Graphics (SVG) is demonstrated in this article.

  41. A Resizable Analog Clock in C# using GDI+ & Windows Forms
  42. An analog clock using anti-aliasing & double-buffering which can be resized, even into elliptical shapes.

  43. Cool Angle Select Control (Photoshop style)
  44. A cool control to select angles.

  45. Making C++ Geometry headers
  46. Article about making C++ header files for simple 2D geometry objects.

  47. WPFSpark: 1 of n: SprocketControl
  48. A circular progress control in WPF

  49. A Simple Clock Using GDI+
  50. This is a simple analog clock that demonstrates the use of GDI+.

  51. CircleControl - A Circular Motion Control
  52. A circular motion control

  53. The Spiral TrackBar Control
  54. A track bar control which displays the track line as a spiral

  55. Proper Resizing of SplitterContainer Controls at any DPI
  56. A method of ensuring that SplitterContainer controls with fixed panels are properly resized when AutoScaleMode is ScaleMode.DPI

  57. Drawing Gears - Circular and Non Circular
  58. Learn about gears and by using the jpg's be able to cut working gears in wood and other materials

  59. A Circular List
  60. A circular list implementation

  61. Circular Gauge Custom Control for Silverlight 3 and WPF
  62. An article on creating a circular gauge custom control for Silverlight 3

  63. Circular Progress Control - Mac OS X style
  64. Create a circular progress control, like the one in Mac OS X, using GDI+.

  65. Organise/Launch Items in a Tabbed Circular 2D Canvas
  66. DeskTopCircles, hands-on experiment to Organise/Launch a larger number of items in a tabbed circular 2D canvas. Resize thumbs when dragging.

more understanding of GitHub concepts

this link has good starting points for GitHub basics

    Must Watch Video

  1. TortoiseGit Basics
  2. Here are the basics of working with TortoiseGit.

    Good Articles

  3. Git basics
  4. Git is a free and open-source version control system, originally created by Linus Torvalds in 2005. Unlike older centralized version control systems such as SVN and CVS, Git is distributed: every developer has the full history of their code repository locally. This makes the initial clone of the repository slower, but subsequent operations such as commit, blame, diff, merge, and log dramatically faster.

    Git also has excellent support for branching, merging, and rewriting repository history, which has led to many innovative and powerful workflows and tools. Pull requests are one such popular tool that allows teams to collaborate on Git branches and efficiently review each other's code. Git is the most widely used version control system in the world today and is considered the modern standard for software development.

    Here is a basic overview of how Git works:

    1. Create a "repository" (project) with a git hosting tool (like Bitbucket)
    2. Copy (or clone) the repository to your local machine
    3. Add a file to your local repo and "commit" (save) the changes
    4. "Push" your changes to your main branch
    5. Make a change to your file with a git hosting tool and commit
    6. "Pull" the changes to your local machine
    7. Create a "branch" (version), make a change, commit the change
    8. Open a "pull request" (propose changes to the main branch)
    9. "Merge" your branch to the main branch

  5. About commits
  6. You can save small groups of meaningful changes as commits.

GitHub desktop version

With GitHub Desktop, you can interact with GitHub using a GUI instead of the command line or a web browser. You can use GitHub Desktop to complete most Git commands from your desktop, such as pushing to, pulling from, and cloning remote repositories, attributing commits, and creating pull requests, with visual confirmation of changes.

  1. GitHub Desktop
  2. Focus on what matters instead of fighting with Git. Whether you're new to Git or a seasoned user, GitHub Desktop simplifies your development workflow.

  3. GitHub Desktop documentation
  4. start points from here..

  5. How to use GitHub Desktop: The easy tutorial(Part1)
  6. In this video, we'll learn how to install, clone, and make repositories and use the GitHub Desktop easily and how it works in a better way than the terminal. Learn all you need for the GitHub Desktop to master it along with me.

Friday, June 16, 2023

SVG editor

good tools and draw tool code

  1. Simple SVG Editor
  2. This application is a combination of two projects from The Code Project: DrawTools by Alex Fry and SVGPad by Maurizio Bigoloni