Comment by Max on Serialize unquoted property values
Thanks for the comment, but I've edited the question to clarify my needs. I'd be happy to know if you still have any solution.
View ArticleComment by Max on Serialize unquoted property values
OK, thanks. However JSON.NET technically does allow "illegal" JSON since it has the option for unquoted keys and single-quoted values, so I wondered if it also supports unquoted values.
View ArticleComment by Max on Javascript: given list of functions, how to create an...
I apologize :/, I meant to ask something a bit different. I corrected the question. I want to pass the functions to an external function to create the object, and my whole point is to avoid this type...
View ArticleComment by Max on Knockout.js mapping plugin throws error when using...
Seems it doesn't... How did you come to this conclusion? I updated the fiddle and just dumped the source to html jsfiddle.net/G6zkd/1
View ArticleComment by Max on Angular UI Router - nested states and views
Exactly what I need. Thank you!
View ArticleComment by Max on AngularJS - single controller for ng-repeat-start and...
The question is about a more broad issue of sharing scopes across ng-repeat-start and ng-repeat-end. I edited the question to be more clear.
View ArticleComment by Max on React.JS - Manage content of contenteditable div as React...
Those who are familiar with React, should know about the difficulties concerning with managing a reliable state of contentediatble element while providing a smooth user experience. I'm not asking how...
View ArticleComment by Max on Map AWS Lambda 429 errors to API Gateway 2XX response
Thanks for the quick response. Will be added in the future? I have a huge load on Lambda on my production environment and I'm testing ways to handle the loads efficiently. While I want to keep it...
View ArticleComment by Max on JavaScript img.src onerror event - get reason of error
This is not answering my question. I edited the question for it to be more specific.
View ArticleComment by Max on JavaScript img.src onerror event - get reason of error
This is not answering my question. I edited the question for it to be more specific.
View ArticleComment by Max on React+Redux - managing state for autocomplete inputs
But now we are storing the results both in the main store and the local component state. It can't just "come back through redux"; for that it needs to be stored in the state by the reducer and then...
View ArticleAre users able to view source of web apps on ChromeOS?
If yes, is there a way to compile (NOT obfuscate) JS code for deployment in ChromeOS?
View ArticleOpenGL - Position camera with 6 DOF vector
I work with an Augmented Reality framework on Android, and it gives me the camera position as a 6 degrees of freedom vector that includes the estimated camera optical and camera orientation. Since I'm...
View ArticleAnswer by Max for Extract black and white image from android camera's NV21...
I also had lots of headache because of this preview format. The best I could find are these: http://www.fourcc.org/yuv.php#NV21 http://v4l2spec.bytesex.org/spec/r5470.htm It seems that the Y component...
View ArticleWhich Android device has all possible orientation sensors [closed]
Looking for a device that give maximum possible combination of: Accelerometer Gyroscope Rotation matrix Linear acceleration Magnetic field Rotation vector Or any other sensor which gives any data...
View ArticleSerialize unquoted property values
Say I have this C# dictionary: Dictionary<string, object> Parameters { get; set; } then I put some values inside Parameters["param1"] = "val1"; Parameters["param2"] = "val2"; and finally I...
View ArticleJavascript: given list of functions, how to create an object having those...
Given: var f1 = function(){return "a";}; var f2 = function(){return "b";}; var f3 = function(){return "c";}; transformToObject([f1, f2, f3]); How can I create a function: function...
View ArticleLooking for online image format conversion service like transloadit.com
There are lots of video+audio transcoding SaaS services online, but none of them offers also image format conversion and manipulation. I'm looking for a service which exposes an API for images...
View ArticleAngular UI Router - nested states and views
I have this index.html: <body ng-controller="MainCtrl"> <div class="app" ui-view> <h1>This should be visible while the app loads</h1> </div> </body> My config code:...
View ArticleAnswer by Max for AngularJS - single controller for ng-repeat-start and...
Figured out a way do do it: <table> <tr ng-repeat-start="client in clients" ng-controller="ClientCtrl"> <td ng-click="vm.toggleExpand()"> Expand </td> <!-- some html -->...
View Article