It's still work in progress but new posts will be published on https://kula.blog/ Thanks to 11ty base blog RSS is working from the start so it should be easy to add to your reader if you still use any :) If now then I hope you can sign up to the newsletter where I'll be publishing new posts and interesting articles to it from time to time. Please use kula.blog from now on.
Get link
Facebook
X
Pinterest
Email
Other Apps
Simplicity Talk from Meet.js Summit 2016
Get link
Facebook
X
Pinterest
Email
Other Apps
By
K
-
Video of my Meet.js Summit talk is finally online, so if you missed please let me know what you think about it.
I have learned a lot from feedback at the conference and I have heard some great comments that I feel add a lot of value to my talk.
Important message from @krzychukula: Learn the language well and don't expect frameworks be solution for your laziness #meetjs16
First, I really like the tweet by Mariusz Nowak. That's something that I haven't mention in the talk because I have assumed that people would do that before going for frameworks. Only when I've seen this tweet I've realized that it's not always the case and I should have emphasized that before moving to new tools and frameworks.
I have advised people to use Editors instead of IDEs but many people told me later that they don't want to miss on refactorings and all the ease of use they provide. To me that was the exact reason why I want to work without them. Later at the conference Michał Płachta he told me why he is using Atom editor himself instead of IDE. It's really easy to 'refactor' 30 places in your code without seeing them, and IDEs make it really easy but can you really know if your change fits nicely in those places? Is your refactoring improving one place you're looking at and making 29 others unreadable mess? If you use editor you have to go to every of those places and sometimes while doing that he realizes that his initial idea wasn't really good. I really like his example, thanks Michał!
All in all, it was great to be there and I want to thanks organizers for accepting my talk!
If you have any good feedback please let me know in the comments.
Update: If you use Chrome then you can use "Throttling" so simulate slow network for all your assets. This should be easier than proxy. Toggle device mode Choose Network type. Refresh the page https://developer.chrome.com/devtools/docs/device-mode Proxy: For some time I wanted to use some proxy for development and testing of eg. slow internet connection, but it was hard to find something useful and free. I know there is Charles but buy it to use it at most one in a month is not for me. I started thinking about Node.js, maybe I can write proxy for me? But fortunately I found one. https://github.com/nodejitsu/node-http-proxy With this module I can write really short code to create slow server: var http = require('http'), httpProxy = require('http-proxy'); httpProxy.createServer(function (req, res, proxy) { var buffer = httpProxy.buffer(req); setTimeout(function () { proxy.proxyRequest(req, res, { host:
Recently we have created new version of mobil.aftenposten.no but soon after serving it to some users we spot this tweet: https://twitter.com/Al3x4nd3rR/status/452047498111369216 . Basically titles were missing.... Then it started our effort to reproduce this bug. ... It was nightmare! First how to reproduce it: Open http://krzychukula.github.io/vw_bfcache/ in Mobile Safari. Click "Go to another page" link Leave phone for 60 seconds (longer is better) Click back button If you were lucky you should see some missing paragraphs and missing green boxes. How it looks: Bug: This one uses vw and vh for font-size. Both are 0 so we can see only 2 from 8 paragraphs. Those two are using only em for font-size. I was curious if it's only for font-size so I have added another test. I have added two boxes with width and height set in vw and vh with green background color. They parents have red background for contrast. Most of t
Probably this is default for cygwin (at least I think that Git Bash uses somehow cygwin). In windows to change drives You use: D: And this is done! In Git Bash drives are "mounted" in root :) cd /D
Comments
Post a Comment
Comments: