Localfy aims to help people discover artists local to areas where they live using the Last.fm API.
- LastFM API
- Github Repository -- Active in 'development' branch
TODO:
- API Selection -- Last.fm
- Make simple API request to test
Localfy aims to help people discover artists local to areas where they live using the Last.fm API.
TODO:
Localfy aims to help people discover artists local to areas where they live using the Last.fm API.
initAutocompleterequire(second.less/css) -- relative to build or src dir?let variable declared in global, can it be changed from insind function?_Inspired by the Jerry Sienfeld technique, GitChain offers the metaphor of a chain to serve as a cue to stay motivated programming. Commit code each day. Build your chain. Don't break it.
| 'use static'; | |
| const express = require('express'); | |
| const mongoose = require('mongoose'); | |
| const config = require('./config'); | |
| const bodyParser = require('body-parser'); | |
| const ghRobot = require('./ghRobot'); | |
| const request = require('request'); | |
| const bcrypt = require('bcryptjs'); | |
| const passport = require('passport'); |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |
| export const ADD_REPO = 'ADD_REPO'; | |
| export const addRepo = repository => ({ | |
| type: ADD_REPO, | |
| repository | |
| }); | |
| export const RATE_REPO = 'RATE_REPO'; | |
| export const rateRepo = (repository, rating) => ({ | |
| type: RATE_REPO, | |
| repository, |
A responsive clientside React-Redux based pomodoro web app
| #!/usr/bin/python | |
| from selenium import webdriver | |
| from datetime import datetime | |
| import time | |
| import urllib | |
| url = "http://stackoverflow.com" | |
| everyXHours = 6 | |
| refreshrate = 60 * 60 * everyXHours # Refresh every hour | |
| browser = webdriver.Firefox() |