<< < 47 48 49 50 51 52 53 54 55 56 57 > >>   ∑:7662  Sort:Date

UTF-8 Encoding Pages with Big5 Characters
This section describes an error case where a UTF-8 encoding page contains Big5 character strings.
2016-10-08, 803🔥, 1💬

Overflow of Integer and Float Values
This section describes what an arithmetic overflow condition, how the PHP 5 engine handles integer and float value overflow, how to write a PHP code to detect overflow conditions.
2022-10-01, 798🔥, 0💬

"swfcombine -a" - Concatenate SWF Files
This section provides a tutorial example on how to concatenate two SWF files by appending frames from one file to the end of another file using the 'swfcombine -a' command.
2018-04-01, 798🔥, 2💬

💬 2018-04-01 Herong: Mike, SWF Tools has no commands to create loops. To create a slide show with loops, you can write a simple code in SWFC Script. ...

💬 2018-03-28 Mike: Is there a way to make the first slide show loop say 3 times before it moves onto the second slide show?? I mean I suppose you c...

Java Exception: "java.lang.OutOfMemoryError: Java heap space"
This section provides a tutorial example on how JVM expands the Heap space to allocate more objects and leads to the 'java.lang.OutOfMemoryError: Java heap space' Java exception, if it is not allowed to expand any more.
2018-06-24, 797🔥, 1💬

💬 2018-06-24 Maria: Cool!

💬 2017-08-10 xionghongzhi: awsome artical!!!!!! thx!!!

jdeprscan - Deprecated API Scanner Command
This section describes what is 'jdeprscan' - is a command line tool to run the Java Deprecated API Scanner tool.
2022-10-01, 796🔥, 0💬

Parallel Collector Adaptive Size Policy
This section describes the Adaptive Size Policy supported by the Parallel Collector to dynamically change heap generation sizes to latency, throughput and footprint goals sequentially.
2022-10-01, 794🔥, 0💬

Install PHP Extensions on CentOS
This section provides a tutorial example on how to add PHP extensions on CentOS Linux systems by searching and installing the extension using the 'dnf' package manager.
2022-10-01, 793🔥, 0💬

What Is "page-sequence-master"
This section describes page-sequence-master, which declares a sequence of layouts with existing 'simple-page-master' layouts.
2022-10-01, 793🔥, 0💬

Parallel New (ParNew) Collector for Minor GC
This section demonstrates that the '-XX:+UseConcMarkSweepGC' JVM option invokes the Parallel New (ParNew) collector for Young generation GC.
2022-10-01, 792🔥, 0💬

Install and Manage Perl Packages on CentOS
This section provides a tutorial example on how to install Perl 5.26 on CentOS 8 systems using 'dnf/yum' as the package manager.
2022-10-01, 792🔥, 0💬

NoClassDefFoundError - LoopTag/ForEachTag
This section provides a tutorial example on how to use JSTL loop tags with EL expressions. JSTL 1.2 API JAR file is needed.
2022-10-01, 790🔥, 0💬

Using VBScript with WSH (Windows Script Host)
This section provides tutorial example on how to run a simple VBScript code file with the Windows Script Host tool.
2015-08-31, 790🔥, 1💬

Convert XML Document to JSON Document
This section provides a quick introduction on options of converting XML documents to JSON documents: using ready-to-run tools; calling conversion libraries; and implementing your own converter.
2020-08-05, 789🔥, 1💬

💬 2020-08-05 krutik: Hii You can also use https://onlinexmltools.org/ for online xml converter like XML to JSON,YAML,CSV,BASE64,TSV,PlainText XML toM...

"float" and "double" Datatype Values and Representations
This section describes the built-in primitive datatypes, 'float' and 'double' that represents single-precision (32-bit) and double-precision (64-bit) floating-point numbers. Leading and trailing whitespaces allowed and trimmed.
2022-10-01, 788🔥, 0💬

2500: Box Drawing
This section provides a quick summary of the Unicode code point block: 'Box Drawing', which contains 128 code points to represent pictures to draw boxes.
2024-01-23, 786🔥, 0💬

GetSunSetRiseTime - Usage Description
This section describes the free Web service GetSunSetRiseTime provided by WebserviceX.NET. GetSunSetRiseTime allows you to retrieve sunrise and sunset times for any given location and date.
2017-10-08, 783🔥, 4💬

💬 2017-10-08 Herong: Eduardo, do you need Java code to connect to the server to use the service, or to setup a new sun rise and sun set service?

💬 2017-10-02 Eduardo: Please, I need the code of sunsetriseservice for java netbeans. Thanks...

💬 2016-10-12 Herong: Vassilis, Good question. Can you try the following: return_value = 17.9877033 hour = floor(return_value) minute = floor((return_...

💬 2016-10-10 Vassilis V: Hi, how can we convert the float return to time?

Drawing Graphics - Using paint() on Frame or Component
This section provides a tutorial example on how to override the paint() method in the javax.awt.Frame class to draw graphics (a rectangle) on the frame window, or override the paint() method in the java.awt.Component class to draw graphics and add the component to the frame window.
2022-10-01, 782🔥, 0💬

Restore Corrupted Chinese Text
This section provides a tutorial example to restore corrupted Chinese text with different suggested solutions.
2022-11-21, 781🔥, 1💬

Introduction of XSL-FO
This chapter provides tutorial notes and example codes on XSL-FO. Topics include introduction of XSL (eXtensible Stylesheet Language), XSLT (XSL Transformations) and XSL-FO (XSL - Formatting Objects); Sample XSL-FO document.
2020-05-07, 781🔥, 1💬

💬 2020-05-07 Peter: Hello World!

SOAP Web Service and SoapUI
This chapter provides tutorial notes and example codes on testing SOAP Web services with SoapUI. Topics include introduction of SOAP protocol and WSDL documents; creating SOAP projects by loading WSDL documents in SoapUI; submitting SOAP Web service requests; viewing HTTP request and response raw da...
2018-04-21, 781🔥, 2💬

💬 2018-04-21 Herong: Jay, thanks for your comment!

💬 2018-04-20 Jay Bodkin: When deciding whether to use SOAP or WSDL, always remember the saying "Use SOAP when you are dirty (ie need security) and REST w...

Parallel Collector - "+XX:+UseParallelGC"
This chapter provides tutorial notes and example codes on the Parallel Collector specified by the '+XX:+UseParallelGC' JVM option. Topics include introduction to Parallel Collector log message format; multiple parallel GC threads; '-XX:+UseAdaptiveSizePolicy' option to dynamically changing 'eden', '...
2022-10-01, 780🔥, 0💬

Escape Sequences for Non-Printable ASCII Characters
This section describes escape sequences for non-printable ASCII characters in 'string' literals.
2021-11-12, 780🔥, 2💬

💬 2021-11-12 Herong: polendina, thanks for the suggestion!

💬 2021-11-08 polendina: Using this on pantheon terminal emulator with bash shell i.e. > echo -e "hello\tfriend \x07" hello friend

Convert JSON Document to XML Document
This section provides a quick introduction on options of converting JSON documents to XML documents: using ready-to-run tools; calling conversion libraries; and implementing your own converter.
2021-05-24, 780🔥, 2💬

💬 2021-05-24 guest: Incredible post! I am really getting prepared to over this data, is exceptionally useful my companion. I am sharing related topi...

💬 2021-01-14 Albert: use this link for online conversion: https://wtools.io/convert-json-to-xm l

0370: Greek and Coptic
This section provides a quick summary of the Unicode code point block: 'Greek and Coptic', which contains 144 code points to represent alphabetic letters used in Greek language and Coptic language.
2024-01-23, 779🔥, 0💬

<< < 47 48 49 50 51 52 53 54 55 56 57 > >>   ∑:7662  Sort:Date