{
"name": "kirchbergerknorr/teamalpin",
"description": "Teamalpin",
"minimum-stability": "dev",
"authors": [
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
let your colleagues know, that you have website style bug: | |
description: | |
when you hover jobs it is getting bold and moving all nav bar | |
here is a fix: | |
styles: line 1224: | |
header .navbar .nav-collapse .nav .nav-jobs a:hover { | |
color: black; | |
/* font-weight: bold; */ |
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
echo <<<JS | |
<script type="text/javascript"> | |
var userIdB = document.getElementById("sf_00ND0000003vleB").value; | |
ga('set', 'dimension1', userIdB); | |
console.log("UID fired: "+ userIdB ); | |
</script> | |
JS; |
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 | |
// Data Helper: | |
class Kirchbergerknorr_RelevanceIndexer_Helper_Data extends Mage_Core_Helper_Abstract | |
{ | |
public function log($message, $level = null, $file = 'kk_relevanceindexer.log', $forceLog = false) | |
{ | |
Mage::log($message, $level, $file, $forceLog); | |
} | |
} |
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
cd /projects | |
cd mymodule | |
git commit -am "JIRA-1 My changes" | |
git push | |
cd ../targetproject | |
git checkout master-branch | |
rm -rf vendor/kirchbergerknorr/yourmodule/ | |
composer update | |
git commit -am "JIRA-1 Updated mymodule" | |
git push |
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
#!/bin/sh | |
# | |
# Generates magento modman file | |
# | |
# INSTALLATION: | |
# Save this file to /opt/deploy/tools/modman-generator.sh | |
# ln -s /opt/deploy/tools/modman-generator.sh /usr/local/bin/mg | |
# chmod a+x /usr/local/bin/mg | |
# | |
# USAGE: |
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
<Virtualhost *:80> | |
ServerName your.url.com | |
ProxyRequests Off | |
ProxyPreserveHost On | |
AllowEncodedSlashes NoDecode | |
<Proxy http://localhost:8080/*> | |
Order deny,allow | |
Allow from all | |
</Proxy> |
Run git log
and look for commit hash:
9045d8fcbd3ebfb186e6b3b6d96732357ee5c315
To see which files where changed in this commit:
git diff --name-only 9045d8fcbd3ebfb186e6b3b6d96732357ee5c315
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 | |
/** | |
* TecRepair Installator | |
* | |
* @category Kirchbergerknorr | |
* @package Kirchbergerknorr_TecRepair | |
* @author Aleksey Razbakov <[email protected]> | |
* @copyright Copyright (c) 2014 kirchbergerknorr GmbH (http://www.kirchbergerknorr.de) | |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.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
{ | |
"name": "company/project-name", | |
"description": "Project Name", | |
"minimum-stability": "dev", | |
"authors": [ | |
{"name": "Your Name", "email": "[email protected]"} | |
], | |
"repositories": [ | |
{"type": "git", "url": "https://github.com/kirchbergerknorr/phpunit"}, | |
{"type": "git", "url": "https://github.com/kirchbergerknorr/magento-debug"}, |