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
$("#iframe_id").attr("src", $("#iframe_id").attr("src")); |
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
#cordova project gitignore file | |
hooks | |
platforms | |
plugins | |
.DS_Store |
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
body{ | |
overflow-x: hidden; | |
} | |
/*navbar content*/ | |
.custom-navbar { | |
background-color: transparent; | |
border: 0; | |
padding-top: 2.5%; | |
padding-bottom: 10px; |
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
package com.example.pineoc.facedetection; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.app.AlertDialog; | |
import android.graphics.Bitmap; | |
import android.graphics.BitmapFactory; | |
import android.graphics.Canvas; | |
import android.graphics.Color; |
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
function isInspectOpen() | |
{ | |
console.profile(); | |
console.profileEnd(); | |
if (console.clear) console.clear(); | |
return console.profiles.length > 0; | |
} |
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
<?php | |
// 이 코드는 받은 키 값을 출력해줍니다. | |
foreach ($_POST as $key => $value) | |
echo $key.": ".$value; | |
$member = $_POST; | |
foreach ($member as $value) { | |
echo " ".$value; |
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
/** | |
* Created by Ken D: Uemura <[email protected]> on 6/1/2016. | |
* | |
* On Issue Update Event | |
* If Component is changed and only one component is assigned | |
* then re-assigns the issue to the Component Lead | |
* | |
* Tested with JIRA 6.4.11 | |
* Set this in Add-On -> Script Listner -> Custom Listener | |
* |
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 com.atlassian.jira.component.ComponentAccessor; | |
import com.atlassian.jira.jql.parser.JqlQueryParser; | |
import com.atlassian.jira.issue.search.SearchProvider; | |
import com.atlassian.jira.web.bean.PagerFilter; | |
import com.atlassian.jira.component.ComponentAccessor; | |
import com.atlassian.jira.issue.search.SearchQuery; | |
def findIssues(String jqlQuery) { | |
def issueManager = ComponentAccessor.issueManager; | |
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(); |
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
#!/usr/bin/env perl | |
# | |
# Perforce Swarm Trigger Script | |
# | |
# @copyright 2013-2019 Perforce Software. All rights reserved. | |
# @version 2019.3/1886340 | |
# | |
# This script is used to push Perforce events into Swarm or to restrict committing | |
# changes that are associated to reviews in Swarm. This script requires certain | |
# variables defined to operate correctly (described below). |
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
// View Field Configuration page | |
// https://jira.example.com/secure/admin/ConfigureFieldLayout!default.jspa?id=xxxxx | |
var tbodyRows = document.querySelector("#field_table tbody").rows; | |
var tbodyArr = Array.prototype.slice.call(tbodyRows); | |
// used field | |
var usedField = tbodyArr.filter(e => { | |
return e.cells[2].innerText.indexOf("Hide") != -1; | |
}); |