Skip to content

Instantly share code, notes, and snippets.

View eduardomart's full-sized avatar

Eduardo Martinez eduardomart

View GitHub Profile
<?php
namespace MyApp\Response;
use Symfony\Component\HttpFoundation\Response;
class CsvResponse extends Response
{
protected $data;
@zomars
zomars / boltflow-bitbucket-deploy.php
Last active April 7, 2017 16:53
Script to deploy from bitbucket via webhook and bobdenotter's Boltflow script (https://github.com/bobdenotter/boltflow)
<?php
$repo_dir = '/home/username';
$branch_to_deploy = 'master';
$update = false;
// Parse data from Bitbucket hook payload
$payload = json_decode($_POST['payload']);
if (empty($payload->commits)) {
@howbizarre
howbizarre / BS5RespTabs.markdown
Last active January 29, 2024 00:26
A simple way to create responsive tabs with Bootstrap 5. Tabs functionality is replaced by Accordion on small screens.

Responsive Tabs with Bootstrap 5

A simple way to create responsive tabs with Bootstrap 5. Tabs functionality is replaced by Accordion on small screens.

View sample on JsFiiddle