Search
Awesome Automation and Integration with Buddy
2.4.2019
One of my favorite services for years has been IFTTT (If this then that). Having a service that allows me to trigger a host of functionalities with one simple action is amazing! Posting a picture to Instagram can trigger IFTTT to send a tweet, post to Facebook, email to friends, etc. I’ve...
Set Branch Alias with Git
28.3.2019
Version control systems can be difficult to use, especially when you don’t use a UI app. Just think about main branch or revision names: svn uses “trunk”, git uses “master”, and mercurial (hg) uses “tip”. I need to switch between mercurial and...
Free Programming Courses from Harvard, MIT, Microsoft and more (Sponsored)
26.3.2019
Did you know that you can learn programming online from institutions like Harvard, MIT and Microsoft on edX.org? The nonprofit site offers 2000 online courses from 140 institutions worldwide. Courses are free to try. EdX has over 200 courses from Microsoft alone, including an 11 course program...
Build a Decentralized Web Chat in 15 Minutes
25.3.2019
In this 15 minute tutorial we’re going to build a simple decentralized chat application which runs entirely in a web browser. All you will need is a text editor, a web browser, and a basic knowledge of how to save HTML files and open them in the browser. We’re going...
Autonomní systém Tesly má opět problémy s bariérami na silnici. Auto do nich vjede, jako by neexistovaly
25.3.2019
Autonomní systémy pro vozidla mají občas problémy s pevnými překážkami, což se dříve ukázalo například i u Tesly, která používá pro automatické řízení kombinaci radaru a kamer. Minulý rok to byla nehoda se stojícím automobilem nebo ukázky nečekaného vjezdu do bariér na dálnic.
I když se zdálo,
Set Commit Author with git or hg
24.3.2019
Knowing who authored a code patch is a sacred and important practice in the world of software engineering. Knowing the author gives the reviewer an idea of trust level, know who to ask questions about the patch, and gives credit to the genius of an important fix. There have been times when...
Creating a Custom Element from Scratch
20.3.2019
In the last article, we got our hands dirty with Web Components by creating an HTML template that is in the document but not rendered until we need it.
Next up, we’re going to continue our quest to create a custom element version of the dialog component below which currently only uses...
Adding Search to Your Site with JavaScript
20.3.2019
Static website generators like Gatsby and Jekyll are popular because they allow the creation of complex, templated pages that can be hosted anywhere. But the awesome simplicity of website generators is also limiting. Search is particularly hard. How do you allow users to search when you have...
I Don’t Hate Arrow Functions
19.3.2019
TL;DR Arrow functions are fine for certain usages, but they have so many variations that they need to be carefully controlled to not break down the readability of the code. While arrow functions clearly have a ubiquitous community consensus (though not unanimous support!), it turns...
Write Your First Service Worker in 5 Minutes
18.3.2019
What is a service worker? A service worker is a little file that will allow you to cache files and other assets on a user’s machine. How is this different from server-side caching? Because the assets are stored on a user’s machine, rather than a server, there is no need to go across...
Škoda, Alza a Rohlik startují pilotní projekt doručování zboží do kufru auta
14.3.2019
Zákazníci firem Alza.cz a Rohlik.cz si budou moci už brzy vybrané zboží objednat přímo do zavazadlového prostoru svého vozu. Škoda Auto DigiLab totiž ve spolupráci s oběma internetovými obchody vyvíjí doručovací systém, díky němuž bude kurýrovi umožněn zabezpečený přístup do zavazadlového prostoru....
[aktualita] ŠKODA AUTO s Alzou a Rohlíkem startuje pilotní projekt doručování zboží do kufru auta
14.3.2019
Zákazníci eshopů Alza.cz a Rohlik.cz si budou moci vybrané zboží objednat přímo do zavazadlového prostoru svého vozu Škoda. ŠKODA AUTO DigiLab ve spolupráci s oběma internetovými obchody vyvíjí doručovací systém, díky němuž bude kurýrovi umožněn zabezpečený přístup do zavazadlového prostoru....
Planning for Responsive Images
13.3.2019
The first time I made an image responsive, it was as simple as coding these four lines:
img {
max-width: 100%;
height auto; /* default */
}
Though that worked for me as a developer, it wasn’t the best for the audience. What happens if the the image in the src attribute is heavy? On high-end...
How to Set Commit Author
13.3.2019
I’ve worn dozens of hats on a dozen different teams during my time at Mozilla, but none has been as rewarding and challenging as community management. Whether it’s mentoring students, welcoming new contributors, or reviewing pull requests, there’s always so much to be done....
Užitečný gadget z Číny. Ruční kompresor napumpuje auto a sám se vypne
10.3.2019
Samořídicí auto ze smrtelnou nehodu nemůže, Uber nebude obviněný
7.3.2019
Uber vyvázne z nehody svého autonomního vozidla, při které zemřela loni v Arizoně žena, zcela bez postihnu. Místní prokurátorka Sheila Polková v dopise informovala, že společnost za nešťastnou událost není trestně odpovědná a nebude z ničeho obviněna.
Polková v dokumentu uvádí, že se svým týmem
Bugatti La Voiture Noire je nejdražší nové auto na světě. V korunách stojí téměř čtvrt miliardy
5.3.2019
Napřed si všimněte auta, které stojí na úvodním obrázku vzadu. Je to Bugatti Type 57SC Atlantic, legendární vůz, který v roce 1935 na základě konceptu Aérolithe navrhl Jean Bugatti, syn zakladatele slavné značky Ettoreho.
A teď černý vůz v popředí: Je to také Bugatti, ale novinka La Voiture Noire,
Ferrari F8 Tributo: Nové auto snů nebude jen elektricky kvílet, má řvoucí osmiválec
28.2.2019
Ferrari představilo nový model Ferrari F8 Tributo. Ač se to teď všude jinde hemží elektromobily, tenhle snový spoťák pohání extrémně výkonný osmiválec s pořádným zvukem.
Je to mrštný supersport, kterému bude nejlépe na závodním okruhu, ale je to jinak auto určené pro běžný provoz. Motor má osm
Get File MIME Type from Command Line
28.2.2019
I’ve gotten skilled at shell scripting over the years. I love a good GUI but knowing how to automate makes you a much more powerful engineer. Much of my scripting requires recursing over directories and processing a file if it meets a given criteria, which is often file extension or MIME...
Control Icons with Font Size
27.2.2019
Here’s a nifty trick from Andy Bell that now seems a little obvious in hindsight: if you set an SVG to have a width and height of 1em then you can change the size of it with the font-size property.
Try and change the font-size on the body element below to see the icon scale with the text:
...