Bouke van der Spoel

Results 3 issues of Bouke van der Spoel

When I set the weeknumber of a UTC-mode xdate, it reverts to my current time zone. > let date = new XDate(true); > date.setHours(0).setMinutes(0).setSeconds(0).setMilliseconds(0); > console.log(date); // {0: Thu, 08...

When converting the formula '=A1^2' to javascript, it gives 'A1^2' as the result, but ^ in javascript is the bitwise XOR operator. It should be 'Math.pow(A1, 2)'

Bug

https://jekyllrb.com/docs/installation/ states as installation requirement > [GCC](https://gcc.gnu.org/install/) and [Make](https://www.gnu.org/software/make/) (check versions using gcc -v,g++ -v, and make -v) On my system gcc and make were installed, but not g++, and...