Just a little overview
Read the news!
Just a little overview
Read the news!
Hi,
The "Gravatar" project is a simple wrapper for the Gravatar API allowing you to get small avatar images for a given registered email address. You can easily access and use it in Pharo.
The project is located on STHub at http://smalltalkhub.com/#!/~TorstenBergmann/Gravatar
To install just open the Pharo configuration browser and load "Gravatar" from there.
You can also install manually, read the docu on the project page.
Some examples:
Gravatar imageURLFor: '[email protected]'
If you require a different size just evaluate:
Gravatar imageURLFor: '[email protected]' size: 32.
If you need the real image you can use Pharos Zinc components suite to get the image form over HTTP and open it on your Pharo desk:
|form|
form := ZnEasy getJpeg: (self imageURLFor: '[email protected]').
form asMorph openInWorld
In the end it is just a simple class - but I think it may be useful for
others too.
Thx
T.
30823
30822
30821
30820
30819
30818
30817
30816
30815
Hi, FontAwesome is (as you may know) an iconic font designed for the user with Twitter Bootstrap. I now created a "FontAwesome for Seaside" project - which is a small Seaside wrapper for the FontAwesome project (using the latest version 4.0.3). This is intended as an addition to the already available "Bootstrap for Seaside" [2] project that I wrote and both should allow you to give your Smalltalk based web application a nice stylish look. The project is located on STHub, see [1] where you will also find the documentation. A live demo can be found on http://pharo.pharocloud.com/fontawesome. To try yourself load it from the Pharo config browser or read the docu to see what is required. Thx T. [1] http://smalltalkhub.com/#!/~TorstenBergmann/FontAwesome [2] http://smalltalkhub.com/#!/~TorstenBergmann/Bootstrap
Mapless is a small framework for storing objects in a key->data fashion (i.e.: noSQL databases) without requiring any kind of object-data map. So far only MongoDB is supported. It can use Redis for reactivity (pub/sub) and cache.
I wanted to persist objects with extremely low friction and extremely low maintenanceand great scaling and availability capabilities so Mapless is totally biased towards that. This framework is what I came up with after incorporating my experience withAggregate.
There is no spoon…
There is no object-relational impedance…
There is no instVars…
Sean De Nigris announced a first initial support for DigitalOcean. Here is the mail sent by its author.
The embryo is alive. See documentation at
http://smalltalkhub.com/#!/~SeanDeNigris/DigitalOcean
A few supported operations:
DoDroplet allActive.
DoDroplet allActive detect: [ :e | e name = ‘mycooldomain.org‘ ].
DoDropletSize all.
DoDropletSize named: ‘512MB’
30814
30813
30812
30809
30808
30807
30806
30805
30803
30802
30801
30800
There was one announce about C# tool to see ASTs and Alexandre Bergel shows that within minutes you could get the same in Pharo with roassal :). Here is what he is saying:
I am not sure to what syntax visualization is useful for, but indeed, this is easy in Roassal. Assuming a class MyVisitor, that simples collect the nodes of the AST.
g applyLayout.
g view
RTMetricMap new example06DeepIntoPharo
b allCountriesColor: Color white.
b countries: table values named: #first metric: #third.
b open