I hereby claim:
- I am daryllxd on github.
- I am daryll_ascenda (https://keybase.io/daryll_ascenda) on keybase.
- I have a public key ASAeYsP2LKjgdfD9bkwKQgTcTkxH3nrL0n1dDlkck8V4Tgo
To claim this, I am signing this object:
{ | |
"about": "Aboutsss the website", | |
"footer.icons_attribution": "Icons created by prettycons - Flaticon", | |
"head.title": "Evolution Chamber", | |
"head.title.about": "About page", | |
"head.title.repos": "Repos page", | |
"header.select_language": "Select language ({{language}})", | |
"header.title": "Better every day", | |
"language.en": "English", | |
"language.es": "Spanish", |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -x | |
DATABASE_DUMP_FILE=wew.sql | |
rm $DATABASE_DUMP_FILE | |
pgrep ruby > /dev/null | |
if [ $? -eq 0 ]; then | |
killall -9 ruby |
#!/usr/bin/env ruby | |
require 'english' | |
require 'rubocop' | |
require 'rb-readline' | |
require 'pry' | |
cached_changes = `git diff --cached` | |
forbidden_words = ['binding.pry', 'console.log', 'debugger', 'byebug', '!important'] |
fizzbuzz = fn (a, b, c) -> | |
case { a, b, c } do | |
{ 0, 0, _ } -> "fizzbuzz" | |
{ 0, _, _ } -> "fizz" | |
{ _, 0, _ } -> "buzz" | |
_ -> c | |
end | |
end | |
rem_fiz = fn(num) -> |
HaybaDesu -- AirBnb clone | |
Purely back-end app, JSON only. | |
- 1st Part -- Hosts/adding properties | |
- Hosts Table - Email, Password, FirstName, LastName, Location, ImageUrl | |
- Host has_many Accomodations | |
- Accomodations Table - Name, Location, Description, Status (Unbooked or Occupied) | |
- An Accomodation has_many AccomodationPhotos | |
- AccomodationPhotos Table - ImageUrl (required), Caption (not required, but if none was generated, save as "Caption#{AccomodationPhoto.Id}" |
App Name: MeetLive | |
- Use database: MySQL | |
- Use CSS Framework: Bootstrap | |
- View to see all users (/users) | |
- Individual user view- must see interests (/users/:user_id/) | |
- Must be able to create User (through JSON) | |
- Must be able to update User attributes (through JSON) | |
- User must be able to add Interests (through JSON) | |
- User must be able to delete Interests (through JSON) |
#!/usr/bin/env ruby | |
require 'english' | |
require 'rubocop' | |
cached_changes = `git diff --cached` | |
forbidden_words = ['binding.pry', 'console.log', 'debugger', 'byebug', '!important'] | |
if forbidden_words.any? { |word| cached_changes.include?(word) } | |
puts "Looks like you are trying to commit something (any one of `#{forbidden_words.join(', ')}`) you shouldn't. Please fix your diff, or run 'git commit --no-verify' to skip this check, if you must." |
Homebrew build logs for openssl on macOS 10.8.5 | |
Build date: 2016-10-21 20:04:21 |