Skip to content

Instantly share code, notes, and snippets.

View educartoons's full-sized avatar

Eduar educartoons

View GitHub Profile
<section class="blog">
<div class="container">
<ul class="blog-ul-list">
<li class="blog-entry">
<figure class="image">
<img src="./images/post1.jpg" alt="">
</figure>
<div class="content">
<div class="content-wrapper">
<h2 class="title">Recording—Simplified: Ryan Montbleau on Mobile Recording</h2>
/* ==========================================================================
Normalize.scss settings
========================================================================== */
/**
* Includes legacy browser support IE6/7
*
* Set to false if you want to drop support for IE6 and IE7
*/
/* Base
========================================================================== */
.header {
background-color: #000;
padding: 0.425em 0;
}
.header-logotype {
float: left;
}
.header-utility {
<header class="header">
<div class="container">
<div class="header-logotype">
<a href=""><img src="./images/logo.png" width="150" alt=""></a>
</div>
<div class="header-search componentSearch">
<form action="">
<input placeholder="Search" type="text" class="search">
<span class="icon-search"></span>
@educartoons
educartoons / InsertionSort.cpp
Created August 13, 2016 03:45
Method for Sorting known like Insertion Sort
void insertionSort(int *array, int array_length){
int i, j, key;
for(j=1;j<array_length;j++){
key = array[j];
i=j-1;
while(i>=0 && array[i]>key){
array[i+1]=array[i];
i=i-1;
}