Posts

KEYWORDS AND JOBTITLES

 (CASHIER OR "SALES EXECUTIVE" OR "STORE CLERK" OR STOOPING OR BENDING OR TWISTING OR "DATA ENTRY" OR BILLING) WITHIN 10 MILES OF 90040 ("SUPER STORE" OR SUPERSTORE OR "SUPER MARKET" OR SUPERMARKET OR DEPARTMENTAL OR STOCK) WITHIN 20 MILES OF 90040 (CASHIER OR "SALES EXECUTIVE" OR "STORE CLERK" OR STOOPING OR BENDING OR TWISTING OR BILLING OR "DEPARTMENTAL CLERK") WITHIN 20 MILES OF 90040 ("CUSTOMER SERVICE REPRESENTATIVE" OR "CUSTOMER SERVICE" OR "CUSTOMER CARE" OR "CALL CENTER" OR "CALL CENTER CUSTOMER" OR RECEPTIONIST OR "INCOMING CALLS" OR "OUTBOUND CALLS" OR "INBOUND") AND ("OUTBOUND" OR "HELP DESK" OR "HIGH VOLUME CALL CENTER" OR "INSURANCE" OR "SALES" OR "MARKETING" OR "FRONT DESK" OR "FONT OFFICE" OR "RECEPTIONIST" OR "PRODUCTI...

Check Your ageInDays by Javascript

Image
<script type="text/javascript">   function ageInDays() {   var birthYear = prompt('What year were your born ?');   var ageInDayss = (2020 - birthYear)*365;   var h1 = document.createElement('h1');   var textAnswer = document.createTextNode('you are' + " "+ ageInDayss + " " + 'days old.')   h1.setAttribute('id','ageInDays');   h1.appendChild(textAnswer);   document.getElementById('flex-box-result').appendChild(h1); } </script> <style type="text/css">   .flex-box-container-1{     display: flex;     border: 1px solid black;     padding: 10px;     flex-wrap: wrap;     justify-content: space-around;   }   .flex-box-container-1 div{    /* border: 1px solid black;*/     align-items: center;     padding: 10px;   }   .container-1{     border: 1px solid black;   } </style>   ...

Login API with Rails

                                                                             Coming Soon

User Validations

class User < ApplicationRecord has_secure_password validates :username, presence: true validates :username, uniqueness: true validates :username, length: { minimum: 4 } validates :email, presence: true validates :email, uniqueness: true validates_format_of :email, :with => /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i end

ACTIVE ADMIN-CRUD

Image

Importent Notes;

1.Default Action with Column name in Active Admin: actions name : "Actions" 1.Add Filter with Assosiation in Model [Active Admin] class Review < ActiveRecord::Base belongs_to :event validates_presence_of :review end class Event < ActiveRecord::Base has_many :reviews end App/Admin/review.rb filter :event_street_address, as: :string, :label => 'City'

Show Reviews Box on Home with Slider

Image
<section class="recent-reviews"> <div class="container"> <div class="row"> <div class="title">Recent Reviews</div> <div class="slides"> <div class="slide"> <div class="col-md-12"> <div class="item"> <div class="ico-wrapper"> <img src="http://localhost:8080/img/avatars/file.jpeg" alt=""> </div> <div class="title"> <b>Adrian</b> reviewed a chumaround with <a href="#">Maya</a> in Medelin, Columbia </div> <div class="description"> <i class="fa fa-quote-left"></i> <i class="fa fa-quote-right"></i> <div> We had a great time chumming around with Maya. Even though our ...