This is a website for people to learn about Hippopotami and/or then test them on their knowledge.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css?family=Poppins'); | |
/*------------------------------General--------------------------*/ | |
body { | |
font-family: 'Poppins', sans-serif; | |
} | |
section { | |
margin-left: 100px; | |
margin-right: 100px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.nlpcentar.hr/najava-treninga/ | |
https://gizmodo.com/23-ancient-web-sites-that-are-still-alive-5960831 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://equ.com.au/ | |
https://bigsea.co/ | |
https://www.taabcard.com/?ref=landingfolio | |
http://matzemachtdesign.de/ | |
http://www.motiff.co/ | |
https://htmlburger.com/ | |
https://conference.inc.com/?cid=so1900711 | |
https://gulpjs.com/ | |
http://wrapbootstrap.com/preview/WB059347H | |
https://www.yanlinma.com/ninx/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link href="https://fonts.googleapis.com/css?family=Sarabun" rel="stylesheet"> | |
<title>Document</title> | |
<style media="screen"> | |
html,body { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<style> | |
p { | |
color: red; | |
} | |
</style> | |
</head> | |
<body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function a(k) { | |
var k,i,s,j; | |
for (i=1;i<=k;i++) { | |
s=0; | |
console.log("prva##############") | |
console.log("i je: " + i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
BASIC GULPFILE FOR COMPILING SASS, MINIFYING CSS | |
AND RELOADING PAGE WITH BROWSERSYNC | |
*/ | |
var gulp = require('gulp'); | |
var Promise = require('es6-promise').Promise; | |
var sass = require('gulp-sass'); | |
var rename = require('gulp-rename'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PostMailer < ApplicationMailer | |
def new_post_email(user_id) | |
puts "MAILER!!" | |
@user = User.find_by_id(user_id) | |
mail(to: @user.email, subject: 'New question has been asked!') | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AvatarUploader < CarrierWave::Uploader::Base | |
# Include RMagick or MiniMagick support: | |
# include CarrierWave::RMagick | |
include CarrierWave::MiniMagick | |
if Rails.env.production? | |
storage :fog | |
else |