Here is a sample code to upload multiple files using ajax, and without using the traditional <form> tags. Find the full source code in GitHub – https://github.com/ninethsense/code-share/tree/master/jQuery-File-Upload . Sample server code in PHP for the reference:
-
-
Nice read – https://codeburst.io/enterprise-software-is-the-hardest-software-to-write-c76d59725f3
-
A very nice, informative deck on Data Lake / Modern Data Warehouse by james Serra.
-
Good read – https://www.redhat.com/en/resources/cloud-native-container-design-whitepaper “Cloud-native” is a term used to describe applications designed specifically to run on a cloud-based infrastructure. Typically, cloud-native applications are developed as loosely coupled microservices running in containers managed by platforms. These applications anticipate failure, and they run and scale reliably even when their underlying infrastructure is experiencing outages. To offer such capabilities, cloud-native platforms impose a set of contracts and constraints on the applications running on them. These contracts ensure that the applications conform to certain constraints and allow the platforms to automate the management of the containerized applications.
-
NinethSense oWnZ mE! – Praveen’s Drawing Book Here is the link for version v1.4.11 – https://github.com/bruderstein/nppPluginManager/releases/tag/v1.4.11
-
This blog demonstrates how you can JOIN (yes, like in SQL) two xml (datasets) to one using a common ID (relationship). shop.xml price.xml main.xsl Resulting XML, after transformation should look like: Bonus code, if some .net developers want a transformation code:
-
More details & registration – https://k-mug.net/register
-
“Dimension relationship” refers to the direct or indirect relationships between dimension and its measure groups in a Cube. Regular Refers to a standard relationship, when a Key column in the dimension is directly joined to fact table. Reference When a Key column in the dimension is indirectly joined to fact table by referencing another dimension. Fact / Degenerate Dimensions constructed from attribute columns in fact tables than from attribute columns in dimension tables. Many-to-Many One dimension is associated with multiple facts Read more: https://docs.microsoft.com/en-us/sql/analysis-services/multidimensional-models-olap-logical-cube-objects/dimension-relationships?view=sql-server-2017 Note: My study notes
-
RAID 0 – Disk Striping – Used for the storage of noncritical items but which requires fast read-write.– Does not have parity (parity is about checking whether the data has been lost or overwritten on transition)– Does not have redundancy or fault tolerance. i.e., when the drive dies, the data is lost. RAID 1 – Disk Mirroring – Used usually for OS, SQL Engine etc. installation– Two or more disks used to write data and is in parallel– High performance– High availability– No data loss on disk failure RAID 2 RAID 3 RAID 4 RAID 5 – Striping with Parity…
-
Write a program in a computer language of your choice to convert any given text to “leet format” in real time. Leet (or “1337”), is a system of modified spellings used primarily on the Internet. Input: “Translator” Output:”Tr4nsl4t0r”Input: “leet”, Output: “l33t”Input: “Good Morning”, Output: “G00d M0rn1ng” Evaluation criteria: Code Quality Standards OOAD/Object-Oriented Analysis & Design Application Logic Exception Handling Simplicity and Effectiveness of code Time: 0-30 minutes max.