Skip to content

Instantly share code, notes, and snippets.

View bobiko's full-sized avatar
👋
coding, biking and living

bobiko bobiko

👋
coding, biking and living
View GitHub Profile
@bobiko
bobiko / gist:db717e2174029d98e0f10ff3a5887ce9
Created May 20, 2020 10:31
MS Terminal Preview Config
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{TOKEN}",
"profiles": {
"defaults": {
// Put settings here that you want to apply to all profiles
},
"list": [
<div class="social-links clearfix" style="undefined: margin-left:25vw; display: block; color: #000;">
<ul style="list-style-type: none; text-align: center; width: 100%;">
<li style="margin: 11px 11px 0 0; float: left;"><a target="_blank" href="https://www.facebook.com/hubertkajdan/" style="border: 1px solid #eee; color: #eee; display: block; font-size: 14px; height: 30px; line-height: 27px; text-align: center; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); width: 30px;"><i class="fa fa-facebook" style="-webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg);"></i></a></li><li style="margin: 11px 11px 0 0; float: left;"><a target="_blank" href="https://pl.pinterest.com/hubertkajdan/pins/" style="border: 1px solid #eee; color: #eee; display: block; font-size: 14px; height: 30px; line-height: 27px; text-align:
@bobiko
bobiko / hyperjs
Last active December 4, 2018 14:55
We couldn’t find that file to show.
nodemailer: {
options: {
transport: grunt.file.readJSON('config/nodemailer.json'),
recipients: grunt.file.readJSON('config/recipients.json'),
message: {
from: '<John Doe> john.doe@gmail.com'
}
},
dist: {
@bobiko
bobiko / Sublime Preferences
Created April 2, 2013 21:15
Bobiko's Sublime Preferences
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Monokai Soda.tmTheme",
"fade_fold_buttons": false,
"detect_slow_plugins": false,
"folder_exclude_patterns":
[
".svn",
".sass-cache",
@bobiko
bobiko / nginxsites-availabledefault
Created September 8, 2012 02:09
nginx sites-available default
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/www.access.log;
## Lokacja strony:
location / {
root /home/bobiko/www;
index index.php index.html index.htm;
}