Skip to content

Instantly share code, notes, and snippets.

View AliYmn's full-sized avatar
🐍
I'm probably writing Python right now....

Ali Yaman AliYmn

🐍
I'm probably writing Python right now....
View GitHub Profile
@AliYmn
AliYmn / postgres-brew.md
Created September 14, 2019 16:55 — forked from ibraheem4/postgres-brew.md
Installing Postgres via Brew (OSX)

Installing Postgres via Brew

Pre-Reqs

Brew Package Manager

In your command-line run the following commands:

  1. brew doctor
  2. brew update
@AliYmn
AliYmn / index.html
Created August 22, 2019 20:12 — forked from jeffposnick/index.html
beforeinstallprompt demo
<html>
<head>
<title>Test</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
<p>
If the <code>beforeinstallprompt</code> event fires, there will be a button displayed allowing
you to use <code>prompt()</code> on the deferred event.
</p>
@AliYmn
AliYmn / lets.go
Created September 5, 2017 13:53 — forked from cptangry/lets.go
Tek dosyada Go dilinin temel konuları ve örnekler
package main //Çalıştrılacak her Go kaynak dosyasında yer almalıdır.
// Go Dilinde tek satırlık yorum/açıklama
import (
"fmt" // Standart kütüphaneyi projemize dahil ettik
"io/ioutil" // Temel io işlemleri
"log" // log
"math" // Matematiksel işlem ve değer tanımlarını içeren kütüphaneyi içe aktardık
"net/http"
"os" // İşletim sistemi işlemleri
@AliYmn
AliYmn / python_ogretici.py
Created June 27, 2017 21:21 — forked from cptangry/python_ogretici.py
Python 3 için Tek bir betik dosyasında ayrıntılı yorumlarla Python dilinin temel kavram ve uygulamaları ile açıklamaları. Dosya çalıştırılabilir.
#!/usr/bin/env python3.6
# coding: utf-8
"""
Çok Satırlı yorum:
Python Guido Van Rossum tarafından 90'ların başında geliştirilmeye
başlanmıştır.
"""
# Bu da bir tek satırlık yorum örneğidir.