Skip to content

Instantly share code, notes, and snippets.

HARUN PEHLİVAN harunpehlivan

View GitHub Profile
@NigelEarle
NigelEarle / Knex-Setup.md
Last active March 15, 2025 16:49
Setup Knex with Node.js

Knex Setup Guide

Create your project directory

Create and initialize your a directory for your Express application.

$ mkdir node-knex-demo
$ cd node-knex-demo
$ npm init
@harunpehlivan
harunpehlivan / arapca-osmanlica-klavye.markdown
Last active January 17, 2020 15:31
Arapça Osmanlıca Klavye
anonymous
anonymous / DotLeader
Created February 20, 2018 17:02
Simple CSS Dot Leaders
<!DOCTYPE html>
<html>
<head>
<!-- Feel free to use and modify however you like http://AlanSimpson.me -->
<title>CSS Dot Leaders</title>
<style>
ul.dotleaders {
list-style: none;
padding: 0;
/* This width can be whatever you like */
@AlanSimpsonMe
AlanSimpsonMe / CrazySpinnyThing
Created February 20, 2018 18:52
Crazy Spinny Thing
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
/* General style, transition occurs when taking mouse pointer of the item */
img.crazy {
display: block;
margin: 10em auto;
/* That code is really just the opposite of the hover code. */
@AlanSimpsonMe
AlanSimpsonMe / DropCap
Created February 20, 2018 19:07
Super Simple CSS Drop Cap
<!DOCTYPE html>
<html>
<head>
<title>Drop Cap Example</title>
<!-- Feel free to use however you wish http://AlanSimpson.me -->
<style>
/* This width is just to make the paragraphs narrow, not required in real life */
p {
width: 400px;
}
@harunpehlivan
harunpehlivan / create-a-profile-card-with-css.markdown
Last active August 19, 2019 13:09
Create a Profile Card with CSS

Create a Profile Card with CSS

Chào các bạn, trong khuôn khổ bài viết này chúng ta sẽ cùng nhau tạo ra một hồ sơ cá nhân (Profile Card) bằng CSS và HTML. Cùng với những thông tin cơ bản mà bạn muốn hiển thị, hoặc bạn có thể sửa cho phù hợp với bản thân.

A Pen by HARUN PEHLİVAN on CodePen.

License.

// including plugins
var gulp = require('gulp')
var minifyCSS = require('gulp-minify-css')
var autoprefixer = require('gulp-autoprefixer')
var gp_concat = require('gulp-concat')
var gp_rename = require('gulp-rename')
var gp_uglify = require('gulp-uglify')
var path = require('path')
gulp.task('css-main', function(){
@harunpehlivan
harunpehlivan / hp-portfolio-design.markdown
Last active March 1, 2019 06:45
HP- Portfolio design

HP- Portfolio design

Started building my portfolio on CodePen, then finished it off with content locally, so thought I'd add the finishing touches to the CodePen version!

A Pen by HARUN PEHLİVAN on CodePen.

License.

@AlanSimpsonMe
AlanSimpsonMe / Accordian
Last active June 23, 2018 09:36
Accordian (jQuery)
<!DOCTYPE html>
<html>
<head>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script>
$(document).ready(function () {