View pet.rb
class Pet | |
#attr handler | |
attr_reader :color, :breed | |
attr_accessor :name | |
#init method | |
def initialize(color, breed) | |
@color = color | |
@breed = breed | |
@hungry = true |
View functions.php
// PHOTO PLANT ################################################################################################################ | |
function photoPlant($pID){ | |
// db | |
include "includes/dbConfig.php"; | |
// init | |
$out = null; | |
// gen hash | |
$varA = microtime(); | |
$varB = time(); | |
$varC = $varA . $varB; |
View rockGame.rb
puts "Welcome to Rock, paper or scissors... I actually tried to do a blackjack but i got stuck on arrays... i believe ill get to that with a bit more of knowledge.\n\n" | |
puts "Alright... give me 'rock', 'paper' or 'scissors'." | |
puts "You can also choose to 'quit' the game.\n\n" | |
answer = gets.chomp | |
case answer.downcase | |
when "quit" | |
puts "Alright... game will quit. Bye.\n\n" | |
return | |
when "rock", "paper", "scissors" |
View index.html
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Bootstrap Grid</title> | |
<!-- bs call --> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous"> | |
</head> |
View registrations_controller.rb
# this file should be into "/controllers/" | |
# We call RegistrationsController extending Devise Registrations controller for starters | |
class RegistrationsController < Devise::RegistrationsController | |
# we override the method to define whatever we want here. | |
def after_update_path_for(resource) | |
edit_registration_path(resource) | |
end |
View geo_distance.js
var earth_radius_km = 6371.0; | |
function deg_to_rad(deg) { | |
return (deg * Math.PI / 180.0); | |
} | |
function haversine_distance(latitude1, longitude1, latitude2, longitude2) { | |
var lat1 = deg_to_rad(latitude1); | |
var lng1 = deg_to_rad(longitude1); | |
var lat2 = deg_to_rad(latitude2); |
View not ready
// SETTINGS | |
slider_settings = { | |
verbose: true, | |
verbose_name: "DOBBY", | |
navigation: true, | |
bullets: true | |
} | |
// post DOM load stuff | |
$(document).ready(function(){ |
View gist:d34fcde8305f4238ffb31dcf294cbcca
# DIFF REPORT:# 12-05-2019 16:02:20 | |
# dif number 1 | |
--- | |
:title: "New slideshow options for Boundless theme \U0001F3DE️\U0001F306" | |
:dates: | |
:generated_at: 12.12.2019 - 16:02:20 | |
:post_date: March 27, 2019 | |
:meta: | |
:tag: Themes |
View gist:000f9f7461ce0136f480945ce0c31dc1
jQuery('.single-option-selector').selectize({ | |
{% if shop.currency_code == "EUR" %} | |
{% assign money_symbol = "€" %} | |
{% endif %} | |
{% if shop.currency_code == "USD" %} | |
{% assign money_symbol = "$" %} | |
{% endif %} |
View clear-sidekiq-jobs.sh
# 1. Clear retry set | |
Sidekiq::RetrySet.new.clear | |
# 2. Clear scheduled jobs | |
Sidekiq::ScheduledSet.new.clear | |
# 3. Clear 'Processed' and 'Failed' jobs |