This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alexaandru@gmail.com namespaces="git" ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCx0x2FqQPAESrRfU8+TqqikuqB1F4OLDMkGdiZzsN19/59lLGPsZgQfejjHiujCWPRb0Tpz2Jv2mB6QcUVuK/gfiMbltwCdcDNCCa0I42xOgIHoYVatry7D8mZcy+t+e1TALrEUPCod4BEn8oLLnsGy6siDzv2hWINbIs2XLCvsOisa6xERgM1Joezo5+8IshSeP9felv6PqbfKEUWV0zfsoLbxJ0WAAM8T14OA/GIm12Dmg4fNWad70Bp1Yq/0W00vpZ9up+p8kMklZYlK6QHwrIw2gzVqsIL9x3FXgVw7KFRfV1Gp1W7V2S2sumzUW/BIztA0JOWqZnd0CMsSEyX |
WARNING: flashing the new BIOS can brick your laptop, DON'T do it if you don't know what you're doing or just for the sake of having the latest firmware. Make sure you actually need it and that both your laptop's power AC adapter is plugged in and the battery is fully charged.
If you've got one the ideapad gaming 3 laptops you might face the problem with updating the BIOS, if your model isn't covered via fwupd.
There are ways to workaround it with some crazy shit magic tools, but the safest way is just use the Windows environent in the absence of a BIOS update file for Linux.
| Version | Link |
|---|---|
| ECMAScript 2015 - ES2015 - ES6 | All Features List |
| ECMAScript 2016 - ES2016 - ES7 | All Features List |
| ECMAScript 2017 - ES2017 - "ES8" | All Features List |
| ECMAScript 2018 - ES2018 - "ES9" | All Features List |
| ECMAScript 2019 - ES2019 - "ES10" | All Features List |
| ECMAScript 2020 - ES2020 - "ES11" | All Features List |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // replaceAllSubmatchFunc is the missing regexp.ReplaceAllSubmatchFunc; to use it: | |
| // | |
| // pattern := regexp.MustCompile(...) | |
| // data = replaceAllSubmatchFunc(pattern, data, func(groups [][]byte) [][]byte { | |
| // // mutate groups here | |
| // return groups | |
| // }) | |
| // | |
| // This snippet is MIT licensed. Please cite by leaving this comment in place. Find | |
| // the latest version at: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; vi: ft=clojure | |
| ; THIS IS A Fennel SOURCE FILE (.fnl) !NOT! clojure! | |
| ; you need to use luajit to run this, after using fennel --compile | |
| ; install lapis and turbo from luarocks | |
| ; When running with Fennel directly, you need to --globals all used HTML tags | |
| (local turbo (require "turbo")) | |
| (local render_html (. (assert (require "lapis.html")) :render_html)) |
Special thanks to https://scotch.io/tutorials/create-a-single-page-app-with-go-echo-and-vue for resparking my interest for frontend development. It's been a while... :)
- VueJS still rocks! :-) (as in, it's by far the biggest "heard of, would like to learn" (kind of what Go used to be, still is maybe?) and the 2nd most used);
- Bootstrap is still no.1 but https://tailwindcss.com/ is a serious challenger;
- CSS Grid Layout is getting more traction as an alternative to Flexbox for layout.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "net/url" | |
| "fmt" | |
| "github.com/tehmoon/errors" | |
| "github.com/aws/aws-sdk-go/aws/session" | |
| "github.com/aws/aws-sdk-go/service/s3/s3manager" | |
| "github.com/aws/aws-sdk-go/service/s3" | |
| "io" |
NewerOlder