Skip to content

Instantly share code, notes, and snippets.

View azs06's full-sized avatar
:octocat:
Focusing

Md. Atiquzzaman Soikat azs06

:octocat:
Focusing
View GitHub Profile
@azs06
azs06 / How-To-Center-Floating-elements.markdown
Created February 23, 2014 22:53
A Pen by Md.Atiquzzaman Soikat.

How To Center Floating elements

This code helps you to center any floating elements on your page. It means you can center a floating container (with no specified width) regardless of the number of elements inside this conatianer.

A Pen by Md.Atiquzzaman Soikat on CodePen.

License.

<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
var name = "Sebastian STIAN THRUN";
@azs06
azs06 / introrx.md
Last active August 29, 2015 14:23 — forked from staltz/introrx.md

The introduction to Reactive Programming you've been missing

(by @andrestaltz)

So you're curious in learning this new thing called Reactive Programming, particularly its variant comprising of Rx, Bacon.js, RAC, and others.

Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:

Rx.Observable.prototype.flatMapLatest(selector, [thisArg])

Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.

@azs06
azs06 / index.html
Last active November 24, 2015 19:54 — forked from jrue/index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wheel of Fortune Bingo</title>
<style type="text/css">
text{
font-family:Helvetica, Arial, sans-serif;
font-size:11px;
pointer-events:none;
@azs06
azs06 / 0_reuse_code.js
Created November 27, 2013 12:34
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@azs06
azs06 / center-element.css
Created November 27, 2013 13:04
Make an element center in CSS
/*Best way to make any element center in CSS is using text-alignment with float and a widht.
Example*/
.logo-div {
float: left;
text-align: center;
width: 100%;
}
I need someone to develop a solution for scraping currently funding and closed crowdfunding projects on Kickstarter (www.kickstarter.com). For a given set of projects, this will output a table of data which can be embedded on a website. Data columns needed include: Project Name, Launch Date, Time Remaining (in Days, Hours), Funds Raised, Goal Amount, and Number of Backers.
Future iteration would also provide tracking ability for Indiegogo, Crowdrise, and GoFundMe projects.