Search

Nalezeno "Class": 22116

Understanding the Almighty Reducer


I was reently mentoring someone who had trouble with the .reduce() method in JavaScript. Namely, how you get from this: const nums = [1, 2, 3] let value = 0 for (let i = 0; i < nums.length; i++) { value += nums[i] } ...to this: const nums = [1, 2, 3] const value = nums.reduce((ac, next)...

What does the ‘h’ stand for in Vue’s render method?


If you’ve been working with Vue for a while, you may have come across this way of rendering your app — this is the default in the latest version of the CLI, in main.js: new Vue({ render: h => h(App) }).$mount('#app') Or, if you’re using a render function, possibly to take advantage...

Managing State in React With Unstated


As your application becomes more complex, the management of state can become tedious. A component's state is meant to be self-contained, which makes sharing state across multiple components a headache. Redux is usually the go-to library to manage state in React, however, depending on how complex...

Custom List Number Styling


How about a classic CSS trick! This isn't even so tricky anymore, since CSS has counter-increment and counter-reset and such that is perfect for this. I just wanted to make sure you knew how it works and had some easy-to-copy examples at the ready. Let's say all you wanna do is style the dang...

Brno Mobile – večerní konference o mobilním vývoji


Už pojedenácté se 16. května v brněnském Impact Hubu uskuteční večerní konference o mobilním vývoji BrMo. Na akci budou prezentovat tři vývojáři z různých sofwarových firem: Petr Šabata Martin Pilch Jirka Pénzeš Vstup…

Česká Python konference bude již za měsíc


Každoroční české setkání příznivců jazyka Python, konference PyCon CZ, se bude konat 1. až 3. června v Praze, konkrétně ve smíchovské MeetFactory. Hlavními hosty jsou letos Karen M. Sandler, Van Lindberg, Flavio Percoco…

Overriding Default Button Styles


There are a variety of "buttons" in HTML. You've got: <button>Button</button> <input type="button" value="Button"> Plus, for better or worse, people like having links that are styled to match the look of other true buttons on the site <a href="#0"...

CSS Environment Variables


We were all introduced to the env() function in CSS when all that drama about "The Notch" and the iPhone X was going down. The way that Apple landed on helping us move content away from those "unsafe" areas was to provide us essentially hard-coded variables to use: padding: ...

Responsive Knockout Text With Looping Video


Here’s an idea! Let’s make an an HTML <video> play inside the shape of some letters. Like "Knockout Text" except instead of an image behind, it’s video. A live demo will explain more clearly: See the Pen basic pen by Giulio Mainardi (@mgiulio) on CodePen. A key objective here is to develop...

10 nejzávažnějších zranitelností webových aplikací podle OWASP


Útoků na webové aplikace neustále přibývá. Rostoucí počet uživatelů, komplexnější aplikace a nové postupy s sebou nesou nová rizika. OWASP proto aktualizoval seznam deseti nejnebezpečnějších zranitelnosti webových aplikací dneška. Znáte je všechny?

Server-Side Visualization With Nightmare


This is an extract from chapter 11 of Ashley Davis’s book Data Wrangling with JavaScript now available on the Manning Early Access Program. I absolutely love this idea as there is so much data visualization stuff on the web that relies on fully functioning client side JavaScript and potentially...

Native-Like Animations for Page Transitions on the Web


Some of the most inspiring examples I’ve seen of front-end development have involved some sort of page transitions that look slick like they do in mobile apps. However, even though the imagination for these types of interactions seem to abound, their presence on actual sites that I visit do not....

Flutter.io přechází do bety


Na právě probíhajícím Mobile World Congress 2018 oznámil Google Beta verzi Flutteru. Dobrá zpráva pro všechny, které znervózňoval dovětek „alpha“. Pokud Flutter ještě neznáte, otevřete si náš článek Flutter.io – mobilní aplikace, znovu a lépe

Nešvary logování


Co se týká softwarového vývoje, logování je jedna z nejvíce zanedbávaných oblastí. Samozřejmě, pokud nejde o něco naprosto amatérského, tak je logování v každé aplikaci. Stejně tak, aby člověk pohledal vývojáře, který si během programování nevypisuje na konzoli potřebné runtime informace

Zápisky z DartConf 2018


Hoďte na sebe plavky, jedeme do Los Angeles na dvoudenní maraton přednášek, který se konal v prostorách Google na Venice Beach na konci ledna 2018

Testovací trio Mocha, Chai a Sinon


Představíme vám testovací framework Mocha, knihovny Chai a Sinon. Ukážeme, k čemu slouží, a na co si dát pozor při jejich používání. Dále vysvětlíme, jak se pracuje s knihovnou Sinon, která slouží pro mockování/stubování a vytváření špiónů

Nahoru
Tento web používá k poskytování služeb a analýze návštěvnosti soubory cookie. Používáním tohoto webu s tímto souhlasíte. Další informace