Output the date in the Mel calendarThe Work Day CountdownCalculate the date of EasterValiDate ISO 8601 by RXRollover CalendarRoman-style date formattingFriday the 13thBeat Pure Regular Expressions at Validating ISO 8601 DatesThe Last MondayWhat's the Date?Digital CalendarGet the date of the nth day of week in a given year and month

How did the Allies achieve air superiority on Sicily?

Ribbon Cable Cross Talk - Is there a fix after the fact?

Why did other houses not demand this?

Why A=2 and B=1 in the call signs for Spirit and Opportunity?

Was this scene in S8E06 added because of fan reactions to S8E04?

Physical only checkdb is failing, but full one is completed successfully

Alexandrov's generalization of Cauchy's rigidity theorem

Why'd a rational buyer offer to buy with no conditions precedent?

What did Brienne write about Jaime?

How to escape dependency hell?

Piping the output of comand columns

Is a world with one country feeding everyone possible?

Can attacking players use activated abilities after blockers have been declared?

To exponential digit growth and beyond!

Comparison of bool data types in C++

Could a rotating ring space station have a bolo-like extension?

How to deceive the MC

Determine direction of mass transfer

Is there an idiom that means that you are in a very strong negotiation position in a negotiation?

Can diplomats be allowed on the flight deck of a commercial European airline?

Did Game of Thrones end the way that George RR Martin intended?

Is it normal to "extract a paper" from a master thesis?

How does the Earth's center produce heat?

How to teach an undergraduate course without having taken that course formally before?



Output the date in the Mel calendar


The Work Day CountdownCalculate the date of EasterValiDate ISO 8601 by RXRollover CalendarRoman-style date formattingFriday the 13thBeat Pure Regular Expressions at Validating ISO 8601 DatesThe Last MondayWhat's the Date?Digital CalendarGet the date of the nth day of week in a given year and month













8












$begingroup$


The Mel calendar is used in the fictional world of Kaldia. Your goal is to convert dates into the Mel calendar.



This calendar has 13 months of 28 days each, plus 1 or 2 extra days after the last month. A year that is divisible by 4 but not by 100, or divisible by 400 has 366 days, and other years have 365 (i.e. our leap year rules, but with years in the Mel calendar).



You should use the month and day name abbreviations:



months: dia vio lis gil ful dyu mel ral zan pal mik fav ruj



days: dia vio lis gil ful dyu mel ral zan pal mik fav ruj ser rav tan lin rez jil din ket len lax nen pin mat kun mir



The extra days outside of any month have the month name of myuxet (no abbreviation here), and the day names are axet and teems, respectively.



0 dia dia is 1988/11/30.



You can take the input date as a string or a (year, month, day) tuple; alternatively, for functions, the parameter can be in your standard library's date type. The output should be a space-separated string.



Test cases



1776-07-04 => -213 ral ket
1859-12-15 => -129 dia rav
1917-04-14 => -72 ful nen
1981-02-04 => -8 lis mik
1988-11-30 => 0 dia dia
1988-12-01 => 0 dia vio
1988-12-28 => 0 vio dia
2017-01-01 => 28 vio ful
2019-04-22 => 30 dyu lis
2019-11-30 => 30 myuxet axet
2019-12-01 => 31 dia dia
2021-11-29 => 32 myuxet axet
2021-11-30 => 32 myuxet teems
2089-11-30 => 101 dia dia
2389-11-30 => 400 myuxet teems


You should be able to handle dates from 1 AD to 9999 AD at least.



Reference implementation in Perl 6



Standard loopholes are forbidden.










share|improve this question











$endgroup$







  • 3




    $begingroup$
    You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 3:45










  • $begingroup$
    It has to be a space-separated string.
    $endgroup$
    – bb94
    May 9 at 4:19










  • $begingroup$
    Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 4:23






  • 1




    $begingroup$
    Yes, that's fine.
    $endgroup$
    – bb94
    May 9 at 4:24










  • $begingroup$
    May we output month and day in Title Case? -213 Ral Ket?
    $endgroup$
    – Adám
    May 9 at 4:59















8












$begingroup$


The Mel calendar is used in the fictional world of Kaldia. Your goal is to convert dates into the Mel calendar.



This calendar has 13 months of 28 days each, plus 1 or 2 extra days after the last month. A year that is divisible by 4 but not by 100, or divisible by 400 has 366 days, and other years have 365 (i.e. our leap year rules, but with years in the Mel calendar).



You should use the month and day name abbreviations:



months: dia vio lis gil ful dyu mel ral zan pal mik fav ruj



days: dia vio lis gil ful dyu mel ral zan pal mik fav ruj ser rav tan lin rez jil din ket len lax nen pin mat kun mir



The extra days outside of any month have the month name of myuxet (no abbreviation here), and the day names are axet and teems, respectively.



0 dia dia is 1988/11/30.



You can take the input date as a string or a (year, month, day) tuple; alternatively, for functions, the parameter can be in your standard library's date type. The output should be a space-separated string.



Test cases



1776-07-04 => -213 ral ket
1859-12-15 => -129 dia rav
1917-04-14 => -72 ful nen
1981-02-04 => -8 lis mik
1988-11-30 => 0 dia dia
1988-12-01 => 0 dia vio
1988-12-28 => 0 vio dia
2017-01-01 => 28 vio ful
2019-04-22 => 30 dyu lis
2019-11-30 => 30 myuxet axet
2019-12-01 => 31 dia dia
2021-11-29 => 32 myuxet axet
2021-11-30 => 32 myuxet teems
2089-11-30 => 101 dia dia
2389-11-30 => 400 myuxet teems


You should be able to handle dates from 1 AD to 9999 AD at least.



Reference implementation in Perl 6



Standard loopholes are forbidden.










share|improve this question











$endgroup$







  • 3




    $begingroup$
    You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 3:45










  • $begingroup$
    It has to be a space-separated string.
    $endgroup$
    – bb94
    May 9 at 4:19










  • $begingroup$
    Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 4:23






  • 1




    $begingroup$
    Yes, that's fine.
    $endgroup$
    – bb94
    May 9 at 4:24










  • $begingroup$
    May we output month and day in Title Case? -213 Ral Ket?
    $endgroup$
    – Adám
    May 9 at 4:59













8












8








8


1



$begingroup$


The Mel calendar is used in the fictional world of Kaldia. Your goal is to convert dates into the Mel calendar.



This calendar has 13 months of 28 days each, plus 1 or 2 extra days after the last month. A year that is divisible by 4 but not by 100, or divisible by 400 has 366 days, and other years have 365 (i.e. our leap year rules, but with years in the Mel calendar).



You should use the month and day name abbreviations:



months: dia vio lis gil ful dyu mel ral zan pal mik fav ruj



days: dia vio lis gil ful dyu mel ral zan pal mik fav ruj ser rav tan lin rez jil din ket len lax nen pin mat kun mir



The extra days outside of any month have the month name of myuxet (no abbreviation here), and the day names are axet and teems, respectively.



0 dia dia is 1988/11/30.



You can take the input date as a string or a (year, month, day) tuple; alternatively, for functions, the parameter can be in your standard library's date type. The output should be a space-separated string.



Test cases



1776-07-04 => -213 ral ket
1859-12-15 => -129 dia rav
1917-04-14 => -72 ful nen
1981-02-04 => -8 lis mik
1988-11-30 => 0 dia dia
1988-12-01 => 0 dia vio
1988-12-28 => 0 vio dia
2017-01-01 => 28 vio ful
2019-04-22 => 30 dyu lis
2019-11-30 => 30 myuxet axet
2019-12-01 => 31 dia dia
2021-11-29 => 32 myuxet axet
2021-11-30 => 32 myuxet teems
2089-11-30 => 101 dia dia
2389-11-30 => 400 myuxet teems


You should be able to handle dates from 1 AD to 9999 AD at least.



Reference implementation in Perl 6



Standard loopholes are forbidden.










share|improve this question











$endgroup$




The Mel calendar is used in the fictional world of Kaldia. Your goal is to convert dates into the Mel calendar.



This calendar has 13 months of 28 days each, plus 1 or 2 extra days after the last month. A year that is divisible by 4 but not by 100, or divisible by 400 has 366 days, and other years have 365 (i.e. our leap year rules, but with years in the Mel calendar).



You should use the month and day name abbreviations:



months: dia vio lis gil ful dyu mel ral zan pal mik fav ruj



days: dia vio lis gil ful dyu mel ral zan pal mik fav ruj ser rav tan lin rez jil din ket len lax nen pin mat kun mir



The extra days outside of any month have the month name of myuxet (no abbreviation here), and the day names are axet and teems, respectively.



0 dia dia is 1988/11/30.



You can take the input date as a string or a (year, month, day) tuple; alternatively, for functions, the parameter can be in your standard library's date type. The output should be a space-separated string.



Test cases



1776-07-04 => -213 ral ket
1859-12-15 => -129 dia rav
1917-04-14 => -72 ful nen
1981-02-04 => -8 lis mik
1988-11-30 => 0 dia dia
1988-12-01 => 0 dia vio
1988-12-28 => 0 vio dia
2017-01-01 => 28 vio ful
2019-04-22 => 30 dyu lis
2019-11-30 => 30 myuxet axet
2019-12-01 => 31 dia dia
2021-11-29 => 32 myuxet axet
2021-11-30 => 32 myuxet teems
2089-11-30 => 101 dia dia
2389-11-30 => 400 myuxet teems


You should be able to handle dates from 1 AD to 9999 AD at least.



Reference implementation in Perl 6



Standard loopholes are forbidden.







code-golf date






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 10 at 1:14







bb94

















asked May 9 at 2:25









bb94bb94

1,421715




1,421715







  • 3




    $begingroup$
    You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 3:45










  • $begingroup$
    It has to be a space-separated string.
    $endgroup$
    – bb94
    May 9 at 4:19










  • $begingroup$
    Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 4:23






  • 1




    $begingroup$
    Yes, that's fine.
    $endgroup$
    – bb94
    May 9 at 4:24










  • $begingroup$
    May we output month and day in Title Case? -213 Ral Ket?
    $endgroup$
    – Adám
    May 9 at 4:59












  • 3




    $begingroup$
    You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 3:45










  • $begingroup$
    It has to be a space-separated string.
    $endgroup$
    – bb94
    May 9 at 4:19










  • $begingroup$
    Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
    $endgroup$
    – Embodiment of Ignorance
    May 9 at 4:23






  • 1




    $begingroup$
    Yes, that's fine.
    $endgroup$
    – bb94
    May 9 at 4:24










  • $begingroup$
    May we output month and day in Title Case? -213 Ral Ket?
    $endgroup$
    – Adám
    May 9 at 4:59







3




3




$begingroup$
You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
$endgroup$
– Embodiment of Ignorance
May 9 at 3:45




$begingroup$
You should probably include in your post that axet and teems are at the end of the year, I was confused until I looked at the link
$endgroup$
– Embodiment of Ignorance
May 9 at 3:45












$begingroup$
It has to be a space-separated string.
$endgroup$
– bb94
May 9 at 4:19




$begingroup$
It has to be a space-separated string.
$endgroup$
– bb94
May 9 at 4:19












$begingroup$
Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
$endgroup$
– Embodiment of Ignorance
May 9 at 4:23




$begingroup$
Can we take input as a three value named tuple or a list of three values each signifying year, month, and day?
$endgroup$
– Embodiment of Ignorance
May 9 at 4:23




1




1




$begingroup$
Yes, that's fine.
$endgroup$
– bb94
May 9 at 4:24




$begingroup$
Yes, that's fine.
$endgroup$
– bb94
May 9 at 4:24












$begingroup$
May we output month and day in Title Case? -213 Ral Ket?
$endgroup$
– Adám
May 9 at 4:59




$begingroup$
May we output month and day in Title Case? -213 Ral Ket?
$endgroup$
– Adám
May 9 at 4:59










7 Answers
7






active

oldest

votes


















4












$begingroup$


Perl 6, 174 bytes





~(.year,(o*-726436


Try it online!



Generate a list of all the valid dates and then indexes the day of the year into that list.



Explanation



 # Anonymous code block
o*-726436 # Subtract some days from the input
(.year, # Output the year
[X]("...".comb(3))[^365] # Then produce a list of all months/days
(| ,
|("myuxet"X <axet teems>)) # And the extra days
[.day-of-year-1] # And get the current date
~ # Stringify the list





share|improve this answer











$endgroup$




















    3












    $begingroup$


    Ruby, 199 195 193 bytes



    Oof, only 23 27 29 bytes saved over the sample Perl code...



    -4 bytes from @NickKennedy.



    -2 bytes from @Neil.





    ->dd-=62764e6;y=d.yday;s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir".scan /.../;[d.year,y<364?s[y/28]:"myuxet",(y<364?s:%w[axet teems])[y%28-1]]*' '


    Try it online!






    share|improve this answer











    $endgroup$








    • 1




      $begingroup$
      195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
      $endgroup$
      – Nick Kennedy
      May 9 at 18:28






    • 1




      $begingroup$
      193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
      $endgroup$
      – Neil
      May 9 at 22:29


















    3












    $begingroup$


    Japt -S, 148 bytes



    ÐUVW;f1Uf -726436
    -ÐTT i1Ui¹z864e5
    `¹avio¦sgÅ~ldyu´llzpal·kfavruj rvt¦nzjÅanket¤nlaxnpµtkun·r`pD ò3
    [Ui Vz28 gW¯D p"myuxet")VgWp"axet"`ems`]


    Saved 4 bytes thanks to @Shaggy. +A lot more bytes due to bug-fixes. Takes months as 0-indexed numbers.



    Japt does have built-in date handling, but it's not very good. Seriously, 34 bytes to initialize a date, then subtract days from it, and then calculate which day of the year it is?



    Try it



    ÐUVW; Initialize date object with given inputs
    f1Uf -726436 Subtract 726436 days; Store in variable 'U'
    -ÐTT i1Ui¹z864e5 Store the day of year in variable 'V'
    `...` Compressed string of all the days
    pD Repeated 13 times
    ò3 Split into chunks, where each chunks is 3 chars long, store in variable 'W'
    [Ui Year
    Vz28 gW¯D p"myuxet") Month
    VgWp"axet"`ems`] Day





    share|improve this answer











    $endgroup$








    • 1




      $begingroup$
      Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
      $endgroup$
      – Shaggy
      May 9 at 22:53










    • $begingroup$
      Just spotted the sT; there's a shortcut for that ;)
      $endgroup$
      – Shaggy
      May 9 at 23:00










    • $begingroup$
      Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
      $endgroup$
      – Shaggy
      May 9 at 23:35


















    2












    $begingroup$


    Jelly, 181 164 bytes



    “BƥṠĿZȧḷċ'#1ƇIræżzḤ$ḅ3ṃefɲ⁴S⁵ẊKḲ&8ɲz⁸Ẋ⁼ṣẸÇɼ:İ~¢ȥ³QⱮ:Ṗỵrɼ¬ṂĿZ⁵ṣ»Ḳḣ€3ḣ13pƊ;“¬ỵƇnḄẋFƬ@§Żị»ḲḢWpƊ¤
    “ÇġƁʠÇỤḷṁÑWðṫ⁷m¥ṛʂɲðḊk¶`Ḣ»ḲjḢ$;;“","%Y%m%d"))+3499e5)”ŒVm7_2ȷ;ị¢$ʋ/K


    Try it online!



    Jelly has no built-in date handling, so this falls back on the functionality within Python’s time module.



    Explanation



    “Bƥ...⁵ṣ» | Compressed string "diact viol lisk gild full dyu mela rale zanja palay miked fava ruj ser rave tanas linac rez jilt dinar ket lend lax nene pinas mat kune mire"
    Ḳ | split at spaces
    ḣ€3 | first 3 characters of each
    Ɗ | following links as a monad
    ḣ13 | first 13
    p | Cartesian product (with all 28)
    ; ¤ | concatenate to:
    “¬...ị» | compressed string "myuxet axet teems"
    Ḳ | split at spaces
    Ɗ | following two links as a monad
    Ḣ | head
    p | Cartesian product (with last two)

    “Ç...Ḣ» | Compressed string 'time .local ( .mk ( .strp ("'
    Ḳ | split at spaces
    jḢ$ | join using first item (i.e. time)
    ; | concatenate to input
    ;“"...)” | concatenate this to '","%Y%m%d"))+3499e5)'
    ŒV | eval as Python
    m7 | take every 7th item (year and day in year)
    ʋ/ | reduce using following links as a dyad
    _2ȷ | subtract 2000 (from first value, the year)
    ;ị¢$} | concatenate with right argument (day in year) indexed into above link
    K | join with spaces





    share|improve this answer











    $endgroup$








    • 1




      $begingroup$
      "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
      $endgroup$
      – Kevin Cruijssen
      May 9 at 13:11










    • $begingroup$
      Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
      $endgroup$
      – bb94
      May 11 at 7:48










    • $begingroup$
      @bb94 yes it uses the shortest dictionary word for each where one is available.
      $endgroup$
      – Nick Kennedy
      May 11 at 7:50










    • $begingroup$
      That's actually really clever.
      $endgroup$
      – bb94
      May 11 at 7:51


















    1












    $begingroup$


    C# (Visual C# Interactive Compiler), 247 bytes





    n=>$"(n=n.AddDays(4049)).Year-2e3 ((k=n.DayOfYear-1)<365?s.Substring(k/28*3,3):"myuxet") (k<365?s.Substring(k%28*3,3):k<366?"axets":"teems")";var s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir";int k;


    Try it online!






    share|improve this answer









    $endgroup$




















      1












      $begingroup$

      JavaScript (ES6), 297 269 252 249 245 bytes






      f=
      d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

      <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





      Takes input as a JavaScript date object in UTC (would be 1 byte less as a JavaScript timestamp number). Edit: Saved 3 7 bytes thanks to @Arnauld.



      Try it online! if the snippet still isn't working for you for some reason.






      share|improve this answer











      $endgroup$












      • $begingroup$
        Unfortunately, I get something like 30 dyu undefined for this on Firefox.
        $endgroup$
        – bb94
        May 10 at 1:16










      • $begingroup$
        Same here on chrome
        $endgroup$
        – Embodiment of Ignorance
        May 10 at 3:20










      • $begingroup$
        @bb94 Odd, I use Firefox...
        $endgroup$
        – Neil
        May 10 at 9:17










      • $begingroup$
        @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
        $endgroup$
        – Neil
        May 10 at 9:22






      • 1




        $begingroup$
        @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
        $endgroup$
        – Neil
        May 10 at 9:48


















      1












      $begingroup$


      Haskell, 387 373 372 bytes





      import Data.Time.Calendar
      t(a:b:c:r)=[a,b,c]:t r
      t _=[]
      w=t"diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir"
      (%)=mod
      a y=map(show y++)$[' ':m++' ':d|m<-take 13 w,d<-w]++" myuxet axet":[" myuxet teems"|y%4<1,y%400<1||y%100>0]
      f d|n<-read.show$diffDays d$fromGregorian 1988 11 30=last$(a=<<[0..])!!n:[(reverse.a=<<[-1,-2..])!!(-n-1)|n<0]


      Try it online!



      Takes input as a Day object.



      This was pretty fun to write! Basic idea is to build a list of dates and index into it for the result. Function a takes a year and outputs every date in that year in chronological order. Function f expands on a concatenating them together for successive years starting at 0. The trick is that for dates before the epoch we need to traverse backwards starting from the year -1 so we pass a values -1,-2... and reverse each list individually before concatenating them together. Finally, in function f we calculate the number of days between the epoch and our date (converting it from Integer to Int) and index into our list, taking care to fix our index if it's negative.



      EDIT: golfed it down (-14)



      EDIT 2: golfed down the day/month names list (-1)






      share|improve this answer











      $endgroup$













        Your Answer






        StackExchange.ifUsing("editor", function ()
        StackExchange.using("externalEditor", function ()
        StackExchange.using("snippets", function ()
        StackExchange.snippets.init();
        );
        );
        , "code-snippets");

        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "200"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: false,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        imageUploader:
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        ,
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













        draft saved

        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f185339%2foutput-the-date-in-the-mel-calendar%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        7 Answers
        7






        active

        oldest

        votes








        7 Answers
        7






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        4












        $begingroup$


        Perl 6, 174 bytes





        ~(.year,(o*-726436


        Try it online!



        Generate a list of all the valid dates and then indexes the day of the year into that list.



        Explanation



         # Anonymous code block
        o*-726436 # Subtract some days from the input
        (.year, # Output the year
        [X]("...".comb(3))[^365] # Then produce a list of all months/days
        (| ,
        |("myuxet"X <axet teems>)) # And the extra days
        [.day-of-year-1] # And get the current date
        ~ # Stringify the list





        share|improve this answer











        $endgroup$

















          4












          $begingroup$


          Perl 6, 174 bytes





          ~(.year,(o*-726436


          Try it online!



          Generate a list of all the valid dates and then indexes the day of the year into that list.



          Explanation



           # Anonymous code block
          o*-726436 # Subtract some days from the input
          (.year, # Output the year
          [X]("...".comb(3))[^365] # Then produce a list of all months/days
          (| ,
          |("myuxet"X <axet teems>)) # And the extra days
          [.day-of-year-1] # And get the current date
          ~ # Stringify the list





          share|improve this answer











          $endgroup$















            4












            4








            4





            $begingroup$


            Perl 6, 174 bytes





            ~(.year,(o*-726436


            Try it online!



            Generate a list of all the valid dates and then indexes the day of the year into that list.



            Explanation



             # Anonymous code block
            o*-726436 # Subtract some days from the input
            (.year, # Output the year
            [X]("...".comb(3))[^365] # Then produce a list of all months/days
            (| ,
            |("myuxet"X <axet teems>)) # And the extra days
            [.day-of-year-1] # And get the current date
            ~ # Stringify the list





            share|improve this answer











            $endgroup$




            Perl 6, 174 bytes





            ~(.year,(o*-726436


            Try it online!



            Generate a list of all the valid dates and then indexes the day of the year into that list.



            Explanation



             # Anonymous code block
            o*-726436 # Subtract some days from the input
            (.year, # Output the year
            [X]("...".comb(3))[^365] # Then produce a list of all months/days
            (| ,
            |("myuxet"X <axet teems>)) # And the extra days
            [.day-of-year-1] # And get the current date
            ~ # Stringify the list






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 9 at 4:46

























            answered May 9 at 4:12









            Jo KingJo King

            28.3k366134




            28.3k366134





















                3












                $begingroup$


                Ruby, 199 195 193 bytes



                Oof, only 23 27 29 bytes saved over the sample Perl code...



                -4 bytes from @NickKennedy.



                -2 bytes from @Neil.





                ->dd-=62764e6;y=d.yday;s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir".scan /.../;[d.year,y<364?s[y/28]:"myuxet",(y<364?s:%w[axet teems])[y%28-1]]*' '


                Try it online!






                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                  $endgroup$
                  – Nick Kennedy
                  May 9 at 18:28






                • 1




                  $begingroup$
                  193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                  $endgroup$
                  – Neil
                  May 9 at 22:29















                3












                $begingroup$


                Ruby, 199 195 193 bytes



                Oof, only 23 27 29 bytes saved over the sample Perl code...



                -4 bytes from @NickKennedy.



                -2 bytes from @Neil.





                ->dd-=62764e6;y=d.yday;s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir".scan /.../;[d.year,y<364?s[y/28]:"myuxet",(y<364?s:%w[axet teems])[y%28-1]]*' '


                Try it online!






                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                  $endgroup$
                  – Nick Kennedy
                  May 9 at 18:28






                • 1




                  $begingroup$
                  193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                  $endgroup$
                  – Neil
                  May 9 at 22:29













                3












                3








                3





                $begingroup$


                Ruby, 199 195 193 bytes



                Oof, only 23 27 29 bytes saved over the sample Perl code...



                -4 bytes from @NickKennedy.



                -2 bytes from @Neil.





                ->dd-=62764e6;y=d.yday;s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir".scan /.../;[d.year,y<364?s[y/28]:"myuxet",(y<364?s:%w[axet teems])[y%28-1]]*' '


                Try it online!






                share|improve this answer











                $endgroup$




                Ruby, 199 195 193 bytes



                Oof, only 23 27 29 bytes saved over the sample Perl code...



                -4 bytes from @NickKennedy.



                -2 bytes from @Neil.





                ->dd-=62764e6;y=d.yday;s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir".scan /.../;[d.year,y<364?s[y/28]:"myuxet",(y<364?s:%w[axet teems])[y%28-1]]*' '


                Try it online!







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited May 10 at 0:29

























                answered May 9 at 3:36









                Value InkValue Ink

                8,135731




                8,135731







                • 1




                  $begingroup$
                  195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                  $endgroup$
                  – Nick Kennedy
                  May 9 at 18:28






                • 1




                  $begingroup$
                  193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                  $endgroup$
                  – Neil
                  May 9 at 22:29












                • 1




                  $begingroup$
                  195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                  $endgroup$
                  – Nick Kennedy
                  May 9 at 18:28






                • 1




                  $begingroup$
                  193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                  $endgroup$
                  – Neil
                  May 9 at 22:29







                1




                1




                $begingroup$
                195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                $endgroup$
                – Nick Kennedy
                May 9 at 18:28




                $begingroup$
                195 bytes (by using a less exact number for subtraction) tio.run/##PY3bjoIwFEXf/QqCGi@xSKtykUF/…
                $endgroup$
                – Nick Kennedy
                May 9 at 18:28




                1




                1




                $begingroup$
                193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                $endgroup$
                – Neil
                May 9 at 22:29




                $begingroup$
                193 bytes by using y<364 instead of m<13 and then inlining the last use of m. Try it online!
                $endgroup$
                – Neil
                May 9 at 22:29











                3












                $begingroup$


                Japt -S, 148 bytes



                ÐUVW;f1Uf -726436
                -ÐTT i1Ui¹z864e5
                `¹avio¦sgÅ~ldyu´llzpal·kfavruj rvt¦nzjÅanket¤nlaxnpµtkun·r`pD ò3
                [Ui Vz28 gW¯D p"myuxet")VgWp"axet"`ems`]


                Saved 4 bytes thanks to @Shaggy. +A lot more bytes due to bug-fixes. Takes months as 0-indexed numbers.



                Japt does have built-in date handling, but it's not very good. Seriously, 34 bytes to initialize a date, then subtract days from it, and then calculate which day of the year it is?



                Try it



                ÐUVW; Initialize date object with given inputs
                f1Uf -726436 Subtract 726436 days; Store in variable 'U'
                -ÐTT i1Ui¹z864e5 Store the day of year in variable 'V'
                `...` Compressed string of all the days
                pD Repeated 13 times
                ò3 Split into chunks, where each chunks is 3 chars long, store in variable 'W'
                [Ui Year
                Vz28 gW¯D p"myuxet") Month
                VgWp"axet"`ems`] Day





                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                  $endgroup$
                  – Shaggy
                  May 9 at 22:53










                • $begingroup$
                  Just spotted the sT; there's a shortcut for that ;)
                  $endgroup$
                  – Shaggy
                  May 9 at 23:00










                • $begingroup$
                  Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                  $endgroup$
                  – Shaggy
                  May 9 at 23:35















                3












                $begingroup$


                Japt -S, 148 bytes



                ÐUVW;f1Uf -726436
                -ÐTT i1Ui¹z864e5
                `¹avio¦sgÅ~ldyu´llzpal·kfavruj rvt¦nzjÅanket¤nlaxnpµtkun·r`pD ò3
                [Ui Vz28 gW¯D p"myuxet")VgWp"axet"`ems`]


                Saved 4 bytes thanks to @Shaggy. +A lot more bytes due to bug-fixes. Takes months as 0-indexed numbers.



                Japt does have built-in date handling, but it's not very good. Seriously, 34 bytes to initialize a date, then subtract days from it, and then calculate which day of the year it is?



                Try it



                ÐUVW; Initialize date object with given inputs
                f1Uf -726436 Subtract 726436 days; Store in variable 'U'
                -ÐTT i1Ui¹z864e5 Store the day of year in variable 'V'
                `...` Compressed string of all the days
                pD Repeated 13 times
                ò3 Split into chunks, where each chunks is 3 chars long, store in variable 'W'
                [Ui Year
                Vz28 gW¯D p"myuxet") Month
                VgWp"axet"`ems`] Day





                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                  $endgroup$
                  – Shaggy
                  May 9 at 22:53










                • $begingroup$
                  Just spotted the sT; there's a shortcut for that ;)
                  $endgroup$
                  – Shaggy
                  May 9 at 23:00










                • $begingroup$
                  Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                  $endgroup$
                  – Shaggy
                  May 9 at 23:35













                3












                3








                3





                $begingroup$


                Japt -S, 148 bytes



                ÐUVW;f1Uf -726436
                -ÐTT i1Ui¹z864e5
                `¹avio¦sgÅ~ldyu´llzpal·kfavruj rvt¦nzjÅanket¤nlaxnpµtkun·r`pD ò3
                [Ui Vz28 gW¯D p"myuxet")VgWp"axet"`ems`]


                Saved 4 bytes thanks to @Shaggy. +A lot more bytes due to bug-fixes. Takes months as 0-indexed numbers.



                Japt does have built-in date handling, but it's not very good. Seriously, 34 bytes to initialize a date, then subtract days from it, and then calculate which day of the year it is?



                Try it



                ÐUVW; Initialize date object with given inputs
                f1Uf -726436 Subtract 726436 days; Store in variable 'U'
                -ÐTT i1Ui¹z864e5 Store the day of year in variable 'V'
                `...` Compressed string of all the days
                pD Repeated 13 times
                ò3 Split into chunks, where each chunks is 3 chars long, store in variable 'W'
                [Ui Year
                Vz28 gW¯D p"myuxet") Month
                VgWp"axet"`ems`] Day





                share|improve this answer











                $endgroup$




                Japt -S, 148 bytes



                ÐUVW;f1Uf -726436
                -ÐTT i1Ui¹z864e5
                `¹avio¦sgÅ~ldyu´llzpal·kfavruj rvt¦nzjÅanket¤nlaxnpµtkun·r`pD ò3
                [Ui Vz28 gW¯D p"myuxet")VgWp"axet"`ems`]


                Saved 4 bytes thanks to @Shaggy. +A lot more bytes due to bug-fixes. Takes months as 0-indexed numbers.



                Japt does have built-in date handling, but it's not very good. Seriously, 34 bytes to initialize a date, then subtract days from it, and then calculate which day of the year it is?



                Try it



                ÐUVW; Initialize date object with given inputs
                f1Uf -726436 Subtract 726436 days; Store in variable 'U'
                -ÐTT i1Ui¹z864e5 Store the day of year in variable 'V'
                `...` Compressed string of all the days
                pD Repeated 13 times
                ò3 Split into chunks, where each chunks is 3 chars long, store in variable 'W'
                [Ui Year
                Vz28 gW¯D p"myuxet") Month
                VgWp"axet"`ems`] Day






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited May 10 at 3:58

























                answered May 9 at 22:38









                Embodiment of IgnoranceEmbodiment of Ignorance

                3,549128




                3,549128







                • 1




                  $begingroup$
                  Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                  $endgroup$
                  – Shaggy
                  May 9 at 22:53










                • $begingroup$
                  Just spotted the sT; there's a shortcut for that ;)
                  $endgroup$
                  – Shaggy
                  May 9 at 23:00










                • $begingroup$
                  Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                  $endgroup$
                  – Shaggy
                  May 9 at 23:35












                • 1




                  $begingroup$
                  Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                  $endgroup$
                  – Shaggy
                  May 9 at 22:53










                • $begingroup$
                  Just spotted the sT; there's a shortcut for that ;)
                  $endgroup$
                  – Shaggy
                  May 9 at 23:00










                • $begingroup$
                  Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                  $endgroup$
                  – Shaggy
                  May 9 at 23:35







                1




                1




                $begingroup$
                Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                $endgroup$
                – Shaggy
                May 9 at 22:53




                $begingroup$
                Due to the (unnecessarily) strict output format, this should be "Japt -S". You can save 2 bytes by replacing both occurrences of 13 with D. I'll take another look in the morning (when I'm not down the pub, on my phone) to see if I can see any other savings but have a +1 in the meantime for beating Jelly by a significant margin.
                $endgroup$
                – Shaggy
                May 9 at 22:53












                $begingroup$
                Just spotted the sT; there's a shortcut for that ;)
                $endgroup$
                – Shaggy
                May 9 at 23:00




                $begingroup$
                Just spotted the sT; there's a shortcut for that ;)
                $endgroup$
                – Shaggy
                May 9 at 23:00












                $begingroup$
                Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                $endgroup$
                – Shaggy
                May 9 at 23:35




                $begingroup$
                Sadly, it looks like your byte count is off; TIO is counting in SBCS instead of UTF-8.
                $endgroup$
                – Shaggy
                May 9 at 23:35











                2












                $begingroup$


                Jelly, 181 164 bytes



                “BƥṠĿZȧḷċ'#1ƇIræżzḤ$ḅ3ṃefɲ⁴S⁵ẊKḲ&8ɲz⁸Ẋ⁼ṣẸÇɼ:İ~¢ȥ³QⱮ:Ṗỵrɼ¬ṂĿZ⁵ṣ»Ḳḣ€3ḣ13pƊ;“¬ỵƇnḄẋFƬ@§Żị»ḲḢWpƊ¤
                “ÇġƁʠÇỤḷṁÑWðṫ⁷m¥ṛʂɲðḊk¶`Ḣ»ḲjḢ$;;“","%Y%m%d"))+3499e5)”ŒVm7_2ȷ;ị¢$ʋ/K


                Try it online!



                Jelly has no built-in date handling, so this falls back on the functionality within Python’s time module.



                Explanation



                “Bƥ...⁵ṣ» | Compressed string "diact viol lisk gild full dyu mela rale zanja palay miked fava ruj ser rave tanas linac rez jilt dinar ket lend lax nene pinas mat kune mire"
                Ḳ | split at spaces
                ḣ€3 | first 3 characters of each
                Ɗ | following links as a monad
                ḣ13 | first 13
                p | Cartesian product (with all 28)
                ; ¤ | concatenate to:
                “¬...ị» | compressed string "myuxet axet teems"
                Ḳ | split at spaces
                Ɗ | following two links as a monad
                Ḣ | head
                p | Cartesian product (with last two)

                “Ç...Ḣ» | Compressed string 'time .local ( .mk ( .strp ("'
                Ḳ | split at spaces
                jḢ$ | join using first item (i.e. time)
                ; | concatenate to input
                ;“"...)” | concatenate this to '","%Y%m%d"))+3499e5)'
                ŒV | eval as Python
                m7 | take every 7th item (year and day in year)
                ʋ/ | reduce using following links as a dyad
                _2ȷ | subtract 2000 (from first value, the year)
                ;ị¢$} | concatenate with right argument (day in year) indexed into above link
                K | join with spaces





                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                  $endgroup$
                  – Kevin Cruijssen
                  May 9 at 13:11










                • $begingroup$
                  Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                  $endgroup$
                  – bb94
                  May 11 at 7:48










                • $begingroup$
                  @bb94 yes it uses the shortest dictionary word for each where one is available.
                  $endgroup$
                  – Nick Kennedy
                  May 11 at 7:50










                • $begingroup$
                  That's actually really clever.
                  $endgroup$
                  – bb94
                  May 11 at 7:51















                2












                $begingroup$


                Jelly, 181 164 bytes



                “BƥṠĿZȧḷċ'#1ƇIræżzḤ$ḅ3ṃefɲ⁴S⁵ẊKḲ&8ɲz⁸Ẋ⁼ṣẸÇɼ:İ~¢ȥ³QⱮ:Ṗỵrɼ¬ṂĿZ⁵ṣ»Ḳḣ€3ḣ13pƊ;“¬ỵƇnḄẋFƬ@§Żị»ḲḢWpƊ¤
                “ÇġƁʠÇỤḷṁÑWðṫ⁷m¥ṛʂɲðḊk¶`Ḣ»ḲjḢ$;;“","%Y%m%d"))+3499e5)”ŒVm7_2ȷ;ị¢$ʋ/K


                Try it online!



                Jelly has no built-in date handling, so this falls back on the functionality within Python’s time module.



                Explanation



                “Bƥ...⁵ṣ» | Compressed string "diact viol lisk gild full dyu mela rale zanja palay miked fava ruj ser rave tanas linac rez jilt dinar ket lend lax nene pinas mat kune mire"
                Ḳ | split at spaces
                ḣ€3 | first 3 characters of each
                Ɗ | following links as a monad
                ḣ13 | first 13
                p | Cartesian product (with all 28)
                ; ¤ | concatenate to:
                “¬...ị» | compressed string "myuxet axet teems"
                Ḳ | split at spaces
                Ɗ | following two links as a monad
                Ḣ | head
                p | Cartesian product (with last two)

                “Ç...Ḣ» | Compressed string 'time .local ( .mk ( .strp ("'
                Ḳ | split at spaces
                jḢ$ | join using first item (i.e. time)
                ; | concatenate to input
                ;“"...)” | concatenate this to '","%Y%m%d"))+3499e5)'
                ŒV | eval as Python
                m7 | take every 7th item (year and day in year)
                ʋ/ | reduce using following links as a dyad
                _2ȷ | subtract 2000 (from first value, the year)
                ;ị¢$} | concatenate with right argument (day in year) indexed into above link
                K | join with spaces





                share|improve this answer











                $endgroup$








                • 1




                  $begingroup$
                  "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                  $endgroup$
                  – Kevin Cruijssen
                  May 9 at 13:11










                • $begingroup$
                  Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                  $endgroup$
                  – bb94
                  May 11 at 7:48










                • $begingroup$
                  @bb94 yes it uses the shortest dictionary word for each where one is available.
                  $endgroup$
                  – Nick Kennedy
                  May 11 at 7:50










                • $begingroup$
                  That's actually really clever.
                  $endgroup$
                  – bb94
                  May 11 at 7:51













                2












                2








                2





                $begingroup$


                Jelly, 181 164 bytes



                “BƥṠĿZȧḷċ'#1ƇIræżzḤ$ḅ3ṃefɲ⁴S⁵ẊKḲ&8ɲz⁸Ẋ⁼ṣẸÇɼ:İ~¢ȥ³QⱮ:Ṗỵrɼ¬ṂĿZ⁵ṣ»Ḳḣ€3ḣ13pƊ;“¬ỵƇnḄẋFƬ@§Żị»ḲḢWpƊ¤
                “ÇġƁʠÇỤḷṁÑWðṫ⁷m¥ṛʂɲðḊk¶`Ḣ»ḲjḢ$;;“","%Y%m%d"))+3499e5)”ŒVm7_2ȷ;ị¢$ʋ/K


                Try it online!



                Jelly has no built-in date handling, so this falls back on the functionality within Python’s time module.



                Explanation



                “Bƥ...⁵ṣ» | Compressed string "diact viol lisk gild full dyu mela rale zanja palay miked fava ruj ser rave tanas linac rez jilt dinar ket lend lax nene pinas mat kune mire"
                Ḳ | split at spaces
                ḣ€3 | first 3 characters of each
                Ɗ | following links as a monad
                ḣ13 | first 13
                p | Cartesian product (with all 28)
                ; ¤ | concatenate to:
                “¬...ị» | compressed string "myuxet axet teems"
                Ḳ | split at spaces
                Ɗ | following two links as a monad
                Ḣ | head
                p | Cartesian product (with last two)

                “Ç...Ḣ» | Compressed string 'time .local ( .mk ( .strp ("'
                Ḳ | split at spaces
                jḢ$ | join using first item (i.e. time)
                ; | concatenate to input
                ;“"...)” | concatenate this to '","%Y%m%d"))+3499e5)'
                ŒV | eval as Python
                m7 | take every 7th item (year and day in year)
                ʋ/ | reduce using following links as a dyad
                _2ȷ | subtract 2000 (from first value, the year)
                ;ị¢$} | concatenate with right argument (day in year) indexed into above link
                K | join with spaces





                share|improve this answer











                $endgroup$




                Jelly, 181 164 bytes



                “BƥṠĿZȧḷċ'#1ƇIræżzḤ$ḅ3ṃefɲ⁴S⁵ẊKḲ&8ɲz⁸Ẋ⁼ṣẸÇɼ:İ~¢ȥ³QⱮ:Ṗỵrɼ¬ṂĿZ⁵ṣ»Ḳḣ€3ḣ13pƊ;“¬ỵƇnḄẋFƬ@§Żị»ḲḢWpƊ¤
                “ÇġƁʠÇỤḷṁÑWðṫ⁷m¥ṛʂɲðḊk¶`Ḣ»ḲjḢ$;;“","%Y%m%d"))+3499e5)”ŒVm7_2ȷ;ị¢$ʋ/K


                Try it online!



                Jelly has no built-in date handling, so this falls back on the functionality within Python’s time module.



                Explanation



                “Bƥ...⁵ṣ» | Compressed string "diact viol lisk gild full dyu mela rale zanja palay miked fava ruj ser rave tanas linac rez jilt dinar ket lend lax nene pinas mat kune mire"
                Ḳ | split at spaces
                ḣ€3 | first 3 characters of each
                Ɗ | following links as a monad
                ḣ13 | first 13
                p | Cartesian product (with all 28)
                ; ¤ | concatenate to:
                “¬...ị» | compressed string "myuxet axet teems"
                Ḳ | split at spaces
                Ɗ | following two links as a monad
                Ḣ | head
                p | Cartesian product (with last two)

                “Ç...Ḣ» | Compressed string 'time .local ( .mk ( .strp ("'
                Ḳ | split at spaces
                jḢ$ | join using first item (i.e. time)
                ; | concatenate to input
                ;“"...)” | concatenate this to '","%Y%m%d"))+3499e5)'
                ŒV | eval as Python
                m7 | take every 7th item (year and day in year)
                ʋ/ | reduce using following links as a dyad
                _2ȷ | subtract 2000 (from first value, the year)
                ;ị¢$} | concatenate with right argument (day in year) indexed into above link
                K | join with spaces






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited May 9 at 18:14

























                answered May 9 at 12:37









                Nick KennedyNick Kennedy

                2,37459




                2,37459







                • 1




                  $begingroup$
                  "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                  $endgroup$
                  – Kevin Cruijssen
                  May 9 at 13:11










                • $begingroup$
                  Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                  $endgroup$
                  – bb94
                  May 11 at 7:48










                • $begingroup$
                  @bb94 yes it uses the shortest dictionary word for each where one is available.
                  $endgroup$
                  – Nick Kennedy
                  May 11 at 7:50










                • $begingroup$
                  That's actually really clever.
                  $endgroup$
                  – bb94
                  May 11 at 7:51












                • 1




                  $begingroup$
                  "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                  $endgroup$
                  – Kevin Cruijssen
                  May 9 at 13:11










                • $begingroup$
                  Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                  $endgroup$
                  – bb94
                  May 11 at 7:48










                • $begingroup$
                  @bb94 yes it uses the shortest dictionary word for each where one is available.
                  $endgroup$
                  – Nick Kennedy
                  May 11 at 7:50










                • $begingroup$
                  That's actually really clever.
                  $endgroup$
                  – bb94
                  May 11 at 7:51







                1




                1




                $begingroup$
                "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                $endgroup$
                – Kevin Cruijssen
                May 9 at 13:11




                $begingroup$
                "this falls back on the functionality within Python’s time module." Ah, smart! I was trying to make an answer in 05AB1E (also lacking date builtins), and although I was able to get the amount of days between 1988-11-30 and the input-date, it wasn't really useful since I need the date-difference (years, months, and days) instead of days-difference. I have done a few other date related challenges in 05AB1E in the past (i.e. this one and some derivatives). I might try again with part of the code as compressed Python, being inspired by you. :)
                $endgroup$
                – Kevin Cruijssen
                May 9 at 13:11












                $begingroup$
                Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                $endgroup$
                – bb94
                May 11 at 7:48




                $begingroup$
                Let me guess: the first string (diact viol lisk...) is written weirdly to compress better?
                $endgroup$
                – bb94
                May 11 at 7:48












                $begingroup$
                @bb94 yes it uses the shortest dictionary word for each where one is available.
                $endgroup$
                – Nick Kennedy
                May 11 at 7:50




                $begingroup$
                @bb94 yes it uses the shortest dictionary word for each where one is available.
                $endgroup$
                – Nick Kennedy
                May 11 at 7:50












                $begingroup$
                That's actually really clever.
                $endgroup$
                – bb94
                May 11 at 7:51




                $begingroup$
                That's actually really clever.
                $endgroup$
                – bb94
                May 11 at 7:51











                1












                $begingroup$


                C# (Visual C# Interactive Compiler), 247 bytes





                n=>$"(n=n.AddDays(4049)).Year-2e3 ((k=n.DayOfYear-1)<365?s.Substring(k/28*3,3):"myuxet") (k<365?s.Substring(k%28*3,3):k<366?"axets":"teems")";var s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir";int k;


                Try it online!






                share|improve this answer









                $endgroup$

















                  1












                  $begingroup$


                  C# (Visual C# Interactive Compiler), 247 bytes





                  n=>$"(n=n.AddDays(4049)).Year-2e3 ((k=n.DayOfYear-1)<365?s.Substring(k/28*3,3):"myuxet") (k<365?s.Substring(k%28*3,3):k<366?"axets":"teems")";var s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir";int k;


                  Try it online!






                  share|improve this answer









                  $endgroup$















                    1












                    1








                    1





                    $begingroup$


                    C# (Visual C# Interactive Compiler), 247 bytes





                    n=>$"(n=n.AddDays(4049)).Year-2e3 ((k=n.DayOfYear-1)<365?s.Substring(k/28*3,3):"myuxet") (k<365?s.Substring(k%28*3,3):k<366?"axets":"teems")";var s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir";int k;


                    Try it online!






                    share|improve this answer









                    $endgroup$




                    C# (Visual C# Interactive Compiler), 247 bytes





                    n=>$"(n=n.AddDays(4049)).Year-2e3 ((k=n.DayOfYear-1)<365?s.Substring(k/28*3,3):"myuxet") (k<365?s.Substring(k%28*3,3):k<366?"axets":"teems")";var s="diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir";int k;


                    Try it online!







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered May 10 at 2:52









                    Embodiment of IgnoranceEmbodiment of Ignorance

                    3,549128




                    3,549128





















                        1












                        $begingroup$

                        JavaScript (ES6), 297 269 252 249 245 bytes






                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





                        Takes input as a JavaScript date object in UTC (would be 1 byte less as a JavaScript timestamp number). Edit: Saved 3 7 bytes thanks to @Arnauld.



                        Try it online! if the snippet still isn't working for you for some reason.






                        share|improve this answer











                        $endgroup$












                        • $begingroup$
                          Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                          $endgroup$
                          – bb94
                          May 10 at 1:16










                        • $begingroup$
                          Same here on chrome
                          $endgroup$
                          – Embodiment of Ignorance
                          May 10 at 3:20










                        • $begingroup$
                          @bb94 Odd, I use Firefox...
                          $endgroup$
                          – Neil
                          May 10 at 9:17










                        • $begingroup$
                          @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                          $endgroup$
                          – Neil
                          May 10 at 9:22






                        • 1




                          $begingroup$
                          @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                          $endgroup$
                          – Neil
                          May 10 at 9:48















                        1












                        $begingroup$

                        JavaScript (ES6), 297 269 252 249 245 bytes






                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





                        Takes input as a JavaScript date object in UTC (would be 1 byte less as a JavaScript timestamp number). Edit: Saved 3 7 bytes thanks to @Arnauld.



                        Try it online! if the snippet still isn't working for you for some reason.






                        share|improve this answer











                        $endgroup$












                        • $begingroup$
                          Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                          $endgroup$
                          – bb94
                          May 10 at 1:16










                        • $begingroup$
                          Same here on chrome
                          $endgroup$
                          – Embodiment of Ignorance
                          May 10 at 3:20










                        • $begingroup$
                          @bb94 Odd, I use Firefox...
                          $endgroup$
                          – Neil
                          May 10 at 9:17










                        • $begingroup$
                          @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                          $endgroup$
                          – Neil
                          May 10 at 9:22






                        • 1




                          $begingroup$
                          @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                          $endgroup$
                          – Neil
                          May 10 at 9:48













                        1












                        1








                        1





                        $begingroup$

                        JavaScript (ES6), 297 269 252 249 245 bytes






                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





                        Takes input as a JavaScript date object in UTC (would be 1 byte less as a JavaScript timestamp number). Edit: Saved 3 7 bytes thanks to @Arnauld.



                        Try it online! if the snippet still isn't working for you for some reason.






                        share|improve this answer











                        $endgroup$



                        JavaScript (ES6), 297 269 252 249 245 bytes






                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





                        Takes input as a JavaScript date object in UTC (would be 1 byte less as a JavaScript timestamp number). Edit: Saved 3 7 bytes thanks to @Arnauld.



                        Try it online! if the snippet still isn't working for you for some reason.






                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>





                        f=
                        d=>(d=new Date(+d+3498336e5),d=(d-Date.UTC(y=d.getUTCFullYear(a=`diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir`.match(/.../g))))/864e5,y-2e3+` $0]+` `+a[d%28]:`myuxet $d&1?`teems`:`axet```)

                        <input type=date oninput=o.textContent=f(this.valueAsDate)><pre id=o>






                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited May 10 at 10:36

























                        answered May 9 at 22:13









                        NeilNeil

                        84.2k845182




                        84.2k845182











                        • $begingroup$
                          Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                          $endgroup$
                          – bb94
                          May 10 at 1:16










                        • $begingroup$
                          Same here on chrome
                          $endgroup$
                          – Embodiment of Ignorance
                          May 10 at 3:20










                        • $begingroup$
                          @bb94 Odd, I use Firefox...
                          $endgroup$
                          – Neil
                          May 10 at 9:17










                        • $begingroup$
                          @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                          $endgroup$
                          – Neil
                          May 10 at 9:22






                        • 1




                          $begingroup$
                          @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                          $endgroup$
                          – Neil
                          May 10 at 9:48
















                        • $begingroup$
                          Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                          $endgroup$
                          – bb94
                          May 10 at 1:16










                        • $begingroup$
                          Same here on chrome
                          $endgroup$
                          – Embodiment of Ignorance
                          May 10 at 3:20










                        • $begingroup$
                          @bb94 Odd, I use Firefox...
                          $endgroup$
                          – Neil
                          May 10 at 9:17










                        • $begingroup$
                          @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                          $endgroup$
                          – Neil
                          May 10 at 9:22






                        • 1




                          $begingroup$
                          @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                          $endgroup$
                          – Neil
                          May 10 at 9:48















                        $begingroup$
                        Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                        $endgroup$
                        – bb94
                        May 10 at 1:16




                        $begingroup$
                        Unfortunately, I get something like 30 dyu undefined for this on Firefox.
                        $endgroup$
                        – bb94
                        May 10 at 1:16












                        $begingroup$
                        Same here on chrome
                        $endgroup$
                        – Embodiment of Ignorance
                        May 10 at 3:20




                        $begingroup$
                        Same here on chrome
                        $endgroup$
                        – Embodiment of Ignorance
                        May 10 at 3:20












                        $begingroup$
                        @bb94 Odd, I use Firefox...
                        $endgroup$
                        – Neil
                        May 10 at 9:17




                        $begingroup$
                        @bb94 Odd, I use Firefox...
                        $endgroup$
                        – Neil
                        May 10 at 9:17












                        $begingroup$
                        @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                        $endgroup$
                        – Neil
                        May 10 at 9:22




                        $begingroup$
                        @EmbodimentofIgnorance I've tweaked the snippet slightly, does that help?
                        $endgroup$
                        – Neil
                        May 10 at 9:22




                        1




                        1




                        $begingroup$
                        @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                        $endgroup$
                        – Neil
                        May 10 at 9:48




                        $begingroup$
                        @Arnauld Yeah, I had just come to the same conclusion. Fortunately Date.UTC is the same length as new Date!
                        $endgroup$
                        – Neil
                        May 10 at 9:48











                        1












                        $begingroup$


                        Haskell, 387 373 372 bytes





                        import Data.Time.Calendar
                        t(a:b:c:r)=[a,b,c]:t r
                        t _=[]
                        w=t"diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir"
                        (%)=mod
                        a y=map(show y++)$[' ':m++' ':d|m<-take 13 w,d<-w]++" myuxet axet":[" myuxet teems"|y%4<1,y%400<1||y%100>0]
                        f d|n<-read.show$diffDays d$fromGregorian 1988 11 30=last$(a=<<[0..])!!n:[(reverse.a=<<[-1,-2..])!!(-n-1)|n<0]


                        Try it online!



                        Takes input as a Day object.



                        This was pretty fun to write! Basic idea is to build a list of dates and index into it for the result. Function a takes a year and outputs every date in that year in chronological order. Function f expands on a concatenating them together for successive years starting at 0. The trick is that for dates before the epoch we need to traverse backwards starting from the year -1 so we pass a values -1,-2... and reverse each list individually before concatenating them together. Finally, in function f we calculate the number of days between the epoch and our date (converting it from Integer to Int) and index into our list, taking care to fix our index if it's negative.



                        EDIT: golfed it down (-14)



                        EDIT 2: golfed down the day/month names list (-1)






                        share|improve this answer











                        $endgroup$

















                          1












                          $begingroup$


                          Haskell, 387 373 372 bytes





                          import Data.Time.Calendar
                          t(a:b:c:r)=[a,b,c]:t r
                          t _=[]
                          w=t"diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir"
                          (%)=mod
                          a y=map(show y++)$[' ':m++' ':d|m<-take 13 w,d<-w]++" myuxet axet":[" myuxet teems"|y%4<1,y%400<1||y%100>0]
                          f d|n<-read.show$diffDays d$fromGregorian 1988 11 30=last$(a=<<[0..])!!n:[(reverse.a=<<[-1,-2..])!!(-n-1)|n<0]


                          Try it online!



                          Takes input as a Day object.



                          This was pretty fun to write! Basic idea is to build a list of dates and index into it for the result. Function a takes a year and outputs every date in that year in chronological order. Function f expands on a concatenating them together for successive years starting at 0. The trick is that for dates before the epoch we need to traverse backwards starting from the year -1 so we pass a values -1,-2... and reverse each list individually before concatenating them together. Finally, in function f we calculate the number of days between the epoch and our date (converting it from Integer to Int) and index into our list, taking care to fix our index if it's negative.



                          EDIT: golfed it down (-14)



                          EDIT 2: golfed down the day/month names list (-1)






                          share|improve this answer











                          $endgroup$















                            1












                            1








                            1





                            $begingroup$


                            Haskell, 387 373 372 bytes





                            import Data.Time.Calendar
                            t(a:b:c:r)=[a,b,c]:t r
                            t _=[]
                            w=t"diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir"
                            (%)=mod
                            a y=map(show y++)$[' ':m++' ':d|m<-take 13 w,d<-w]++" myuxet axet":[" myuxet teems"|y%4<1,y%400<1||y%100>0]
                            f d|n<-read.show$diffDays d$fromGregorian 1988 11 30=last$(a=<<[0..])!!n:[(reverse.a=<<[-1,-2..])!!(-n-1)|n<0]


                            Try it online!



                            Takes input as a Day object.



                            This was pretty fun to write! Basic idea is to build a list of dates and index into it for the result. Function a takes a year and outputs every date in that year in chronological order. Function f expands on a concatenating them together for successive years starting at 0. The trick is that for dates before the epoch we need to traverse backwards starting from the year -1 so we pass a values -1,-2... and reverse each list individually before concatenating them together. Finally, in function f we calculate the number of days between the epoch and our date (converting it from Integer to Int) and index into our list, taking care to fix our index if it's negative.



                            EDIT: golfed it down (-14)



                            EDIT 2: golfed down the day/month names list (-1)






                            share|improve this answer











                            $endgroup$




                            Haskell, 387 373 372 bytes





                            import Data.Time.Calendar
                            t(a:b:c:r)=[a,b,c]:t r
                            t _=[]
                            w=t"diaviolisgilfuldyumelralzanpalmikfavrujserravtanlinrezjildinketlenlaxnenpinmatkunmir"
                            (%)=mod
                            a y=map(show y++)$[' ':m++' ':d|m<-take 13 w,d<-w]++" myuxet axet":[" myuxet teems"|y%4<1,y%400<1||y%100>0]
                            f d|n<-read.show$diffDays d$fromGregorian 1988 11 30=last$(a=<<[0..])!!n:[(reverse.a=<<[-1,-2..])!!(-n-1)|n<0]


                            Try it online!



                            Takes input as a Day object.



                            This was pretty fun to write! Basic idea is to build a list of dates and index into it for the result. Function a takes a year and outputs every date in that year in chronological order. Function f expands on a concatenating them together for successive years starting at 0. The trick is that for dates before the epoch we need to traverse backwards starting from the year -1 so we pass a values -1,-2... and reverse each list individually before concatenating them together. Finally, in function f we calculate the number of days between the epoch and our date (converting it from Integer to Int) and index into our list, taking care to fix our index if it's negative.



                            EDIT: golfed it down (-14)



                            EDIT 2: golfed down the day/month names list (-1)







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited May 11 at 7:28

























                            answered May 11 at 7:01









                            user1472751user1472751

                            1,27126




                            1,27126



























                                draft saved

                                draft discarded
















































                                If this is an answer to a challenge…



                                • …Be sure to follow the challenge specification. However, please refrain from exploiting obvious loopholes. Answers abusing any of the standard loopholes are considered invalid. If you think a specification is unclear or underspecified, comment on the question instead.


                                • …Try to optimize your score. For instance, answers to code-golf challenges should attempt to be as short as possible. You can always include a readable version of the code in addition to the competitive one.
                                  Explanations of your answer make it more interesting to read and are very much encouraged.


                                • …Include a short header which indicates the language(s) of your code and its score, as defined by the challenge.


                                More generally…



                                • …Please make sure to answer the question and provide sufficient detail.


                                • …Avoid asking for help, clarification or responding to other answers (use comments instead).




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f185339%2foutput-the-date-in-the-mel-calendar%23new-answer', 'question_page');

                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                                What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

                                Why did Thanos need his ship to help him in the battle scene?Which actor plays Thanos in the Avengers mid-credits scene?Are there economic implications portrayed in comics where the buildings and cities are ruined almost daily?Old X-Men comic where team travels to alien world with a ring-like sun that needs recharging?Why does Ego need help sleeping?Is there an objective answer to who “the strongest Avenger” is?How did Banner get unstuck?Why did Thanos get hit?How did Thanos (or anyone) know the Infinity Stones would give him this power?Did Thanos leave Eitri alive for his after-sales service?In Avengers 1, why does Thanos need Loki?