<< < 20 21 22 23 24 25 26 27 28 29 30 > >>   ∑:9107  Sort:Date

Managing System Startup File - SYSTEM.INI
This section describes the system startup file, SYSTEM.INI, and how to change it with the system configuration tool 'msconfig.exe'.
2020-07-27, ∼3445🔥, 2💬

💬 2020-07-27 Mohamed Fathy: now on windows 10 x64, what is the alternative for system.ini? or how do I tweak hardware in latest Windows 10?

Why Sorting Is Needed
This section describes why sorting is needed - Search in a sorted collection is much faster than an un-sorted collection.
2017-08-10, ∼3430🔥, 3💬

💬 2017-08-10 Caleb E: Very Nice

💬 2015-11-27 Herong: Palash, Good article. Thanks for sharing it.

💬 2015-11-27 Palash Kanti Kundu: Hey thanks for the answer, I have given some more details on it. Please check this... Sorting, the burning problem in hand...

interrupt() - Method to Terminate Thread
This section provides a tutorial example on how to terminate running threads with the interrupt() method.
2016-03-02, ∼3424🔥, 1💬

💬 2016-03-02 vinay malik: good post

Using Microsoft Word as a Unicode Text Editor
This chapter provides notes and tutorial examples on using Microsoft Word as a Unicode text editor. Topics including opening Unicode text files in 3 encodings: UTF-8, UTF-16BE, and UTF-16LE; saving and opening Unicode text files with the BOM character prepended.
2023-07-13, ∼3412🔥, 3💬

💬 2019-06-01 Herong: Adriaan, I can only find the peace symbol: ☮ (U+262E).

💬 2019-05-31 Adriaan: I am a pensioner, physically disabled, wheelchair, writing a book, topic: Revolution vs Evolution. I need about 10 unicode symbo...

Bitwise Operations on "byte" Values
This section describes 4 types of bitwise operations, 'And', 'Or', 'Exclusive Or', and 'Complement' that applies on 'byte' values indirectly through 'int' values.
2016-02-17, ∼3409🔥, 1💬

💬 2016-02-17 javapadho.com: excelement expalin bitwise binary operator.. bitwise operator explain with leftshift,rightshift,rightshift with fill zero value ...

Cheminformatics Tutorials - Herong's Tutorial Examples
This book is a collection of notes and tutorial examples written by the author while he was learning cheminformatics and related tools. Topics include SMILES (Simplified Molecular-Input Line-Entry System) specifications; Open Babel chemical toolbox for file format conversion; Fingerprint index files...
2022-10-01, ∼3407🔥, 0💬

What Is Cryptography?
This section describes what is cryptography - The study of techniques related to all aspects of data security.
2021-04-25, ∼3405🔥, 6💬

💬 2021-04-25 jlong: thanks

💬 2017-02-18 gabu: ggoodd

💬 2016-11-17 mohamed: yes

💬 2015-10-20 Herong: Hi Ian, the Rail Fence cipher is very simple example of encryption we can do manually. See the Transposition cipher page at wiki...

💬 2015-10-19 Ian T. Lee: Can you give me a simple example of how to do cryptography manually?

(More comments ...)

showOptionDialog() - Displaying Option Dialog Boxes
This section provides a tutorial example on how to use the static method, showInputDialog(), to create and display input dialog boxes to take text string input from the user.
2017-09-12, ∼3405🔥, 3💬

💬 2017-02-15 Eric: nice article..I have written about the same.check out http://www.download-all.net/2017/02/ joptionpane-showoptiondialog-code.ht ml

XML Messages over Socket Connections
This section describes the XML message communication model - where client and server send and receive XML messages over socket communication connections.
2017-07-20, ∼3388🔥, 5💬

💬 2017-07-20 WOW: WOW

💬 2015-11-11 Herong: Thai, you are welcome!

💬 2015-11-10 Thai Khang: Thanks

💬 2015-11-10 Khang: thanks

💬 2015-10-06 Thai Khang: Thank you so much

Full Version in PDF/EPUB
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
2021-06-09, ∼3387🔥, 12💬

💬 2021-06-09 Umesh: Thanks

💬 2019-01-28 Luke: Thanks

💬 2016-12-05 Rahul: very good

💬 2016-11-07 bob: thanks.

💬 2016-09-29 Awanputih: Thanks a bunch

(More comments ...)

French Characters in HTML Documents - UTF-8 Encoding
This section provides a tutorial example on how enter and use French characters in HTML documents using Unicode UTF-8 encoding. The HTML document should include a meta tag with charset=utf-8 and be stored in UTF-8 format.
2023-02-01, ∼3374🔥, 2💬

💬 2023-02-01 ‘),: )', ‘),

💬 2023-01-19 bash: du Xixe Siècle|48|Contenant les Meilleures Méthodes de Culture Usitées en France

Full Version in PDF/EPUB
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
2018-02-07, ∼3337🔥, 5💬

💬 2017-01-08 Herong: Rex, see my email to your qq.com account.

💬 2017-01-08 rex: how to download this book

💬 2015-09-09 mani: require more details

AC00: Hangul Syllables
This section provides a quick summary of the Unicode code point block: 'Hangul Syllables', which contains 11184 code points to represent Hangul syllables used in the Korean language.
2024-01-23, ∼3330🔥, 0💬

XSD Schema XML SAX Validator with Error Handler
This section describes a tutorial example on how to create an error handler to be used by the validator to alter the default error handling behavior.
2021-08-26, ∼3299🔥, 5💬

💬 2021-08-26 manglesh: it wouldnt work for complex element with tag. It will stop at the fist error (missing element) and wont report the second missin...

💬 2019-08-02 BirYazilim: Great Help, thnks a lot...

💬 2017-04-26 Pedro A.: Hi Herong, Thanks for the reply. That was my first idea, but what happens is that once it catches the first fatalError, it will ...

💬 2017-04-23 Herong: Pedro, can you try to comment out the "throw e;" statement in the fatalError() method? It should let you capture all fatal error...

💬 2017-04-23 Pedro A.: Thank you for the code. Really useful. I only have one question about it. Imagine that you have more than one fatal error, like ...

JDBC-ODBC - Creating New Tables in MS Access Database
This section describes how to create a new table in a MS Access database through the JDBC-ODBC driver.
2022-10-01, ∼3293🔥, 0💬

Block Hash Calculation in Python
This section describes how to calculate Bitcoin block hash in Python.
2023-04-29, ∼3289🔥, 2💬

💬 2018-02-16 Lee: This helped me a lot!

LambdaCalculator.java - Lambda Expression Example
This section provides a tutorial example on using an lambda expression to define a class anonymously implementing a single abstract method interface. An anonymous class and a local class are used as comparisons.
2016-12-17, ∼3288🔥, 1💬

💬 2016-12-17 J.: Thanks.

JDK Tutorials - Herong's Tutorial Examples
This book is a collection of tutorial notes and sample codes written by the author while he was learning JDK (Java Development Kit) core libraries himself. Topics include Time and Calendar, Internationalization, Unnamed Packages, Collections, Character Set and Encoding, Logging, XML related technolo...
2015-07-18, ∼3288🔥, 0💬

Sending and Receiving Cookies - Example
This section provides a tutorial example on how to set and send a cookie with the setcookie() function, and how to receive a cookie with the $_COOKIE array.
2015-10-31, ∼3281🔥, 1💬

💬 2015-10-31 asbak hussain: very useful thnks

附条件批准上市
什么是附条件批准上市? 附条件批准上市,是指用于严重危及生命且尚无有效治疗手段的疾病 、公共卫生方面急需的药品,现有临床研究资料尚未满足常规上市注册 的全部要求,但已有临床试验数据显示疗效并能预测其临床价值, 在规定申请人必须履行特定条件的情况下基于替代终点、中间临床终 点或早期临床试验数据而批准上市。应对重大突发公共卫生事件急...
2021-07-19, ∼3279🔥, 0💬

"aapt" - Android Asset Packaging Tool
This section describes 'aapt', the Android Asset Packaging Tool, which can be used to list, add and remove files in an APK file, package resources, crunching PNG files, etc.
2015-11-16, ∼3268🔥, 1💬

Perl Script Conversion Tools
This section describes why and how to convert Perl script files to executable binary files. ActivePerl Dev Kit and Perl2Exe are two popular conversion tools for Windows systems.
2020-02-29, ∼3267🔥, 6💬

💬 2020-02-29 smith: alert(1)

💬 2019-07-21 Herong: rrr, Thanks for sharing your Perl script. But I don't see any benefit of removing BOM from a Unicode text file. Without BOM, the...

💬 2019-07-20 rrr: # program to remove a leading UTF-8 BOM from a file # works both STDIN -> STDOUT and on the spot (with filename as argument) if ...

💬 2016-03-28 de: ~ m/^p(\d+)_.*\

💬 2016-01-27 Herong: Ram, can you tell us what is the purpose of your Perl script?

(More comments ...)

Chinese Character String with Big5 Encoding
This section provides information on handling Chinese character string literals in Big5 encoding.
2015-09-29, ∼3266🔥, 1💬

💬 2015-09-29 你好: 你好

WADL (Web Application Description Language)
This section describes what is WADL (Web Application Description Language), an XML-based file format that describes REST Web services.
2016-04-19, ∼3257🔥, 1💬

💬 2015-07-21 Vigcky: Hello world

<< < 20 21 22 23 24 25 26 27 28 29 30 > >>   ∑:9107  Sort:Date