sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| import axios from 'axios'; | |
| // You can use any cookie library or whatever | |
| // library to access your client storage. | |
| import cookie from 'cookie-machine'; | |
| axios.interceptors.request.use(function(config) { | |
| const token = cookie.get(__TOKEN_KEY__); | |
| if ( token != null ) { | |
| config.headers.Authorization = `Bearer ${token}`; |
| function nl2br(str) { | |
| var break_tag = '<br>'; | |
| return (str + '').replace(/([^>rn]?)(rn|nr|r|n)/g, '' + break_tag + ''); | |
| } |
| /// <summary> | |
| /// Owin Request extensions. | |
| /// </summary> | |
| public static class OwinRequestExtensions | |
| { | |
| /// <summary> | |
| /// Gets the combined request parameters from the form body, query string, and request headers. | |
| /// </summary> | |
| /// <param name="request">Owin request.</param> | |
| /// <returns>Dictionary of combined form body, query string, and request headers.</returns> |
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
| window.location.href | |
| ==================== | |
| Bookmarklet to append a string to the end of the URL. | |
| 1. Create bookmark. | |
| 2. Edit bookmark URL(Chrome) / Location(Firefox) to include this code: javascript:window.location.href=window.location.href+'REPLACETHIS'; | |
| 3. Now make use of that bookmarklet. |
| /* | |
| * Copyright (c) 2009-2017, Farooq Mela | |
| * All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions are met: | |
| * | |
| * 1. Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. | |
| * 2. Redistributions in binary form must reproduce the above copyright |