All public logs

Jump to navigation Jump to search

Combined display of all available logs of OnnoWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 12:24, 18 July 2022 Onnowpurbo talk contribs uploaded File:Kotlin project.png
  • 12:08, 18 July 2022 Onnowpurbo talk contribs created page File:Eclipse market place.png
  • 12:08, 18 July 2022 Onnowpurbo talk contribs uploaded File:Eclipse market place.png
  • 09:50, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Delegation (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_delegation.htm Kotlin supports “delegation” design pattern by introducing a new keyword “by”. Using this keywor...")
  • 09:48, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Generic (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_generics.htm Like Java, Kotlin provides higher order of variable typing called as Generics. In this chapter, we will lea...")
  • 09:46, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Sealed Class (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_sealed_class.htm In this chapter, we will learn about another class type called “Sealed” class. This type of class i...")
  • 09:45, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Data Class (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_data_classes.htm In this chapter, we will learn about Kotlin Data Classes. A Kotlin Data Class is used to hold the data...")
  • 09:43, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Extension (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_extension.htm Kotlin extensions provide the ability to extend a class with new functionality without implementing the in...")
  • 09:41, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Visibility Control (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_visibility_control.htm The Kotlin visibility modifiers are the keywords that set the visibility of classes, objects, int...")
  • 09:39, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Map (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_maps.htm Kotlin map is a collection of key/value pairs, where each key is unique, and it can only be associated with on...")
  • 09:38, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Set (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_sets.htm Kotlin set is an unordered collection of items. A Kotlin set can be either mutable (mutableSetOf) or read-only...")
  • 09:37, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: List (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_lists.htm Kotlin list is an ordered collection of items. A Kotlin list can be either mutable (mutableListOf) or read-on...")
  • 09:36, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Collection (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_collections.htm Collections are a common concept for most programming languages. A collection usually contains a number...")
  • 09:35, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Exception Handling (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_exception_handling.htm Exception handling is a very important part of a programming language. This technique restricts o...")
  • 09:31, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Interface (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_interface.htm In this chapter, we will learn about the interface in Kotlin. In Kotlin, the interface works exactly simil...")
  • 09:30, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Abstract Class (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_abstract_classes.htm A Kotlin abstract class is similar to Java abstract class which can not be instantiated. This means...")
  • 09:28, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Inheritance (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_inheritance.htm Inheritance can be defined as the process where one class acquires the members (methods and properties) o...")
  • 09:26, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Constructor (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_class_and_object.htm Kotlin supports both functional and object-oriented programming. While talking about functional fe...")
  • 09:14, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Class & Object (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_class_and_object.htm Kotlin supports both functional and object-oriented programming. While talking about functional fea...")
  • 08:38, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Function (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_functions.htm Kotlin is a statically typed language, hence, functions play a great role in it. We are pretty familiar wit...")
  • 08:37, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Range (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_ranges.htm Kotlin range is defined by its two endpoint values which are both included in the range. Kotlin ranges are cr...")
  • 08:25, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Array (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_arrays.htm Arrays are used to store multiple items of the same data-type in a single variable, such as an integer or stri...")
  • 08:25, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: String (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_strings.htm The Kotlin String data type is used to store a sequence of characters. String values must be surrounded by do...")
  • 08:18, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Boolean (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_booleans.htm Many times we come across a situation where we need to take decision in Yes or No, or may be we can say Tr...")
  • 08:16, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Operator (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_operators.htm An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations...")
  • 08:15, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Data Type (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_data_types.htm Kotlin data type is a classification of data which tells the compiler how the programmer intends to use t...")
  • 08:14, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Break Continue (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_break_continue.htm Kotlin Break Statement Kotlin break statement is used to come out of a loop once a certain condition i...")
  • 08:13, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: While Loop (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_while_loop.htm Kotlin while loop executes its body continuously as long as the specified condition is true. Kotlin whil...")
  • 08:13, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: For Loop (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_for_loop.htm What are loops? Imagine a situation when you need to print a sentence 20 times on your screen. You can do it...")
  • 08:12, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: When Expression (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_when_expression.htm Consider a situation when you have large number of conditions to check. Though you can use if..else i...")
  • 08:04, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: If else expression (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_if_else_expression.htm Kotlin if...else expressions works like an if...else expression in any other Modern Computer Progr...")
  • 07:57, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Control Flow (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_control_flow.htm Kotlin flow control statements determine the next statement to be executed. For example, the statements...")
  • 07:56, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Basic Syntax (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_basic_syntax.htm Kotlin Program Entry Point An entry point of a Kotlin application is the main() function. A function ca...")
  • 07:20, 18 July 2022 Onnowpurbo talk contribs created page KOTLIN: Architecture (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_architecture.htm Kotlin is a programming language and has its own architecture to allocate memory and produce a quality...")
  • 05:37, 18 July 2022 Onnowpurbo talk contribs created page Bingung Menulis Mulai Dari Mana (Created page with " Quoting Dimas Wibisono <dimaswibisonoa@gmail.com>: > saya tertarik utk menulis tentang Zero-Day Security. tapi bingung mulai > dari mana pak wkwkw Iya itu adalah masalah...")
  • 07:42, 15 July 2022 Onnowpurbo talk contribs created page KOTLIN: Environment Setup (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_environment_setup.htm Kotlin - Environment Setup Advertisements Previous Page Next Page Installing Kotlin command-l...")
  • 07:41, 15 July 2022 Onnowpurbo talk contribs created page KOTLIN: Overview (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_overview.htm Kotlin - Overview Advertisements Previous Page Next Page What is Kotlin? Kotlin is a new open source pr...")
  • 07:28, 15 July 2022 Onnowpurbo talk contribs created page KOTLIN: Quick Guide (Created page with "Sumber: https://www.tutorialspoint.com/kotlin/kotlin_quick_guide.htm Kotlin is a new open source programming language like Java, JavaScript, etc. It is a high level strongly...")
  • 07:26, 15 July 2022 Onnowpurbo talk contribs created page KOTLIN: TutorialPoint (Created page with "==Referensi== * https://www.tutorialspoint.com/kotlin/index.htm")
  • 07:25, 15 July 2022 Onnowpurbo talk contribs created page ANDROID: Text to Speech (Created page with "Sumber: https://www.tutorialspoint.com/android/android_text_to_speech.htm Android allows you convert your text into voice. Not only you can convert it but it also allows you...")
  • 07:24, 15 July 2022 Onnowpurbo talk contribs created page ANDROID: JSON Parser (Created page with "Sumber: https://www.tutorialspoint.com/android/android_json_parser.htm JSON stands for JavaScript Object Notation.It is an independent data exchange format and is the best...")
  • 07:23, 15 July 2022 Onnowpurbo talk contribs created page ANDROID: SQLite Database (Created page with "Sumber: https://www.tutorialspoint.com/android/android_sqlite_database.htm SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in w...")
  • 07:21, 15 July 2022 Onnowpurbo talk contribs created page ANDROID: PHP MySQL (Created page with "Sumber: https://www.tutorialspoint.com/android/android_php_mysql.htm In this chapter , we are going to explain, how you can integrate PHP and MYSQL with your android applica...")
  • 19:07, 14 July 2022 Onnowpurbo talk contribs created page File:Starlink-earthstation (2).jpg
  • 19:07, 14 July 2022 Onnowpurbo talk contribs uploaded File:Starlink-earthstation (2).jpg
  • 19:07, 14 July 2022 Onnowpurbo talk contribs created page StarLink (Created page with " center|300px|thumb")
  • 19:05, 14 July 2022 Onnowpurbo talk contribs created page File:Starlink-earthstation (1).jpg
  • 19:05, 14 July 2022 Onnowpurbo talk contribs uploaded File:Starlink-earthstation (1).jpg
  • 19:03, 14 July 2022 Onnowpurbo talk contribs created page File:FiberDesa-3.jpeg
  • 19:03, 14 July 2022 Onnowpurbo talk contribs uploaded File:FiberDesa-3.jpeg
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)