vans163
vans163
We still cannot include elixirscript from github into a project. Running mix deps.get && mix compile does not build the initial Core.js. We need to clone elixirscript, make, then use...
``` [] |> :erlang.binary_to_integer NaN length(0) undefined ``` We should crash here, given that is the behavior of elixir. I am sure there is many more like this.
Looking at is_sgx_available ```c bool sgx_driver_loaded() { // /dev/isgx is for LKM version, /dev/sgx is for in-kernel support. return file_exists("/dev/isgx") || file_exists("/dev/sgx"); } ``` ``` ./is_sgx_available SGX supported by CPU:...
I am not sure if this should belong into Evision or a seperate project, its quite simple and used all the time for kaggle problems. Following as close as possible...
This code for example: ``` overview = Epoxy.Model.extend({ defaults: { accounts: new accCollection(), }, computeds: { deps: ["accounts"], totalAccounts: function() { return this.get("accounts").length; }, }, }); ``` Does not trigger...
This application failed to start because it could not find or load the Qt platform plugin "xcb". Reinstalling the application may fix this problem. Aborted lld reveals that libX11-xcb.so.1 =>...
On the browser side when you recv binary data off websockets you get it as an ArrayBuffer or Blob. Right now you cannot pass that to new Buffer() constructor. Instead...
It makes the workflow a bit wierd, and requires caching the conn yourself, making the token cache useless that you made. Example ``` {:ok, token} = Goth.Token.for_scope("https://www.googleapis.com/auth/cloud-platform.read-only") conn = GoogleApi.Storage.V1.Connection.new(token.token)...
This needs the proper `@doc`
If you push many releases of your application each time it will extract into a new folder under the .cache/bakeware path, this quickly adds up consuming disk space. Allowing only...