Skip to content

Instantly share code, notes, and snippets.

<p>
Najlepsza konferencja dla developerów 25-26.09 Kraków
<a href="https://futureconf.tech">
Sprawdź agendę
</a>
</p>
(function repeat() {
inspiration();
knowledge();
relax();
repeat();
})();
@fricze
fricze / count.rs
Last active February 5, 2021 17:56
count ordered elements in vector
fn main() {
let v1 = vec![1, 1, 1, 1, 2, 2, 1, 1, 5, 5, 5]
.into_iter()
.enumerate()
.fold(vec![], |mut coll, (idx, val)| {
if idx == 0 {
[coll, [(val, 1)].to_vec()].concat()
} else {
let last_idx = coll.len() - 1;
let (prev_val, last) = coll[last_idx];
https://medium.com/microsoft-design/leading-trim-the-future-of-digital-typesetting-d082d84b202
https://hacks.mozilla.org/2020/07/firefox-79/
https://blog.mozilla.org/blog/2020/08/11/changing-world-changing-mozilla/
https://web.dev/content-visibility/
https://addyosmani.com/blog/native-iframe-lazy-loading/
https://medium.com/storybookjs/storybook-6-0-1e14a2071000
https://github.com/sarsamurmu/reboost
https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-rc/#variadic-tuple-types
https://github.com/servo/servo/discussions/27575
https://blog.logrocket.com/what-is-deno/
https://github.com/microsoft/playwright
https://naver.github.io/egjs-infinitegrid/storybook/?path=/story/virtual-scroll--gridlayout
https://github.com/jfet97/list-comprehension-in-js
https://medium.com/@elastofragmentoplast/story-behind-micro-frontends-in-sabre-9c776861433d
https://github.com/hybridsjs/hybrids
https://css-tricks.com/use-and-reuse-everything-in-svg-even-animations/
https://dev.to/arcanis/introducing-yarn-2-4eh1#new-protocol-raw-portal-endraw-
https://webkit.org/blog/9992/release-notes-for-safari-technology-preview-99/
https://drafts.csswg.org/css-highlight-api-1/
https://reactjs.org/blog/2019/11/06/building-great-user-experiences-with-concurrent-mode-and-suspense.html
https://www.reddit.com/r/IAmA/comments/dwfbmf/im_brendan_eich_inventor_of_javascript_and/?sort=top
https://jrsinclair.com/articles/2019/what-i-wish-someone-had-explained-about-functional-programming/
https://engineering.shopify.com/blogs/engineering/successfully-merging-work-1000-developers
https://www.quantamagazine.org/barbara-liskov-is-the-architect-of-modern-algorithms-20191120/
http://iamralpht.github.io/physics/
@fricze
fricze / lightnings.md
Last active October 24, 2019 14:33
How to lightning talk on Kraków meet.js

We’re creating a great community. We’d love to connect more with each other. Gain insights about tricks and smart ideas living in your heads. Sharing is the heart of the meetup. To make sharing easier, we’re creating 3 new tracks for lightning talks.

  1. This thing I learned last month and I’m sharing so now we all know!
  2. How we work with each other. Stories about (mis)communication
  3. Chill zone. Developers after hours

It means that you’re invited to give a short presentation even if you didn’t prepare it beforehand! Lightning takes from 5 to 15 minutes. How to know if you’re ready?

  1. Make sure you can speak
  2. Choose one of the tracks
  3. Write down 1-3 points, to sum up, what you’re speaking about
  4. (make sure you had no more than 2 beers)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.location{
border:solid 1px;
@fricze
fricze / licz.js
Created June 19, 2018 14:08
nowaprzypałowapłyta
const two = [
{
from: "01-2015",
to: "02-2016"
},
{
from: "05-2015",
to: "05-2016"
},
{
https://reactjs.org/blog/2017/12/15/improving-the-repository-infrastructure.html
https://github.com/seraum/nectarjs
https://github.com/Ginden/set-methods
https://webmasters.googleblog.com/2018/01/using-page-speed-in-mobile-search.html
https://developers.google.com/web/updates/2018/01/paintapi