Coding

MySQL Best Practices

Database operations often tend to be the main bottleneck for most web applications today. As programmers need to do our part by structuring tables properly, writing optimized queries and better code. Table Names By convention, the “snake case” in lowercase (no PascalCase – we’re not using Microsoft SQL Server here!), plural name of the class will

MySQL Best Practices Read More »

Summernote Image Upload

NOTE: This only applies to Summernote 0.6.* and not to newer versions. $(‘#summernote’).summernote({ height: 850, toolbar: [ [‘style’, [‘fontsize’,’fontname’,’bold’, ‘italic’, ‘underline’, ‘clear’]], [‘color’, [‘color’]], [‘para’, [‘ul’, ‘ol’, ‘paragraph’,’hr’,’link’,’picture’]], [‘src’,[‘fullscreen’,’codeview’]] ], onImageUpload: function(files, editor, welEditable) { sendFile(files[0], editor, welEditable); } }); function sendFile(file, editor, welEditable) { data = new FormData(); data.append(“file”, file); $.ajax({ data: data, type:

Summernote Image Upload Read More »