Skip to content

Instantly share code, notes, and snippets.

View harikt's full-sized avatar
⛱️
Tanvish Technologies

Hari K T harikt

⛱️
Tanvish Technologies
View GitHub Profile
@harikt
harikt / gist:973c0f7414087a50c033130859119806
Created January 4, 2018 05:41
Firefox : pulse audio is not installed
https://askubuntu.com/questions/33089/what-user-settings-control-audio-access
How can we extend Blade ?
I am using the directive https://laravel.com/docs/5.5/blade#extending-blade
@url('article_show', ['id' => '3'], ['foo' => 'bar'], 'fragment')
Problem is the rest of the params after string `'article_show'` is not received on call back.
I am trying to do something similar to : https://zendframework.github.io/zend-expressive/features/template/twig/
@harikt
harikt / aurarouter.nginx.conf
Last active June 22, 2017 12:53
nginx configuration for Aura.Router version 3.x : https://github.com/auraphp/Aura.Router/tree/3.x
server {
listen 80;
server_name aurarouter.com;
root /var/www/projects/aura-router-test;
index index.php index.html index.htm;
location / {
try_files $uri @rewriteapp;
}
@harikt
harikt / APACHE_content-security-policy.conf
Created April 18, 2017 15:00 — forked from wkhayrattee/APACHE_content-security-policy.conf
APACHE to NGINX | content-security-policy.conf
# REF: https://github.com/h5bp/server-configs-apache/blob/master/src/security/content-security-policy.conf
<IfModule mod_headers.c>
Header set Content-Security-Policy "script-src 'self'; object-src 'self'"
<FilesMatch "\.(appcache|atom|bbaw|bmp|crx|css|cur|eot|f4[abpv]|flv|geojson|gif|htc|ico|jpe?g|js|json(ld)?|m4[av]|manifest|map|mp4|oex|og[agv]|opus|otf|pdf|png|rdf|rss|safariextz|svgz?|swf|topojson|tt[cf]|txt|vcard|vcf|vtt|webapp|web[mp]|webmanifest|woff2?|xloc|xml|xpi)$">
Header unset Content-Security-Policy
</FilesMatch>
</IfModule>
@harikt
harikt / gist:4cece5f1059c8e1aef167248f0f56038
Created March 31, 2017 14:38
Jio failed to connect to WebLogic Messaging Bridge
Failure of server APACHE bridge:
No backend server available for connection: timed out after 10 seconds or idempotent set to OFF or method not idempotent.
@harikt
harikt / example.php
Created March 21, 2017 09:35 — forked from hikari-no-yume/example.php
function chaining for PHP 7
<?php declare(strict_types=1);
require_once "✨.🐘";
✨($_)->strlen("foo")->var_dump($_);

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@harikt
harikt / Remove all git tags
Created March 19, 2017 15:13 — forked from okunishinishi/Remove all git tags
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d
@harikt
harikt / JWTKiller.php
Created March 15, 2017 06:48 — forked from paragonie-scott/JWTKiller.php
PHP 7.2 Replacement for JWT
<?php
declare(strict_types=1);
use ParagonIE\ConstantTime\Base64UrlSafe;
class JWTKiller
{
public static function sign(string $message, Key $key): string
{
$mac = sodium_crypto_auth($message, $key->getRaw());

I am following Creating and enabling a module

What I need is get the instance of Hkt\Psr7Asset\AssetLocator from container and do some specific things on the object. This need to be done for all routes.

Is it possible to register a pipe in ConfigProvider class below ?.

<?php
namespace Hkt\Psr7AssetExample;