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
Accel HR Consulting https://www.accel-hrconsulting.com/ | |
Accel HR Consulting https://lnkd.in/dcehjNDJ | |
ACR World International Search https://www.acrworld.com/ | |
Adecco Middle East https://www.adeccome.com/ | |
AIQU https://aiqusearch.com/ | |
Ajeets Management & Manpower Consultancy https://ajeets.com/ | |
Ajeets Management & Manpower Consultancy http://www.ajeets.com/ | |
Alliance Recruitment Agency https://www.alliancerecruitmentagency.ae/ | |
Alliance Recruitment Agency https://lnkd.in/d_nvMGWh | |
Antal International https://www.antal.com/ |
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
# SHOW THE DOCKER VERSION | |
docker version | |
# DISPLAY LIVE STREAM OF CONTAINERS ON DOCKER | |
docker stats | |
# DISPLAY SYSTEM-WIDE INFORMATION OF DOCKER | |
docker info | |
# LIST ALL THE IMAGES |
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 everyCombination($array) { | |
try { | |
// initialize by adding the empty set | |
$results = [[]]; | |
foreach ($array as $element) { | |
$this->line($element); | |
foreach ($results as $combination) { |
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
DELIMITER $$ | |
CREATE FUNCTION `camel_case`(str varchar(128)) RETURNS varchar(128) | |
BEGIN | |
DECLARE n, pos INT DEFAULT 1; | |
DECLARE sub, proper VARCHAR(128) DEFAULT ''; | |
if length(trim(str)) > 0 then | |
WHILE pos > 0 DO | |
set pos = locate(' ',trim(str),n); |
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> | |
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> | |
</head> | |
<body> | |
<div id="divtoBlink"> | |
<h1>This is the element to blink</h1> |
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 | |
try { | |
$fileatt = ""; | |
$fileatt_name = $fileatt. "file.pdf"; | |
$email_from = "[email protected]"; | |
$email_subject = "attachment test-subject"; | |
$email_txt = "attachment test-body"; | |
$email_to = "[email protected]"; |
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').on('keydown', 'input[name=random]', function(e) { | |
return ((e.keyCode >= 48 && e.keyCode <= 57) || (e.keyCode >= 96 && e.keyCode <= 105) || e.keyCode == 173 || e.keyCode == 8 || e.keyCode == 9) ? true : 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
$(function(){ | |
var searchTable = function(valueToSearch) { | |
var value = ''; | |
if(valueToSearch == ''){ | |
$('#filtered tbody tr').fadeIn('fast'); | |
return; | |
} |
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
# Clone a temporary copy of your repo | |
cd /temp | |
git clone ssh://git@yourrepo/yourrepo.git | |
cd yourrepo | |
function branches() { | |
git branch -r | grep -v '\->'; | |
} | |
BRANCHES=$(branches) |
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
sudo nano ~/.bash_profile | |
# Git branch in prompt. | |
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ " | |
# If you are using an existing Terminal session, don’t forget to make the changes take effect by sourcing the file with the command | |
source ~/.bash_profile |
NewerOlder