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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) |
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
// https://xstate.js.org/viz/?gist=5fe14e8b6f72489354c0dee1834cf5ce | |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions | |
// - XState (all XState exports) |
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
// https://xstate.js.org/viz/?gist=57d0f3da972f353fa57b488fdc6f3464 | |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise |
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
// https://xstate.js.org/viz/?gist=43e9d8859fcbcfdb8c0bf83d0873f4a6 | |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
if [ (boot2docker status) != "running" ] | |
# start boot2docker | |
boot2docker start | |
# put VM ip into /etc/hosts | |
sudo sed -i '' '/docker/ d' /etc/hosts | |
set boot2docker_vm_ip (boot2docker ip) | |
echo "$boot2docker_vm_ip docker" | sudo tee -a /etc/hosts | |
end; |
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
select count(distinct(pageid)) as count, | |
(100*count(distinct(pageid))/290835) as percent | |
from requests where pageid >= 14489007 and pageid <= 14802750 | |
and url LIKE "%jquery-migrate%.js\\?ver=%" | |
or url LIKE "%jquery-migrate%.js\\?v=%"; |
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
select "jquery" as name,count(distinct(pageid)) as count, | |
(100*count(distinct(pageid))/67198) as percent | |
from requests WHERE pageid <= 14802750 AND pageid >= 14489007 | |
and url like "%//ajax.googleapis.com/ajax/libs/jquery/%" | |
UNION | |
select "jquerymobile" as name,count(distinct(pageid)) as count, | |
(100*count(distinct(pageid))/67198) as percent | |
from requests WHERE pageid <= 14802750 AND pageid >= 14489007 | |
and url like "%//ajax.googleapis.com/ajax/libs/jquerymobile/%" | |
UNION |
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
select "Total Sites" as label, | |
count(distinct(pageid)) as count, | |
(100*count(distinct(pageid))/290835) as percent | |
from requests where pageid >= 14489007 and pageid <= 14802750 | |
and url LIKE "%//ajax.googleapis.com/ajax/libs/%" | |
or url LIKE "%//yandex.st/%" | |
or url LIKE "%//ajax.aspnetcdn.com/ajax/%" | |
or url LIKE "%//cdn.jsdelivr.net/%" | |
or url LIKE "%//cdnjs.cloudflare.com/ajax/libs/%" | |
or url LIKE "%//code.jquery.com/%"; |
NewerOlder