-
Allow unrealted history to multiple repo
-
git pull reponame branchname --allow-unrelated-histories
-
https://stackoverflow.com/questions/37937984/git-refusing-to-merge-unrelated-histories-on-rebase
-
Pushing to multiple repo
-
http://caseyscarborough.com/blog/2013/08/25/pushing-to-multiple-remotes-using-git/
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 | |
namespace App\Eloquents\Traits; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Support\Str; | |
use ReflectionClass; | |
/** | |
* Generates prefixed column along with padded specific model attribute (e.g. model table primary key attribute) |
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 | |
namespace App\Providers; | |
use Illuminate\Support\Collection; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
public function boot() |
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
<template> | |
<table> | |
<thead> | |
<tr> | |
<th v-for="column in parameters.columns" v-html="title(column)"></th> | |
</tr> | |
</thead> | |
<tfoot v-if="footer"> | |
<tr> | |
<th v-for="column in parameters.columns" v-html="column.footer"></th> |
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
{ | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontSize": 15, | |
"editor.fontLigatures": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.wordWrap": "off", | |
"editor.formatOnPaste": false, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.cursorStyle": "line-thin", |
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
const echoPostRequest = { | |
url: 'https://<my url>.auth0.com/oauth/token', | |
method: 'POST', | |
header: 'Content-Type:application/json', | |
body: { | |
mode: 'application/json', | |
raw: JSON.stringify( | |
{ | |
client_id:'<your client ID>', | |
client_secret:'<your client secret>', |
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
{ | |
"workbench.colorTheme": "Ayu Mirage", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "JetBrains Mono, Roboto Mono, Inconsolata", | |
"editor.fontSize": 13, | |
"editor.fontLigatures": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.wordWrap": "off", | |
"editor.formatOnPaste": false, | |
"editor.multiCursorModifier": "ctrlCmd", |
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
{ | |
"always_show_minimap_viewport": true, | |
"atomic_save": false, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/ayu/ayu-mirage.sublime-color-scheme", | |
"draw_minimap_border": true, | |
"font_face": "JetBrains Mono, Inconsolata", | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, |
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
// https://askubuntu.com/questions/1179275/enable-tap-to-click-kubuntu | |
// https://askubuntu.com/questions/949527/restore-tap-to-click-in-ubuntu-16-04-on-dell-xps-13 | |
After some additional searching I found the solution to my problem here | |
I had to add Option "Tapping" "True" to the entry MatchIsTouchpad in the file /usr/share/X11/xorg.conf.d/40-libinput.conf. The exact name of the file might be different for other people. | |
You need to be root to edit the file! |
var response = pm.response.json(),
accessToken = response.data.access_token;
if (response && accessToken) {
pm.environment.set("access_token_admin", accessToken);
}