Skip to content

Instantly share code, notes, and snippets.

View HORKimhab's full-sized avatar
πŸ§‘β€πŸ’»
#BeWater

HORKimhab HORKimhab

πŸ§‘β€πŸ’»
#BeWater
  • 09:41 (UTC +07:00)
View GitHub Profile
@HORKimhab
HORKimhab / php_crash_course.md
Last active October 27, 2021 15:23
PHP Crash Course

PHP Crash Course

+ αž–αŸαžαŸŒαž˜αžΆαž“αž‘αžΌαž‘αŸ… (General Information)

  • αžšαŸ€αž“αžαžΆαž˜ Online
  • αž˜αŸ‰αŸ„αž„αžŸαž·αž€αŸ’αžŸαžΆ 7:10pm-8:10pm
  • αžαž˜αŸ’αž›αŸƒαžŸαž·αž€αŸ’αžŸαžΆ 99$
  • αž…αžΌαž›αžšαŸ€αž“αžαŸ’αž„αŸƒαž‘αžΈ 9-11-2021
  • αž˜αŸαžšαŸ€αž“αž—αžΆαž‚αž…αŸ’αžšαžΎαž“αž…αŸαž‰αž–αžΈ w3school ឬ w3resource
  • αžšαž™αŸˆαž–αŸαž›αžŸαž·αž€αŸ’αžŸαžΆ αŸ’αžαŸ‚ αž“αž·αž„ Support αž€αžΆαžšαž’αŸ’αžœαžΎ Project (E-Ecomerce)(αŸ‘αžαŸ‚)
  • αžšαŸ€αž“αž”αžΆαž“αž˜αž½αž™αž‡αžΈαžœαž·αž (Life time access with video)
import contextlib
import ctypes
import ctypes.wintypes
import io
import json
import os
import re
import socket
import socketserver
import threading
@HORKimhab
HORKimhab / Sync_Async_loading_handlebars.js
Created January 26, 2021 06:57 — forked from utsengar/Sync_Async_loading_handlebars.js
synchronous and asynchronous loading of handlebars templates
/*
* This decorates Handlebars.js with the ability to load
* templates from an external source, with light caching.
*
* To render a template, pass a closure that will receive the
* template as a function parameter, eg,
* T.render('templateName', function(t) {
* $('#somediv').html( t() );
* });
* Source: https://github.com/wycats/handlebars.js/issues/82

FWIW: I'm not the author of the content presented here (which is an outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.


Effective Engineer - Notes

What's an Effective Engineer?