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
version: '3.7' | |
services: | |
gitlab: | |
image: gitlab/gitlab-ce:latest | |
container_name: gitlab | |
restart: always | |
hostname: pm.techversantinfotech.com | |
ports: | |
- "443:443" |
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
<cffunction name="createLinkString" access="private" returntype="string" output="false" description="Rearrange parameters alphabetically and construct query string like name value pairs"> | |
<cfargument name="stParams" type="struct" required="true"> | |
<cfset var preSignStr = ""> | |
<cfset var keys = listSort(structKeyList(arguments.stParams), "textnocase", "asc")> | |
<cfset var i = 1> | |
<cfset var key = ""> | |
<cfset var value = ""> | |
<cfloop from="1" to="#listLen(keys)#" index="i"> | |
<cfset key = listGetAt(keys, i)> | |
<cfset value = arguments.stParams[key]> |
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
FILE=C:\xampp\apache\conf\httpd.conf | |
LoadModule vhost_alias_module modules/mod_vhost_alias.so | |
FILE=C:\xampp\apache\conf\extra\httpd-vhosts.conf | |
UseCanonicalName Off | |
<VirtualHost *:80> | |
DocumentRoot "C:/xampp/htdocs/" |
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
composer require laravel/ui | |
php artisan ui bootstrap | |
php artisan ui bootstrap --auth | |
npm install && npm run dev | |
php artisan key:generate | |
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 browser(){ | |
var sBrowser, sUsrAg = navigator.userAgent; | |
if (sUsrAg.indexOf("Firefox") > -1) { | |
sBrowser = "mozilla_firefox"; | |
} else if (sUsrAg.indexOf("SamsungBrowser") > -1) { | |
sBrowser = "samsung_internet"; | |
} else if (sUsrAg.indexOf("Opera") > -1 || sUsrAg.indexOf("OPR") > -1) { | |
sBrowser = "opera"; | |
} else if (sUsrAg.indexOf("Trident") > -1) { | |
sBrowser = "internet_explorer"; |
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
Menu Odoo Support | |
.................................. | |
path: /opt/odoo/odoo/addons/im_odoo_support/static/src/xml/im_odoo_support.xml | |
Menu Odoo Preferences, My Odoo.com account, About Odoo, Help, Log out | |
.................................. | |
path: /opt/odoo/odoo/addons/web/static/src/xml/base.xml | |
Search for 'data-menu' |
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
Success Message: Message sent successfully! | |
Contact Us Auto Response | |
------------------------- | |
<p>Hi {{ forms_getField(input,'name') | raw }},</p> | |
<p>We have received your message, and we will contact you shortly!</p> | |
<p>Thanks!<br></p> | |
<p>AR Audio Medical</p> | |
Contact Us To Admin |
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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title> </title> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> | |
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> |
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
var touchstartX = 0; | |
var touchstartY = 0; | |
var touchendX = 0; | |
var touchendY = 0; | |
var gesuredZone = document.getElementById('cal'); | |
gesuredZone.addEventListener('touchstart', function(event) { | |
touchstartX = event.changedTouches[0].screenX; | |
touchstartY = event.changedTouches[0].screenY; |
NewerOlder