<< < 57 58 59 60 61 62 63 64 65 66 67 > >>   ∑:9067  Sort:Date

Aries, The Ram, The First Zodiac Sign
This section describes the first zodiac sign, Aries, the Ram.
2022-10-01, ∼922🔥, 0💬

forName() Method - Loading Classes
This section provides a tutorial example on how to load a given class explicitly using the forName() method and create a new object using the newInstance() method.
2022-03-24, ∼922🔥, 1💬

💬 2022-03-24 Catc: Very Good!!!

Windows Tool "Character Map"
A tutorial example is provided on how to run 'Character Map' on Windows systems to view glyphs of a Unicode font family.
2022-10-01, ∼921🔥, 0💬

Creating Connections with DataSource Class
This section describes how to create connection objects with the DataSource class.
2022-10-01, ∼920🔥, 0💬

Built-in String Functions
This section provides a list of commonly used built-in string functions.
2015-10-01, ∼920🔥, 1💬

💬 2015-10-01 Kalu khan: Very nice

1F680: Transport and Map Symbols
This section provides a quick summary of the Unicode code point block: 'Transport And Map Symbols', which contains 128 code points to represent symbols used in transportion maps.
2024-01-23, ∼919🔥, 0💬

Explicit and Implicit Type Casting
This section describes type casting supported in Java: up casting (widening reference conversion) and down casting (narrowing reference conversion). Cast operation can be written explicitly with the cast operator (T), or implicitly with no operator.
2022-10-01, ∼919🔥, 0💬

1B170: Nushu
This section provides a quick summary of the Unicode code point block: 'Nushu', which contains 396 code points to represent the Nüshu script devised by women to write the local Chinese dialect of Jiangyong county in the Xiaoshui Valley of southeastern Hunan province in China.
2024-01-23, ∼918🔥, 0💬

HTTPS Server Authentication Process
This section describes the HTTPS server authentication process - 1. CA root certificate installed in the browser; 2. Web server certificate signed by the CA; 3. Web server certificate validated by the browser.
2022-10-01, ∼918🔥, 0💬

Merge Sort - Implementation in PHP
This section provides a tutorial on how to implement the Merge Sort algorithm in PHP.
2021-04-24, ∼918🔥, 2💬

💬 2021-04-24 Herong: Hubert, good point. Thanks!

💬 2021-04-20 Hubert Christiaen: The argument called toIndex is not the highest index of the array as the name suggests, but the number of elements. Hence the fo...

AAE0: Meetei Mayek Extensions
This section provides a quick summary of the Unicode code point block: 'Meetei Mayek Extensions', which contains 32 code points to represent additional Meetei Mayek alphabets used in the Meitei language.
2024-01-23, ∼917🔥, 0💬

Input Chinese Text Data to MySQL Database
This chapter provides tutorial notes on saving Chinese text into MySQL database through Web forms and retrieved it back to Web pages. Topics include reviewing the communication process; testing with UTF-8, GBK and Big5 encodings.
2017-05-03, ∼917🔥, 2💬

💬 2017-05-03 : 你好吗

"-XX:+PrintFlagsFinal" - Print JVM Options
This section describes the '-XX:+PrintFlagsFinal' JVM option, which prints all options and their values used by the JVM.
2022-10-01, ∼916🔥, 0💬

Looking Up Method Signature with javap Command
This section provides a tutorial example of how to lookup method signatures in a class file or JAR file with the 'javap' command.
2022-10-01, ∼914🔥, 0💬

Concurrent Mark-Sweep (CMS) Collector - "+XX:+UseConcMarkSweepGC"
This chapter provides tutorial notes and example codes on the Concurrent Mark-Sweep Collector specified by the '+XX:+UseConcMarkSweepGC' JVM option. Topics include introduction to Concurrent Mark-Sweep (CMS) Collector; CMS Collector log message format; demonstration of reduction of stop-the-world by...
2022-10-01, ∼914🔥, 0💬

String.length() Is Not Number of Characters
This section provides tutorial example on showing the difference between length() and codePointCount() methods. The difference between charAt(int index) and codePointAt(int index) is also demonstrated.
2022-10-01, ∼913🔥, 0💬

Maximum Number of Threads in a Program
This section provides a tutorial example to try to find out how many threads can be launched in a single application.
2022-10-01, ∼912🔥, 0💬

Creating SOAP Project with WSDL
This section provides a tutorial example on how to create SOAP project automatically by loading a WSDL document URL.
2020-01-02, ∼911🔥, 1💬

💬 2020-01-02 Yusmani: Hello World!!

3200: Enclosed CJK Letters and Months
This section provides a quick summary of the Unicode code point block: 'Enclosed CJK Letters and Months', which contains 256 code points to represent characters enclosed in circles used in CJK (Chinese, Japanese, and Korean) languages.
2024-01-23, ∼910🔥, 0💬

ConversionRate - Usage Description
This section describes the free Web service ConversionRate provided by WebserviceX.NET. ConversionRate allows you to obtain the current exchange rate between two given currencies.
2015-12-23, ∼910🔥, 2💬

💬 2015-12-23 Herong: Marie, I don't know what happened to the webservicex.net server. Hope they will fix the issue soon.

💬 2015-12-22 Marie: Hi, I have been using http://www.webservicex.net/CurrencyC onvertor.asmx?WSDLfor a long time to convert currencies on my web sit...

A640: Cyrillic Extended-B
This section provides a quick summary of the Unicode code point block: 'Cyrillic Extended-B', which contains 96 code points to represent additional Cyrillic alphabets used in the Cyrillic language.
2024-01-23, ∼908🔥, 0💬

中国农历计算程式
本节介绍了中国农历计算 Java 程式,算法和数据取自 eleworld.com。
2023-09-23, ∼907🔥, 2💬

💬 2023-09-23 杨和荣: lonelyim, 谢谢你的留言!我会在下一次更新时确认和纠正你所指出的错误。农历月份大小有 时会受到新月发生的精确时刻的影响,农历2057年9月的新月是一...

💬 2023-09-17 lonelyim: 经与香港天文台发布的公历与农历对照表( https://www.hko.gov.hk/sc/gts/time/c onversion.htm)对比,发现源程序中char[] chineseMonths的数据有如下...

RDKFingerprint() Method in RDKit
This section provides a tutorial example on understanding the fingerprint generation algorithm used in the rdkit.Chem.rdmolops.RDKFingerp rint()function.
2023-04-04, ∼905🔥, 0💬

"Hello world!" Example of XSLT
This section provides a tutorial example on how to a first XSLT stylesheet, hello.xls, to transform the original XML document, hello.xml. The Internet Explorer (IE) can be used as XSLT transformation program to apply the stylesheet and generate the resulting document.
2022-10-01, ∼904🔥, 0💬

<< < 57 58 59 60 61 62 63 64 65 66 67 > >>   ∑:9067  Sort:Date