This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); | |
| import Ember from 'ember'; | |
| export default Ember.Component.extend({ | |
| isDone : false, | |
| isEdit : false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle', | |
| issue : { | |
| title : 'title' | |
| }, | |
| isDone : false, | |
| isEdit : false, | |
| init(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| findstr /s "ui.servicepack.survey" *.properties |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * | |
| FROM all_source | |
| WHERE text LIKE '%BPR_EV_%' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PS1='\u:\W\$ ' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. regex1 | |
| ^<<<<<<< HEAD[\s\S]*>>* 2be194b451a8926e831110df8579b4acdcca85e0$ | |
| 2. regex2 | |
| ^<<<<<<< HEAD[\s\S]*package com.bne.bpr. | |
| - replace with ... | |
| /** BPR Framework **/\Rpackage com.bne.bpr. | |
| <<<<<<< HEAD | |
| /* | |
| * Copyright (C) 2011 ABC Inc. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| open browser console | |
| var content = document. querySelector('article'); | |
| var body = document.querySelector('body'); body.innerHTML = ''; | |
| body.appendChild(content); | |
| and print |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| TABLE_NAME, | |
| COLUMN_NAME, | |
| CASE DATA_TYPE | |
| WHEN 'NUMBER' THEN DATA_TYPE || '(' || DATA_PRECISION || ',' || DATA_SCALE || ')' | |
| WHEN 'DATE' THEN DATA_TYPE | |
| WHEN 'VARCHAR2' THEN DATA_TYPE || '(' || DATA_LENGTH || ')' | |
| ELSE DATA_TYPE | |
| END | |
| DATA_TYPE, NULLABLE, DATA_DEFAULT, COLUMN_ID FROM ALL_TAB_COLUMNS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ####command | |
| - \list : list all database | |
| - \dt : list table of current database |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>JS Bin</title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.0.0/handlebars.js"></script> | |
| <script src="http://builds.emberjs.com/canary/ember.prod.js"></script> | |
| </head> |