_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Nishkid64/DYK/monobook.js

In this article, we will explore the impact that User:Nishkid64/DYK/monobook.js has had on different aspects of contemporary society. Since its appearance, User:Nishkid64/DYK/monobook.js has generated debates, controversies and significant changes in various areas. Through detailed analysis, we will examine how User:Nishkid64/DYK/monobook.js has influenced politics, economics, culture, technology, and other important aspects of our daily lives. Additionally, we will delve into the past, present and future of User:Nishkid64/DYK/monobook.js, to better understand its evolution and its meaning in the current context. This article aims to offer a comprehensive and in-depth vision of User:Nishkid64/DYK/monobook.js, with the aim of providing the reader with a broader and enriching understanding of this phenomenon.
// <nowiki> 
//automate insertion of the following functions:
// Article talk page: {{subst:dyktalk|10 June|2006}}
// Article creator's talk page: {{subst:UpdatedDYK|]}}
// Nominator's talk page: {{subst:UpdatedDYKNom|]}}

function pipe_date()
{
  var months = new Array('January', 'February', 'March', 'April', 'May', 'June',
                         'July', 'August', 'September', 'October', 'November', 'December');
  var date = new Date();
  var yearStr = date.getUTCFullYear();
  var dayMoStr = months +" "+ date.getUTCDate();
  var t = dayMoStr+"|"+yearStr;
  return t;
}

function dyk_talk()
{
  
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += "{{subst:dyktalk|"+pipe_date()+"}}  ~~~~";
  f.wpSummary.value = "This article was selected for ]!" 

}

function updated_dyk()
{
  var page = prompt("User created which article?")
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += "{{subst:UpdatedDYK|"+pipe_date()+"|" + page + "}} \nThanks for your contributions! ~~~~";
  f.wpSummary.value = "Your  article, '']'', was selected for ]!" 
}

function updated_dyk_nom()
{
  var page = prompt("User nominated which article?")
  var f = document.editform, t = f.wpTextbox1;
  if (t.value.length > 0)
    t.value += '\n';
  t.value += "{{subst:UpdatedDYKNom|"+pipe_date()+"|" + page + "}} \nThanks for your contributions! ~~~~";
  f.wpSummary.value = "Your ] nomination for ] was successful" 
}

// end of file </nowiki>