Tutorial by Topics: data

var x = HTMLElement.dataset.*; HTMLElement.dataset.* = "value"; MDN Documentation: Using data attributes.
CREATE [TEMPORARY] [EXTERNAL] TABLE [IF NOT EXISTS] [db_name.]table_name [(col_name data_type [COMMENT col_comment], ...)] [COMMENT table_comment] [PARTITIONED BY (col_name data_type [COMMENT col_comment], ...)] [CLUSTERED BY (col_name, col_name, ...) [SORTED BY (col_name [ASC|DESC], ...)] I...
<TextBlock Text="{Binding Title}"/> <TextBlock Text="{Binding Path=Title}"/> <TextBlock> <TextBlock.Text> <Binding Path="Title"/> </TextBlock.Text> </TextBlock> All these tags produce the same result. ...
unpickled_string = pickle.loads(string) unpickled_string = pickle.load(file_object) pickled_string = pickle.dumps([('', 'cmplx'), {('object',): None}], pickle.HIGHEST_PROTOCOL) pickle.dump(('', 'cmplx'), {('object',): None}], file_object, pickle.HIGHEST_PROTOCOL) unjsoned_string = json.loads(s...
Firebase Realtime Database Rules determine who has read and write access to your database, how your data is structured, and what indexes exist. These rules live on the Firebase servers and are enforced automatically at all times. Every read and write request will only be completed if your rules al...
With Firebase Realtime Database, your Database rules is your server side security. You need to be very careful and aware of who has access to your database. It is important that no one gains access to your data that shouldn't. By default, the Firebase Realtime Database rules allow any authenticated...
Data.table is a package for the R statistical computing environment. It extends the functionality of data frames from base R, particularly improving on their performance and syntax. A number of related tasks, including rolling and non-equi joins, are handled in a consistent concise syntax like DT[...
Text is a more efficient alternative to Haskell's standard String type. String is defined as a linked list of characters in the standard Prelude, per the Haskell Report: type String = [Char] Text is represented as a packed array of Unicode characters. This is similar to how most other high-lev...
This topic discusses how encryption and decryption works in Android.
For more information on database queries, take a look at the Selecting data using JDatabase
One of the main useful features of gnuplot is the possibility of plotting data files. Plotting a data file is really simple with gnuplot, actually, once you have opened the software from the terminal, you only need to digit the command plot 'file' to get an automatic plot. First of all, before plot...
If you're not opposed to running a Ruby utility, Genghis is a classic: http://genghisapp.com/ But for scalable production use, get yourself to MongoHQ. http://www.mongohq.com/ Also, the Mongo Monitoring Service, from 10Gen, the makers of Mongo: https://mms.mongodb.com/ MongoClient is written ...

Page 5 of 17