Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
ng build --base-href "/otcmobile/" --prod |
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
. |
// Write JavaScript here and press Ctrl+Enter to execute | |
// React, ReactDOM | |
class Button extends React.Component { | |
// constructor(props) { | |
// super(props); | |
// this.state = { cnt: 0 }; | |
// } | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUserId , OrderRank) values (2 , "Bangkok" , now() , now() , -1 , -1 , 1); | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUserId , OrderRank) values (2 , "Amnat Charoen" , now() , now() , -1 , -1 , 2); | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUserId , OrderRank) values (2 , "Ang Thong" , now() , now() , -1 , -1 , 3); | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUserId , OrderRank) values (2 , "Bueng Kan" , now() , now() , -1 , -1 , 4); | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUserId , OrderRank) values (2 , "Buriram" , now() , now() , -1 , -1 , 5); | |
insert into tb_sys_catitem (CatId , CatItemDesc , CreatedDate , UpdatedDate , CreatedByUserId , UpdatedByUs |
using RabbitMQ.Client; | |
using System; | |
namespace RabbitMqSignalR | |
{ | |
internal class Program | |
{ | |
private const string QueueName = "Testmessage"; | |
private const string ExchangeName = "ChatExchange"; | |
private static ConnectionFactory _factory; |
# alias Rails | |
# rails with template | |
# wget https://raw.githubusercontent.com/khunemz/dry_and_snippets/master/bt.rb | |
# rails _4.2.7_ new app -m bt.rb | |
alias rn='rails new' | |
alias r4n='rails _4.2.7_ new' | |
alias rgm='rails generate migration' | |
alias rgc='rails generate controller' |