Re: [Pharo-users] Repeateble URLs - REST?

2019-02-26 Thread S Krish
should I handle the routes? with Seaside REST? > > On February 25, 2019 at 2:56:49 PM, S Krish ( > krishnamachari.sudha...@gmail.com) wrote: > > https://restfulapi.net/resource-naming/ > <https://restfulapi.net/resource-naming/> > > https://docs.microsoft.com/en-u

Re: [Pharo-users] Repeateble URLs - REST?

2019-02-25 Thread S Krish
This is fine: www.bagelconcertfinder.com/zipcodes/{zipCode} Preferred is : *https://..siteName.../boundedContext/resourceInPlural/{resourceId}* So this can be as you state but without _ underscores and "concertBlogging" is identified bounded context for a set of resources https://siteName

Re: [Pharo-users] How much abuse can Teapot take?

2016-06-09 Thread S Krish
Looked robust enough in my internal experiments.. I tweaked the Teapot further for easy implementation too.. Used it in my prototype with Angular JS thin framework.. works good. the limits seemed to be more dependent on the Pharo image limits nothing to do with Teapot per se. Scale it with multi

Re: [Pharo-users] New project: AR.Drone communication API in Pharo

2016-04-09 Thread S Krish
Very interesting and well done. *Observations: from a 15 min review. beyond the basics .. which really is well done. Hope I can play with it sometime when I get time.. * Love the commandQueue and UDP handling and this block: senderProcess := [[ | nextCommand | "dequeue the next command, enumera

[Pharo-users] From vwnc interesting..

2016-04-04 Thread S Krish
| x y | x := 2.0. [x > 0] whileTrue: [x := x / 2]. y := -2.0. [y < 0] whileTrue: [y := y / 2]. (x = 0.0) -> (x = y) -> ((x basicAt: 1) = (y basicAt: 1)) printIt returns true->true->false and: x = 0.0 and y = -0.0 the negative 0.0 https://en.wikipedia.org/wiki/Signed_zero

Re: [Pharo-users] AgileVisualization - call for reviewers

2015-12-24 Thread S Krish
The video is an excellent work of art not just the content it conveys of a better world with Open Annotations..!.. On Thu, Dec 24, 2015 at 3:57 AM, Offray Vladimir Luna Cárdenas < off...@riseup.net> wrote: > > > On 23/12/15 17:00, Alexandre Bergel wrote: > > Thanks Offray! > > > No problem. > > I

Re: [Pharo-users] Spreadsheet editor

2015-08-11 Thread S Krish
Should try an ActiveX / Open Office embedded in Pharo if the whole capability of spreadsheets is required from Pharo. On Tue, Aug 11, 2015 at 10:15 PM, Peter Uhnák wrote: > Hi, > > since there has been talk about Tabular/DOCX, > is there any project aimed at actually editing tables/spreadsheet

[Pharo-users] Smalltalker required

2015-08-08 Thread S Krish
" We are looking for smalltalk developers in US. Must have L1 or H1, or any other valid work visa. Job location would be Atlanta. JD: 1.) Visual age Smalltalk V5.0 2.) Strong debugging, File handling and UI designing using VAST5.0 3.) Strong database skillset using SQL 4.) Analyzing production

[Pharo-users] Bill Gross: The single biggest reason why startups succeed

2015-07-20 Thread S Krish
Check out this amazing TEDTalk: Bill Gross: The single biggest reason why startups succeed http://on.ted.com/h15YB

Re: [Pharo-users] Quuve in action

2015-05-15 Thread S Krish
Really nice.. On Sat, May 16, 2015 at 3:47 AM, Cameron Sanders via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From: Cameron Sanders > To: Any question about pharo is welcome > Cc: > Date: Fri, 15 May 2015 18:17:17 -0400 > Subject: Quuve in

Re: [Pharo-users] String operations

2015-04-09 Thread S Krish
Perfectly stated..! btw, I really liked the python string API's when I worked with them. simple, intuitive but effective in nearly all that I needed in it. On Thu, Apr 9, 2015 at 12:59 PM, Sean P. DeNigris wrote: > Damien Pollet-2 wrote > > Indeed, there is much to say about the String API :)

Re: [Pharo-users] Pharo / J - Integration

2015-03-08 Thread S Krish
Really Cool On Sun, Mar 8, 2015 at 5:43 PM, Herr Martin Saurer wrote: > Hello All > > Pharo now has an integration into the J programming language. > > Please see: http://youtu.be/5JMMgZGRMHw > > for a Demo as well as for download and installation instructions. > > Have fun !!! > > Martin > >

Re: [Pharo-users] GSoC mentor assistance for FOSSASIA smalltalk projects please

2015-03-05 Thread S Krish
Create a file editor and asset manager solution with smalltalk I would be interested in assisting in this project. Harks me back to what I attempted with VisualWorks and SimpleWeb Framework I created more than a decade back with complete editor / projects IDE that had artifacts covering all that i

Re: [Pharo-users] Linux and Windows 3.0 differences

2015-03-05 Thread S Krish
"copy&paste from Chrome to Pharo 4.0 workspace/Playground on Ubuntu did not work either." As also an issue if you do it from MS Office, MS Outlook .. et als. I have mostly seen this to be a quote error. That is the quote surrounding any string is copied with an encoding that makes it some oth

Re: [Pharo-users] Pharo and Docker

2015-02-20 Thread S Krish
Sweet stuff.. I was planning on the Seaside-Angular-REST Teapot+Java Spark modules on Docker.. Will catch up on this.. On Fri, Feb 20, 2015 at 4:16 PM, p...@highoctane.be wrote: > https://www.clever-cloud.com/blog/guests/2015/01/05/smalltalk-in-the-cloud/ > Le 20 févr. 2015 10:59, "

Re: [Pharo-users] Pharo and Docker

2015-02-20 Thread S Krish
Not so much Pharo on Docker, but a complete stack on Docker based on Pharo: * Seaside or any web framework.. * Multi module that can be fabric like be brought up for scaling * Moose ... On Fri, Feb 20, 2015 at 2:22 PM, Torsten Bergmann wrote: > Docker is on hype these days: > https://www.doc

Re: [Pharo-users] i feel dumb / Pharo3 > OrderedCollection >> do:

2015-02-19 Thread S Krish
I presumed shallowCopy for literal arrays / OrderedCollection should have been a true copy. Perhaps need to understand this.. shallowCopy "Answer a copy of the receiver which shares the receiver's instance variables. It should never be overridden. I'm invoked from the copy template method. Sub

Re: [Pharo-users] recover lost changes

2015-02-12 Thread S Krish
Can I get the link to this change set. On Wed, Feb 11, 2015 at 10:05 PM, Sean P. DeNigris wrote: > Marcus Denker-4 wrote > > The issue is here > > And the solution is right there in the comment! > > > Pharo Issue Tracker wrote > > ChangesLog default > > is not registered for the SystemAnnouncer.

Re: [Pharo-users] REST approach?

2015-02-04 Thread S Krish
;-) >> >> > Hi Olivier, > > Is there some documentation, post or example about that? > > Thanks, > > > >> Olivier >> >> 2015-02-04 7:13 GMT+01:00 S Krish : >> >>> >>> Seaside REST / Teapot aka Sinatra from Ruby ho

Re: [Pharo-users] REST approach?

2015-02-03 Thread S Krish
Seaside REST / Teapot aka Sinatra from Ruby hope to push this framework further On Wed, Feb 4, 2015 at 9:35 AM, Cameron Sanders via Pharo-users < pharo-users@lists.pharo.org> wrote: > > > -- Forwarded message -- > From: Cameron Sanders > To: Any question about pharo is welc

Re: [Pharo-users] Building agents in Pharo

2014-12-23 Thread S Krish
How about this: http://www.wolframalpha.com/ Not really free form text but quite a bit keyword dependent. Closer to what will make good sense on Pharo / every enterprise app also more contextual based on what the app does. On Tue, Dec 23, 2014 at 10:17 PM, Andy Burnett < andy.burn...@knowinn

[Pharo-users] MVC/ MVP / DCI Patterns..

2014-11-29 Thread S Krish
In the context of spec / UI / enterprise solutions, I have been mulling over this for some time especially when I play with FXML. To put it in context, I find FXML intriguing and nice. XML metadata that stays completely outside the code and makes it uber flexible to weave in UI to a enterpris

Re: [Pharo-users] Pharo and ODBC

2014-11-20 Thread S Krish
Plausible Pharo 32 bit / 64 bit conflict..? http://msdn.microsoft.com/en-us/library/ms712362%28v=vs.85%29.aspx "If you use the 64-bit odbcad32.exe to configure or remove a DSN that connects to a 32-bit driver, for example, Driver do Microsoft Access (*.mdb), you will receive the following error m

Re: [Pharo-users] Opentalk or remoting libraries

2014-11-12 Thread S Krish
How about lightweight XMLRPC ? Just for messages, not features around it. On Wed, Nov 12, 2014 at 10:47 PM, Annick Fron wrote: > Hi, > > Are there some libraries in pharo to do remote calls like in Opentalk or > Corba ? > > Annick >

Re: [Pharo-users] Render PDF / Web Document in Pharo

2014-11-05 Thread S Krish
embedding a viewer like Java / COM component could be attempted with Native Boost.. that is a framework creation effort. viz in Visualworks: | acrobatInterface arguments | acrobatInterface := COMDispatchDriver createObject: 'AcroExch.AVDoc'. arguments := Array new: 10 withAll: 0. arguments

Re: [Pharo-users] How not to serve an AngularJs application from Pharo

2014-10-29 Thread S Krish
"would it not be better to have the html / css and js code outside the image ? so instead to load files instead of return strings ? " *GET: '/index.html' -> [ self openspaceHtml ]; * can be modified to: *GET: '/index.html' -> [ self fetch: 'html/openspace.html' ]; * and the *fetch:* method c

Re: [Pharo-users] Pratsch

2014-10-28 Thread S Krish
Unlike in C/ C++ world where packaging creates an exe, Smalltalk has no packaged content for its program. Similar to Smalltalk is Java that packages its code / compiled bytecode as a jar . This jar can be "executable" but per se what it does is to start a JVM with loading of all the necessary depe

Re: [Pharo-users] About Zinc http components

2014-10-07 Thread S Krish
Typical issue in the EJB world : Remote Beans / Local Beans , though on inter process it was remote beans with its full stack RMI marshalling / unmarshalling. But can we not exploit shared memory and efficient Event mechanism to make the two process coordinate, that should be lot more efficient th

Re: [Pharo-users] BLOG: Block Translators - parsing magic

2014-09-23 Thread S Krish
MarkupBuilder in Groovy uses similar logic #doesNotUnderstand: .. but not debug capable ..!.. On Tue, Sep 23, 2014 at 1:45 PM, kilon alios wrote: > it reminds a lot of Kent's Beck Smalltalk Practice Patterns where it > removes all ifs and replaces them with regular unary messages . It is > defi

Re: [Pharo-users] Booting into Pharo!

2014-09-19 Thread S Krish
try the TCL + Pharo stuff. It is simple and easy to hook up. Tiny Core gets it down to around 20 MB for a bare bone linux + Pharo can be similar to Android if one goes down the path. On Fri, Sep 19, 2014 at 9:48 PM, Mayuresh Kathe wrote: > Hello, > > While I am still waiting for my copy of the

Re: [Pharo-users] Zoomable & Infinitely scrollable PasteupMorph

2014-09-16 Thread S Krish
Interesting thought from a CAD drawing world, one does this all the time.. Basic morph level zooms as a contained sub morphs to some extent could be possible as proof of concept. I am sure it will be lot more involved beyond a point to make everything contained zoomable, text editor: text / image

Re: [Pharo-users] Hello ...

2014-09-05 Thread S Krish
be taken to a whole new level, and that's > what I intend to work on once I've gained enough command over the > environment and the programming language. > > Best, > > ~Mayuresh > > > On 2014-09-05 22:39, S Krish wrote: > >> Welcome to the Smalltalk world..

Re: [Pharo-users] Hello ...

2014-09-05 Thread S Krish
Welcome to the Smalltalk world.. You would have already seen: http://pharo.org/documentation in particular: http://pharobyexample.org/ In Pharo Start with the Pharo Tutorials through ( Left Click on the World, Help >> Pharo Tutorials ) Watch the screencasts.. in the documentation page..

Re: [Pharo-users] GUI construction under Pharo

2014-09-01 Thread S Krish
For Java ; JavaFx seems more the future for desktop UI.. Swing and SWT gets subsumed and interact well too. Nice XML descriptor but gets fairly complex code punting for anything moderately complex UI.. But charting and the UI capabilities are significantly nicer in JavaFx overall.. On Mon, Sep

Re: [Pharo-users] [ANN] Teapot 0.8 micro web framework

2014-08-28 Thread S Krish
. > > > you are quicker off the block > you are quickly off the block > > > This also provides a flexibility in scaling > This also provides flexibility in scaling > > cheers -ben > > S Krish wrote: > > > The framework is nice.. and addictive to play

Re: [Pharo-users] [ANN] Teapot 0.8 micro web framework

2014-08-28 Thread S Krish
The framework is nice.. and addictive to play with as stated before, well documented, clean and easy.. ! Potentially a good tool to weave into any app. My quick play with the framework, surprised me with its productive usage.. so here it goes.. Teapot: Pharo web REST framework, it ain’t micro

Re: [Pharo-users] Can Pharo meet all your computing needs?

2014-08-25 Thread S Krish
" The Dynabook SW architecture must be open so that owners can safely install functionality ('apps') that is available in a marketplace. (The i-pad with its hardware and its marketplace for apps is at the back of my mind.)" Can the intent be expanded a bit more. Is this an intent to have a Phar

Re: [Pharo-users] Can Pharo meet all your computing needs?

2014-08-24 Thread S Krish
Run Pharo on top of Tiny Core linux total of about 50+ MB and you would have what you wish.. This can be more akin to Android on mobile if we all wish.. a complete ecosystem with multi VM pharo running on top of a stripped down modular linux. Pharo will be the UI / kind of riding on top of a thin

Re: [Pharo-users] I need some explaination about arguements assignment

2014-08-06 Thread S Krish
See enclosed screen shot.. On Thu, Aug 7, 2014 at 11:59 AM, S Krish wrote: > > ok something your post does bring up intrinsically not ok with Pharo, but > not threatening a bug, as in normal code practice: > >a) We should never assign values into the arg

Re: [Pharo-users] I need some explaination about arguements assignment

2014-08-06 Thread S Krish
ok something your post does bring up intrinsically not ok with Pharo, but not threatening a bug, as in normal code practice: a) We should never assign values into the arguments.. On compiling .. As I see it, the Pharo compiler makes "aText" now a temp variable of the block ( a

Re: [Pharo-users] I need some explaination about arguements assignment

2014-08-06 Thread S Krish
I am quite at loss to really understand the purpose of the code written...if you can show in some manner what are you trying to achieve some pointers can be given in the correct direction. As is I presume the code will need to rewritten completely.. On Thu, Aug 7, 2014 at 8:43 AM, aria2end wrote

Re: [Pharo-users] Xcode's Swift Playground

2014-06-04 Thread S Krish
+100 I love this playground. Will explore it sometime.. and see if I can participate first in building tools for use and then dive into its frameworks ..! To get started I will need to have a minimum of Oracle connection rather than PostGres .. to make it worthwhile as I play with it. Any heads u

Re: [Pharo-users] SOAP in Pharo

2014-05-02 Thread S Krish
Or: http://www.magentocommerce.com/api/rest/introduction.html REST is a clean approach.. OAuth2 you can perhaps do with Zinc and SSL.. ( http://blog.doit.st/2011/02/15/cloudforksso-openid-and-oauth-support-for-smalltalk/) On Fri, May 2, 2014 at 6:03 PM, S Krish wrote: > XML-RPC > &g

Re: [Pharo-users] SOAP in Pharo

2014-05-02 Thread S Krish
t;a web 2.0 gateway. >>- Separate security concerns from application code with an optional >>hardware security module (HSM) that is certified for FIPS 140-2 Level 3. >>- Integrate applications for improved application and database >>connectivity." >>

Re: [Pharo-users] SOAP in Pharo

2014-05-02 Thread S Krish
Are you looking for a SOAP client for RPC style calls or document format. For the former adding a simple SOAP Envelope to the request and using ZnClient should work fairly well. But if you are looking for something like : http://www.soapclient.com/soaptest.html to be used against a declared WSDL

Re: [Pharo-users] Pharo as a platform for a large E-Commerce website

2013-08-19 Thread S Krish
Let me start with this note: "Asking a Pharo Group what fits best for a good commercial solution is like asking an hungry person whether he would like to go for a feast.." Most certainly the answer should be a resounding yes from this group. You should. Now if you are asking if there are alterna

Re: [Pharo-users] [ANN] Voyage updated to 2.0 and blog post

2013-06-17 Thread S Krish
isVoyageRoot . why not let any object class be allowed to default as a root, or use simpler implicit method call to set any object class as root/ rather than introduce a class method.. On Mon, Jun 17, 2013 at 3:46 PM, S Krish wrote: > Really Nice.. > > Guess a typo, unless I miss

Re: [Pharo-users] [ANN] Voyage updated to 2.0 and blog post

2013-06-17 Thread S Krish
Really Nice.. Guess a typo, unless I miss something here.. anAssociation := #answer->42. anAssociation save. This will generate a collection named “point” in your database, with a document with the It generates collection named "Association" or the class name.. On Mon, Jun 17, 2013 at 2:56 P

Re: [Pharo-users] String replacement

2013-05-27 Thread S Krish
* Use the regex in Pharo too. Should be more than adequate for what you seek. * Create your string parsing code, in the lines of what Igor suggests, extending it for multiple line header fields * Use other libraries, like Zinc as Sven suggests, there are others similar in other packages, bit cont