Richard Levasseur
|
Registered User
|
Software engineer for a search company.
|
|
1d |
answered | Making a Python script Object-Oriented |
|
Nov 27 |
accepted | How should one provide links in RESTful service using a non-XML data representation? |
|
Nov 27 |
comment |
Does anyone know of an example of a RESTful client that follows the HATEOAS principle? oh! How are you representing your model objects and transforming them to xml, json, and xhtml? Do you think the additional work of supporting all those formats has been worth it? Can XML/JSON clients enable the related links in the output? If so, how are you returning that data in xml/json? re: performance, have you considered using the HTTP caching-related headers? In general, I agree that HATEOAS is great, except for the performance implications. |
|
Nov 27 |
comment |
Does anyone know of an example of a RESTful client that follows the HATEOAS principle? @Jim: you say the clients download a template, then take the data in responses to fill in the complete URI? Why not just return the complete URI? (I'm assuming that you mean the server returns {'name': 'john'} which clients template into "example.com/users/john".). Also, how does the templating work? e.g, how does a client know to take "john" and apply the "name" template? The template sorta sounds like out-of-band information? |
|
Nov 26 |
revised |
Best way to handle concurrency issues added 1382 characters in body |
|
Nov 23 |
revised |
Best way to handle concurrency issues added 370 characters in body |
|
Nov 23 |
answered | Best way to handle concurrency issues |
|
Nov 21 |
comment |
How should one provide links in RESTful service using a non-XML data representation? (forgot to add, by "media type", i'm assuming you mean something like "application/json", not the "self" or "rel" I've seen in atom examples) |
|
Nov 21 |
comment |
How should one provide links in RESTful service using a non-XML data representation? The definition is informal and largely self-descriptive (the data is highly dynamic, so "its an object with key:value pairs" about sums it up). btw, I found this through your links: json-schema.org. For media types in links, i personally think that should be left out (and left to the Accept header). The URI is, after all, the concept of that resource, not the specific JSON, XML, HTML, etc representation (at least, thats how i like to think of it). |
|
Nov 20 |
answered | How should one provide links in RESTful service using a non-XML data representation? |
|
Nov 20 |
revised |
Separating Business Layer Errors from API errors added 69 characters in body |
|
Nov 20 |
asked | Separating Business Layer Errors from API errors |
|
Nov 17 |
comment |
REST and localized resources Yes, that would work. You can also "overload" PUT /chapter/1 to look for the localizations structure you define in your question (to allow multiple updates in 1 request, which could be important in some situations). |
|
Nov 16 |
accepted | REST and localized resources |
|
Nov 16 |
answered | REST and localized resources |
|
Nov 16 |
answered | count new lines in textarea to resize container in PHP? |
|
Nov 16 |
comment |
OAuth’s tokens and sessions in REST +1 for bringing the Real World into REST |
|
Nov 13 |
awarded | ● Yearling |
|
Nov 8 |
comment |
The case against checked exceptions Thats not what I'm saying at all. Your last sentence actually agrees with me. If everything is wrapped in AppSpecificException, then it doesn't bubble up (and meaning/context is lost), and, yes, the API client is not being informed - this is exactly what happens with checked exceptions (as they are in java), because people don't want to deal with functions with lots of throws declarations. |
|
Nov 6 |
revised |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? added 518 characters in body |
|
Nov 6 |
comment |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? And we do allocate in on our side, and the 3rd party lib deallocates. e.g.: ThirdPartyStruct * foo = malloc(...); ThirdPartyApiCall(foo); ThirdPartyFreeStruct(foo); - Are you saying that just plain won't be possible if we're using .6, and its using .5? What if we used .5 with our wrapper functions, and did all allocation/deallocation through the wrapper lib? |
|
Nov 6 |
comment |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? Can you explain how to properly hide the symbols, and what you're saying about the memory operations? We tried wrapping the 3rd party lib in functions that would use dlopen(lib, RTLD_LOCAL) to load the 3rd party lib. This kept our code from linking in .so.5, but, we suspected, that the 3rd party code was picking up symbols (like malloc) from the already loaded .so.6 (loaded by our code), and was causing memory leaks. We tried using LD_PRELOAD to loud the 3rdparty lib first, and the memory leaks pretty much went away. |
|
Nov 5 |
comment |
HTTP MODIFY verb for REST ? Correct, I'm not talking about the SQL-specific concept of transactions. I'm talking about a process that has multiple steps and can't be completed in a single request. A client should have a way of saying "I need to edit this, I want a private copy I can edit as I go along", whether its backed by compensating txns, buffering, or (cringe) table locks is up to the app. I wouldn't say it handles it perfectly well; the limited verbs force you to overload one with special action flags to be passed with the normal request. |
|
Nov 5 |
comment |
HTTP MODIFY verb for REST ? @Darrel: Just because it raises questions doesn't meant it shouldn't be done. Also, its a wishlist, not an ISO/W3C/OMG/IEEE spec. By your logic, browser vendors shouldn't try to support PUT or DELETE in <form>. An "auto save draft" feature is a transaction, and that has to be exposed somehow. BEGIN /msgs/001 is clearer than POST /msgs/001?action=draft or POST /msgs/drafts/001. |
|
Nov 5 |
comment |
HTTP MODIFY verb for REST ? @Stefano: not all state can live on the client all the time. Clients crash, and not everything can be expected to be done in a single request. @DSO: The limited verbs force you into passing action flags in the body of the responses anyways, which just as RPCish as an extra verb. |
|
Nov 4 |
comment |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? The vendor is very resistant against upgrading their library (we've been arguing for weeks now). The app can't be backported to .so.5 |
|
Nov 4 |
comment |
HTTP MODIFY verb for REST ? Transactions are a part of life. If you have a multi part web request, auto-save functionality, or asynchronous communication, the server has to keep track of whats going on, and the client has to tell it when its done or beginning. Not everything can be pushed off to the client for sending all at once |
|
Nov 4 |
answered | HTTP MODIFY verb for REST ? |
|
Nov 3 |
answered | Verifying that an object in python adheres to a specific structure |
|
Nov 2 |
revised |
PHP Timer Based on Typing edited tags |
|
Nov 1 |
comment |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? I found a similar question, and one of the responses implies that, through some sort of dynamic linking magic, using both is possible without problems. Is that true, or misinformation? stackoverflow.com/questions/728858/… |
|
Oct 31 |
revised |
How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? added 229 characters in body |
|
Oct 31 |
asked | How to build an application that requires both libstdc++.so.5 and libstdc++.so.6? |
|
Oct 14 |
comment |
Old concepts with new names (namely REST and Cloud computing) +1 for the distributed server explanation, but the REST explanation is lacking. Its more than just a client; its using HTTP to its full intent as it was defined years ago (status code, headers, mimetypes, etc etc) |
|
Oct 6 |
comment |
How and when to appropriately use weakref in Python Thanks. I added an example/summary that combines yours and Denis's answers. I also marked it as community wiki in case I've misunderstood something. |
|
Oct 6 |
revised |
How and when to appropriately use weakref in Python wanted to add a comprehensive summary of the answeres |
|
Oct 2 |
comment |
How and when to appropriately use weakref in Python I also found this message which recommends weakrefs towards the root rather than leaves: 74.125.155.132/search?q=cache:http:/… |
|
Oct 2 |
comment |
How and when to appropriately use weakref in Python Thanks, Alex. Is there a specific reason to weakref children rather than parent? Would the effect be the same? What would happen if parent was weakref'd, too? In the case of a double-linked list, should prev, next, or both be weakrefs? |
|
Oct 2 |
asked | How and when to appropriately use weakref in Python |
|
Sep 11 |
answered | Getting the the keyword arguments actually passed to a Python method |
|
Sep 6 |
answered | Is concurrent computing important for web development? |
|
Aug 4 |
accepted | python ctype recursive structures |
|
Aug 4 |
answered | python ctype recursive structures |
|
Jul 30 |
answered | Authorization System Design Question |
|
Jul 22 |
comment |
Iterate over a string 2 (or n) characters at a time in Python I really like this one...i just wish it didn't make copies to iterate over. |
|
Jul 22 |
asked | Iterate over a string 2 (or n) characters at a time in Python |
|
Jul 19 |
comment |
How to use Javascript math on a version number Yeah, i was going to revise it and do the packing you did, but Jon's answer had already been accepted by then; I didn't see much point. |
|
Jul 18 |
answered | How to use Javascript math on a version number |
|
Jul 16 |
comment |
How to get \uXXXX to display correctly, using PHP5 Just for clarity...it contains the literal string "\\u5353", or those codepoints? I pray for you if its the former :) |
|
Jul 15 |
awarded | ● Nice Answer |
