https://webkit.org/blog/10218/full-third-party-cookie-blocking-and-more/
I've created to test it, but I'm confused by the result. https://animated-caribou.glitch.me/
- Chrome: only display the cookie value with SameSite=None in iframe.
| # | |
| # udev rule | |
| # Mount USB drive to the media directory using the partition name as mount point | |
| # | |
| # Description: | |
| # Created for Home Assistant OS, this rule mounts any USB drives | |
| # into the Hassio media directory (/mnt/data/supervisor/media). | |
| # When a USB drive is connected to the board, the rule creates one directory | |
| # per partition under the media directory. The newly created partition is named | |
| # as the partition name. If the partition does not have a name, then the following |
https://webkit.org/blog/10218/full-third-party-cookie-blocking-and-more/
I've created to test it, but I'm confused by the result. https://animated-caribou.glitch.me/
| #include <time.h> // Robert Nystrom | |
| #include <stdio.h> // @munificentbob | |
| #include <stdlib.h> // for Ginny | |
| #define r return // 2008-2019 | |
| #define l(a, b, c, d) for (i y=a;y\ | |
| <b; y++) for (int x = c; x < d; x++) | |
| typedef int i;const i H=40;const i W | |
| =80;i m[40][80];i g(i x){r rand()%x; | |
| }void cave(i s){i w=g(10)+5;i h=g(6) | |
| +3;i t=g(W-w-2)+1;i u=g(H-h-2)+1;l(u |
| #include <stdio.h> | |
| /* | |
| * Calculates what Ada Lovelace labeled "B7", which today we would call the 8th | |
| * Bernoulli number. | |
| */ | |
| int main(int argc, char* argv[]) | |
| { | |
| // ------------------------------------------------------------------------ | |
| // Data |
| do_install_pivpn() { | |
| #curl -L https://install.pivpn.io | bash | |
| setupVars=/etc/pivpn/setupVars.conf | |
| if [ -e "${setupVars}" ]; then | |
| sed -i.update.bak '/pivpnUser/d;/UNATTUPG/d;/pivpnInterface/d;/IPv4dns/d;/IPv4addr/d;/IPv4gw/d;/pivpnProto/d;/PORT/d;/ENCRYPT/d;/DOWNLOAD_DH_PARAM/d;/PUBLICDNS/d;/OVPNDNS1/d;/OVPNDNS2/d;/SERVER_NAME/d;' "${setupVars}" | |
| else | |
| mkdir -p /etc/pivpn | |
| touch "${setupVars}" | |
| fi |
| # set "Apply to range" to whereever you want to apply setting. | |
| # set "Format cells if..." to "Custom formula is" and paste following code | |
| # Following Forumula will detect if it's match with regex or not. | |
| =REGEXMATCH(INDIRECT("R[0]C[0]", false),"<PUT YOUR REGEX HERE>") = true | |
| # set your "formatting style" | |
| That's it! |
| function isFirefox(client) { | |
| return client.resourceName == "navigator" && client.resourceClass == "firefox"; | |
| } | |
| function onClientMaximizedStateChanged(client, h, v) { | |
| if (h && v) { | |
| client.noBorder = true; | |
| } else { | |
| client.noBorder = false; |
| function Foo(value) { | |
| this.value = value; | |
| } | |
| Foo.prototype.bar = function () { | |
| function someCall() { | |
| return this.value; | |
| } | |
| const anotherCall = () => { |