Are there any estimates on how much power Bitcoin consumed so far?
HN user
netforay
Even though unfortunate to loose support of good people like him, it would be in the interest of the foundation to honer the PM to make biggest impact for their efforts.
Wonderful, have been waiting for this for a long time. At one point I thought of developing my self.
But 43mb for password sync app?? Is it not too much?
Money of course.
Buying a L4 car may be not possible. Because I don't even think they will start selling them initially. May be we can bet on number of L4 cars in operation after 5 years.
Wow, all 10 first comments are negative about it. I wonder would these people would bet against it?
I would love to bet in favor of the article.
So during week days(Mon to Friday) you eat only 3 times?
This is similar to what React.js or Vue.js does on the browser. I always thought of this, very nice to see it running. I worry about the following.. 1. How we do complex objects like Trees and Tables? 2. How efficient are these Native nodes over DOM nodes in Browser?
I always wonder between Native vs DOM.
Yes, that is what I thought. Until I started using some more wired Polymer components. Not all components get problems though.
We did use in production. And it sucks to support it. Problems.. * Dynamic components wont work with Vue. Lists etc. * Loading individual html files for each component. Could not figure out how to bundle the components with Webpack.
If you still want to use it, use it without Vue or React.
Depends on which components you need. Normal HTML with Bootstrap CSS will mostly cover the basics.
And there are other individual Vue component libraries like VueTable etc.
Polymer is built for the world without Vue.js or React. They are slow and heavy weight compared to very very optimized DOM operations done by Vue.js or React.
I think the time for Polymer is gone, and it is better to forget that it exists.
No you can not. Telling from experience. Here is the reason..
Vue is optimized to create/update your DOM elements based on data. Polymer does create a DOM node and internally implement lot os JS to create their own shadow DOM. Each Polyer component can have different life cycle (for Example and Table Component can actually creat TR,TD elements after some time of creating your Custom Table Polymer component). And Vue does not know this. Once the Dom for parent tag is created, Vue assumes its work is done. And if data change mean while it will remove it or update it. But Life Cycle of prevously create Polyermer component may still in progress...and you will get lot of exceptions in console.
How to burn your fingers and see this problem..?
Try to use OnsenUI Polymer components with Vue.JS. Mainly any List and Table tags with dynamic children bound to data.
We implemented our own. We don't need more than 10 different type of fields. So basically it will take couple of hours to create those base components to our requirements.
The main lession I learned in JS world is, when the requirement is small, better write it from scratch using code we find on net. Trying to integrate different incompatible libraries will just waste our time.
I have actually tried to use this to build an enterprise application. Here is what we found.
* Most of the components they provide are very basic and does not actually require them to provide it. Couple of lines of wrapper on any CSS framework like bootstrap can make half of those components.
* Most of the advanced components like DataGrid, DropDown Menus, etc are aither not available or buggy. You will get better support from thirdparty Vue components.
* There are lot of silly components like footer and header etc. There is no need for defining them except to show that it is complete UI framework. Trying to be 'Complete UI Framework' is bad choice for any UI on Web. HTML is too flexible and requirements are too diverse that no one UI library can provide everything.
We finally replaced all Element Components with standard bootstrap code. Every thing works perfectly. And we get the benefit of 1000s people testing bootstrap.
Yes it is. Even though you are comparing two different libraries that does different things, vue.js is easy then jquery. Because it is much smaller in it's api. What it does is very simple and clear to understand.
I am using vue.js and vuex in some of my current projects. Only problem for me is that after adding Vuex and all it's getters, mutations and actions, my Vue component code now looks like lot of boilerplate code. Did any one else had that feeling. Is there any way I can directly connect vue template with vuex without intermediate component?
Looking for Matrix vs Jabber. Is there any comparison document?
Also I was just trying to implement our own Telegram Server to take advantage of Free Telegram Clients available.
Can anyone compare Telegram with Matrix. (Except the Federated part).
It is like using all web apps in native wrapper and the telling that all web apps looks like native apps.
Slack desktop is a webapp packed in native wrapper.
Yes, Hyderabad India. But still very less compared to market. Also because we are a money loosing product company :-).
At least in Indian market what most developers make is just based on luck. Mostly on what stupid interview question you can answer, and how long you are in job, how many times you switched jobs etc.
My entire company of 10+ developers combined earn less than those interns :-) It is okey, telling only for comparison. (BTW it is not like we are kids, we have multiple products which are like quickbooks and netsuite ERP).
Even South Indian agricultural practices are not much different. As of now there is big water shortage in Hyderabad and I think South India also will also showup in NASA's next year pictures. Very depressing, and lets hope this will ring some bells and wake up some people.
Just yesterday tried to install Gitlab-ce in C1 then realized that there is no ARM build for it. Went to digitalocean just for x86. And today they introduced x86, great news.
Even though it is something I wanted to know, unfortunately this is not a story that I want to read at hacker news.
To be Immortal, or not to be, that is the question for each cell. Here is simple explanation of Aging(and probably cure)
https://www.authorea.com/users/13335/articles/13690/_show_ar...
This is a result of more than year of research by the Author.
Can some one tell me why it has to be 30Hz vs 60Hz. Why it can not be 40Hz or 50Hz?
So a directory server can be a replacement for SQL? Do any one use it for that purpose? I always thought they are both completely different requirements. I will look into the possibility. Thanks for the suggestion.
Binary search etc will be done by the KV store like LMDB. Actually generating bytecode dynamically idea is from the Clojure itself.
I may not have to do all this if my tables and indexes are fixed. They are not. User keeps adding new Models and columns. What needs indexing also keeps changing. (All this is explained in the link I shared).
I wanted to write this for a month or so. Nice to see that I am not alone.
One point I wanted to point was, they just encourage you to remember you code and write it all at once. They are kind of memory testing.
But this site is still on HTTP. When I tried HTTPS it redirected to HTTP. Even they are not ready it seems.
My interview question was similar "What is the biggest program you have ever written" (As I hire only freshers). Problem is, not even 1% seems to pass this test. For those who are talented but lazy till now, I offered another choice, or "Can you do me a small Snake game now"?