From 38aa76dd50bac44c01150c345e48ab826db61375 Mon Sep 17 00:00:00 2001 From: Julien Delplanque Date: Thu, 21 Nov 2019 11:44:55 +0100 Subject: [PATCH 1/2] Removed todo and created related issue. --- General/InterestingsToKnowForBeginners.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/General/InterestingsToKnowForBeginners.md b/General/InterestingsToKnowForBeginners.md index dc14b540..ddfdf8bb 100644 --- a/General/InterestingsToKnowForBeginners.md +++ b/General/InterestingsToKnowForBeginners.md @@ -8,7 +8,6 @@ The goal is to ease the use of Pharo for beginners. - [Evaluatable objects (Blocks and Symbols)](#evaluatable-objects--blocks-and-symbols-) - [Tools](#tools) * [Calypso System Browser](#calypso) - * [Dependency Analyzer](#dependency-analyzer) - [Flags](#flags) - [Useful pragmas](#useful-pragmas) * [Modify IDE](#modify-ide) @@ -29,8 +28,6 @@ String concatenation can be costly because it will create a new string instance String streamContents: [ :aStream | aStream << 'This is a '<< 'strong concatenation ' << 'that is ' << ' ' << ' efficient' ] ``` -> TODO - ## Evaluatable objects (Blocks and Symbols) Pharo's Blocks and Symbols have an interesting property: they are polymorphic through `#value:` and `#cull:` methods. @@ -66,8 +63,6 @@ The second way is shorter and often more readable. ## Tools -> TODO - ### Calypso (System browser) - Display the differences between two methods @@ -82,10 +77,6 @@ The second way is shorter and often more readable. * Click on all the methods you want to edit. * Tabs are displayed with the source code of the methods selected. -### Dependency Analyzer - -> TODO - ## Flags It is possible to "flag" methods in Pharo in order to be able to retrieve them later. This can be done by sending the `#flag:` message to self with a symbol as parameter which is the flag to be used. From 8acdaa4d7938349180bb41f76fd31e3767532986 Mon Sep 17 00:00:00 2001 From: Julien Delplanque Date: Thu, 21 Nov 2019 11:45:24 +0100 Subject: [PATCH 2/2] Removed unfinished badge. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f80e27a..6587cf04 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The goals of the wiki are explained in the [Manifest](MANIFEST.md) and contribut - [Setting up a new project](General/SettingUpANewProject.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat) - [Things beginners must learn](General/MustKnowForBeginners.md) -- [Interesting things to know for beginners](General/InterestingsToKnowForBeginners.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat) +- [Interesting things to know for beginners](General/InterestingsToKnowForBeginners.md) - [How to run Pharo from the command line](General/HowToRunPharoFromCommandLine.md) - How to run pharo from the command line. - [Glossary](General/Glossary.md) ![Unfinished](https://img.shields.io/badge/Progress-Unfinished-yellow.svg?style=flat)