Skip to content

Instantly share code, notes, and snippets.

View basarozcan's full-sized avatar

Başar Özcan basarozcan

View GitHub Profile
@basarozcan
basarozcan / docker-help.md
Created April 27, 2020 05:28 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

Post-install message from ulid:
ulid gem needs to install sysrandom gem if you use Ruby 2.4 or older.
Execute `gem install sysrandom` or add `gem "sysrandom"` to Gemfile.
Fetching foreman-0.87.1.gem
Successfully installed foreman-0.87.1
Parsing documentation for foreman-0.87.1
Installing ri documentation for foreman-0.87.1
Done installing documentation for foreman after 1 seconds
1 gem installed
@basarozcan
basarozcan / node_nginx_ssl.md
Created November 1, 2019 19:23 — forked from bradtraversy/node_nginx_ssl.md
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

// create a bookmark and use this code as the URL, you can now toggle the css on/off
// thanks+credit: https://dev.to/gajus/my-favorite-css-hack-32g3
javascript: (function() {
var elements = document.body.getElementsByTagName('*');
var items = [];
for (var i = 0; i < elements.length; i++) {
if (elements[i].innerHTML.indexOf('* { background:#000!important;color:#0f0!important;outline:solid #f00 1px!important; background-color: rgba(255,0,0,.2) !important; }') != -1) {
items.push(elements[i]);
}
}
<template lang="html">
<div>
<form v-on:submit='ekleToDo($event)'>
<input type='text' placeholder='Ne yapacaksın?' v-model='yeniToDo'/>
<input type='submit' />
</form>
<ul>
<li v-for='todo in todos'>
<span>{{todo.title}}</span>
</li>
@basarozcan
basarozcan / gist:3784353
Created September 25, 2012 20:50 — forked from padolsey/gist:527683
Javascript: Detect IE
// ----------------------------------------------------------
// A short snippet for detecting versions of IE in JavaScript
// without resorting to user-agent sniffing
// ----------------------------------------------------------
// If you're not in IE (or IE version is less than 5) then:
// ie === undefined
// If you're in IE (>=5) then you can determine which version:
// ie === 7; // IE7
// Thus, to detect IE:
// if (ie) {}