Hon-Jang Yang
Hon-Jang Yang
@jenperson After trying your code on Glitch, I still got the same result as I mentioned before. Following are some image I got:
@jenperson After trying your code on Glitch on different devices. 1. on my desktop computer, the accuracy is about 0.53. This is not normal. 2. on my android mobile, the...
Information of my desktop: 1. Operation system : Windows 10 64bit 2. CPU : Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz 3. Both Google Chrome and Microsoft Edge have the same...
@jonsequitur About `Do you happen to know what location it's looking for?` What does it mean?
@jonsequitur The Visual Studio C# project build output directory contains following files, once click the execution file `RxNetPuzzle.exe`, the program executed as expected. I still do not know how to...
typo error: may be add property jde(in addition to original jd) in **TimeOfInterest** is an option.
quote from [MDN docs : Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/Date) ``` monthIndex Integer value representing the month, beginning with 0 for January to 11 for December. ``` So `new Date(Date.UTC(2021, 1, 1))` cooresponding to...
@swgordon Now I understand what you mean. Sorry for mis-understanding. I modify your snippet as follows: ``` function test(year,month,date,hours=0,minutes=0,seconds=0) { const toi = createTimeOfInterest.fromTime(year,month,date,hours,minutes,seconds); console.log("start date:",toi.getDate()) console.log("getUpcomingFullMoon: ", createMoon(toi).getUpcomingFullMoon().getDate()) console.log("getUpcomingNewMoon:...
@andrmoel I got data from https://tidesandcurrents.noaa.gov/moon_phases.shtml?year=2021&data_type=monMar and https://tidesandcurrents.noaa.gov/moon_phases.shtml?year=2021&data_type=monApr ``` NewMoon Mar 13 10:21 FirstQuarter Mar 21 14:40 FullMoon Mar 28 18:48 LastQuatrer Apr 04 10:02 ``` Compare with result got...