Comment 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 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 ArticleAngularJS - single controller for ng-repeat-start and ng-repeat-end
I have this HTML: <table> <tr ng-repeat-start="client in clients" ng-controller="ClientCtrl"> <td ng-click="toggleExpand()"> Expand </td> <!-- some html --> </tr>...
View ArticleJavascript prototypal inheritance - descendants override each other
I'm creating two objects (Inherits), both inherit from Base. The second object's property assignment overrides the value in the first object. Any thoughts? How to make a proper inheritance so that...
View ArticleDjango: split forms.py in several files
I have a very long forms.py and I'd like to split it to smaller parts with as few as possible changes in the code. Any ideas?
View ArticleAnswer by Max for React.JS - Manage content of contenteditable div as React...
Facebook just released Draft.js - https://facebook.github.io/draft-js/
View ArticleMap AWS Lambda 429 errors to API Gateway 2XX response
I understand that by design, API Gateway maps 429 errors from Lambda to 500 responses. Is there a way to map 429 to something else like 202? I tried to create an integration response mapping from this...
View ArticleBigQuery SQL - a way to pass values from more than one row and more than one...
I want to create a User Defined Function, (CREATE TEMPORARY FUNCTION) in BigQuery Standard SQL which will accept values aggregated from a bunch of rows. My schema and table is similar to this: | c1 |...
View ArticleReact+Redux - managing state for autocomplete inputs
I have a large app with some autocomplete text-inputs that retrieve search suggestions from the backend on every key stroke. I want to save recent search query results to avoid multiple backend calls...
View ArticleAnswer by Max for Is it possible to set custom CPU throttling in Chrome...
Lighthouse uses Emulation.setCPUThrottlingRate command in the Chrome DevTools Protocol: https://chromedevtools.github.io/devtools-protocol/tot/Emulation#method-setCPUThrottlingRate You can monitor the...
View ArticleTypeScript - type assertion for union of tuples - how to assert only one...
I'm trying to make type assertion for "error-first" pattern.My function returns tuples like ['error', null] or [null, 'non-error'].I want to check only for error === null and TS should assume that the...
View ArticleComment by Max on Receiving Error: Class Object is missing in schema:...
There is a know issue in near-api-js: docs.near.org/tools/near-api-js/… can you see the workaround mentioned solves it for you?
View ArticleComment by Max on Near: Querying [object Object] failed: wasm execution...
@RAJUC can you tell which platform exactly you run this on?
View ArticleComment by Max on Parse error: Failed parsing args: missing field >...
@Suisse I'm unable to reproduce the issue, first thing I suggest is to upgrade your SDK version to latest (0.6.0 at the moment) github.com/near/near-sdk-js/releases
View ArticleComment by Max on On NEAR, how to delete all keys other than the FullAccess...
I'm unable to reproduce the issue. The error message (with the typo) is coming from ledger, and it looks like some connectivity issue between ledger and your machine, probably not NEAR related. There...
View ArticleAnswer by Max for Store XML Data in Near Protocol
NEAR supports storing data as key-value pairs. If you work with XML, you have to manually serialize/deserialize your data structures.Notice the concept of smart-contracts, the data is stored as part of...
View ArticleAnswer by Max for Verify signature in smart contract near_sdk rust
Use the environment function env::ecrecover(hash, signature, v, malleability_flag), to get the signer's public key from his signed message hash and...
View ArticleAnswer by Max for The value of an instance variable on NEAR - shared among...
A smart contract persists state between invocations. In your example, my_map and other variables will be the same every time anyone calls my_method1 in your contract.This state is persistent within the...
View ArticleAnswer by Max for A way to make multiple transactions in NEAR in a smart...
Currently NEAR does not support such mechanism out of the box.
View ArticleComment by Max on Javascript: given list of functions, how to create an...
OK, maybe it's again my bad for not being clear... :) The point is to make it a generic function, which sits in an external file. So I pass an array of any functions.
View ArticleHow to implement WhatsApp Flows with Twilio
Meta has a feature - "WhatsApp Flows"|: https://developers.facebook.com/docs/whatsapp/flowsI'm using Twilio for WhatsApp, and looking for an efficient way to work with this feature on Twilio.NOTE: this...
View Article