update from https://git-scm.com/book/en/v2/Git-Tools-Submodules
In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Amaury Van Espen", | |
"label": "Consultant Data. BI (Business Intelligence) - Décisionnel | SAP & Microsoft | Distribution et Logistique | Manufacturing, Supply & Retail", | |
"image": "", | |
"email": "vanespen.amaury@gmail.com", | |
"phone": "0033663051423", |
{ | |
"basics": { | |
"name": "Amaury VAN ESPEN", | |
"label": "Business Analyst Senior", | |
"picture": "https://example.com/photo.jpg", | |
"email": "vanespen.amaury@example.com", | |
"phone": "(123) 456-7890", | |
"website": "https://about.me/amaury.vanespen", | |
"summary": "Business Processes expert and Senior Data Analyst", | |
"location": { |
<?php | |
/*** beginning of the code to paste in your functions.php ***/ | |
function imath_pm_button_only_if_friends( $button ) { | |
if( is_super_admin() ) | |
return $button; | |
if( 'is_friend' != friends_check_friendship_status( bp_displayed_user_id(), bp_loggedin_user_id() ) ) | |
return false; |
<h2>End-User License Agreement (EULA) of <span class="app_name">Google Apps Script for Quickbooks</span></h2> | |
<p>This End-User License Agreement ("EULA") is a legal agreement between you and <span class="company_name">Alterna R&D</span>. Our EULA was created by <a href="https://www.eulatemplate.com">EULA Template</a> for <span class="app_name">Google Apps Script for Quickbooks</span>.</p></p> | |
<p>This EULA agreement governs your acquisition and use of our <span class="app_name">Google Apps Script for Quickbooks</span> software ("Software") directly from <span class="company_name">Alterna R&D</span> or indirectly through a <span class="company_name">Alterna R&D</span> authorized reseller or distributor (a "Reseller"). Our Privacy Policy was created by <a href="https://www.generateprivacypolicy.com/">the Privacy Policy Generator</a>.</p> | |
<p>Please read this EULA agreement carefully before completing the installation process and using the <span class="app_name">Google Apps Script for Quickbooks</sp |
var CLIENT_ID = '...'; // Get from Quickbooks Developer Console | |
var CLIENT_SECRET = '...'; // Get from Quickbooks Developer Console | |
var BASE_AUTH_URL = 'https://appcenter.intuit.com/connect/oauth2'; | |
var TOKEN_URL = 'https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer'; | |
var API_SCOPE = 'com.intuit.quickbooks.accounting'; | |
var REDIRECT_URI = '...'; // Generate using the logRedirectUri() function mentioned at the end of this script | |
var RESPONSE_TYPE = 'code'; | |
/** | |
* Authorizes and makes a request to the Quickbooks API using OAuth 2. |
*&---------------------------------------------------------------------* | |
*& Report Z_BC_JOB_PERF | |
*&---------------------------------------------------------------------* | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT z_bc_job_perf. | |
*Selection Screen Text Elements Declared : | |
****************************************** | |
*TEXT-005 - Batch job monitoring |
@echo off | |
set filedate=%DATE% | |
set filedate=%filedate:~6,4%%filedate:~3,2%%filedate:~0,2% | |
setlocal enableextensions enabledelayedexpansion | |
for /r %%f in (*.txt) do ( | |
set filename=%%~nxf | |
ren *.txt "%filedate%_NU_LCC-INTELKD-IAQ-OSINT-!filename: =-!" |
update from https://git-scm.com/book/en/v2/Git-Tools-Submodules
In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules: