Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
% set l1 [split 224.210.1.1 .]
224 210 1 1
% set mask [split 255.239.255.255 .]
255 239 255 255
% foreach a $l1 b $mask {lappend l2 [expr {$a&$b}]}
% set c [join $l2 .]
224.194.1.1
%