Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.98 KB

File metadata and controls

58 lines (49 loc) · 1.98 KB

Auto EPBM

EPBM Automatic Form Filling for lazy people.

Based on Herdian Nugraha's autoepbm, a small js code for automatic form filling in Evaluasi Penyelenggaraan Proses Belajar Mengajar (EPBM). The Code using in this repo was Re-Newed by Me . For more information see http://code.cs.ipb.ac.id/herdian_nugraha12u/autoepbm

How to use ?

function hackEPBM(jumlah_dosen, kesan){
	mi = kesan
	ma = kesan + 1
	for(i=1;i<=10;i++){
		choose = Math.floor(Math.random() * (ma - mi + 1)) + mi
		formattedNumber = ("8" + i).slice(-2)
		if(i==10){
			formattedNumber = ("90")
		}
		target = "#JawabanMK_4"+formattedNumber+choose
		$(target).prop("checked", true)
	}
	// isi form dosen
	for(i=1;i<=jumlah_dosen;i++){
		k=550
		for(j=1;j<=10;j++){
			choose = Math.floor(Math.random() * (ma - mi + 1)) + mi
			target = "#JawabanDosen_"+i+j+(k+j)+choose
			$(target).prop("checked", true)
			$("#Pernyataan").prop("checked", true)
		}
	}
}
  • and paste to console
  • count number of dosen/lecturers
  • rate it ! (1,2,3)
  • type hackEPBM(jumlah_dosen, kesan)
  • e.g hackEPBM(4, 3)
  • Submit and Enjoy
Kesan Random-Choose
1 Sangat Tidak Setuju atau Tidak Setuju
2 Tidak Setuju atau Setuju
3 Setuju atau Sangat Setuju

Disclaimer

Any actions and or activities related to the material contained within this repository is solely your responsibility.The misuse of the information in this repository can result in criminal charges brought against the persons in question. The authors will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this repository to break the law.