Tutorial by Topics: a

This section provides an overview of what database-design is, and why a developer might want to use it. It should also mention any large subjects within database-design, and link out to the related topics. Since the Documentation for database-design is new, you may need to create initial version...
This section provides an overview of what security is, and why a developer might want to use it. It should also mention any large subjects within security, and link out to the related topics. Since the Documentation for security is new, you may need to create initial versions of those related to...
This section provides an overview of what gis is, and why a developer might want to use it. It should also mention any large subjects within gis, and link out to the related topics. Since the Documentation for gis is new, you may need to create initial versions of those related topics.
AttributeDescriptionname(Required) Name of the parameter/variable.default(Optional) Value to set parameter to if it does not exist.max(Optional) The maximum valid value; used only for range validation.min(Optional) The minimum valid value; used only for range validation.pattern(Optional) A JavaScri...
Installing Ansible in any OS, including Windows using Virtual Box and Vagrant. An alternate solution is also available if you just want to practice ansible ad-hoc commands and playbooks and do not wish to set up the local environment.
sp_send_dbmail [ [ @profile_name = ] 'profile_name' ] [ , [ @recipients = ] 'recipients [ ; ...n ]' ] [ , [ @copy_recipients = ] 'copy_recipient [ ; ...n ]' ] [ , [ @blind_copy_recipients = ] 'blind_copy_recipient [ ; ...n ]' ] [ , [ @from_address = ] 'from_address' ] [ , [ @reply_to = ] 'rep...
Google Spreadsheet or Google Sheets can help you collaborate with teammates! With their built-in chat and many more features, you can edit and complete projects together. With Google Script and functions, mathematical equations can be done within Google Sheets, just like Excel. A cheaper version, ...
This section provides an overview of what outlook-addin is, and why a developer might want to use it. It should also mention any large subjects within outlook-addin, and link out to the related topics. Since the Documentation for outlook-addin is new, you may need to create initial versions of t...
Chip select signals Most slaves have an active low chip select input. So proper code to initialize and use a chip select pin is this: #define CSPIN 1 // or whatever else your CS pin is // init: pinMode(CSPIN, OUTPUT); digitalWrite(CSPIN, 1); // deselect // use: digitalWrite(CSPIN, 0); /...
#ifdef __STDC_NO_ATOMICS__ # error this implementation needs atomics #endif #include <stdatomic.h> unsigned _Atomic counter = ATOMIC_VAR_INIT(0); Atomics as part of the C language are an optional feature that is available since C11. Their purpose is to ensure race-free access to ...

Page 137 of 320