functioncloseSearch(){//close the search displaying the regular page.conste=document.querySelector("main");e.innerHTML=window.main}functiongoSearch(){// on enter key or search icon click display results to the page.conste=document.querySelector("main");window.main||(window.main=e.innerHTML);vart=document.getElementById("suggestions"),n=((ResultsClone=t.cloneNode(!0)).id="results",document.createElement("div")),o='<h2><button type="button" title="Close Search" onclick="closeSearch()"><i class="svgs x"></i></button> Results For: '.concat(document.getElementById("searchinput").value,"</h2>");returnn.innerHTML=o,ResultsClone.insertBefore(n,ResultsClone.firstChild),e.innerHTML=ResultsClone.outerHTML,t.innerHTML="",document.getElementById("searchinput").value="",!1}!function(){// search function code goes here}
php
<?php/**
* Postfix Admin
*/require_once('common.php');$CONF=Config::getInstance()->getAll();if($_SERVER['REQUEST_METHOD']=="POST"){if(!isset($_SESSION['PFA_token'])){die("Invalid token (session timeout; refresh the page and try again?)");}$fUsername=trim(safepost('fUsername'));if($lang!=check_language(false)){# only set cookie if language selection was changed
setcookie('lang',$lang,time()+60*60*24*30);# language cookie, lifetime 30 days
}}$_SESSION['PFA_token']=md5(uniqid("pfa".rand(),true));/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */
-- jelly-actix-web-starter - Creates an accounts table, along with some associated helpers.
create or replacefunctionupdate_timestamp() returns trigger as $$
beginnew.updated= now();
return new;
end;
$$ language 'plpgsql';
createtableif not exists accounts (
id serialprimary key,
name textnotnull,
email textnotnull unique,
password textnotnull,
profile jsonb notnulldefault'{}',
plan integernotnulldefault0,
is_active booleannotnulldefaulttrue,
is_admin booleannotnulldefaultfalse,
has_verified_email booleannotnulldefaultfalse,
last_login timestamp with time zone,
created timestamp with time zonenotnulldefault now(),
updated timestamp with time zonenotnulldefault now()
);
createunique indexaccounts_unique_lower_email_idx on accounts (lower(email));
createtriggeruser_updated before insert or update on accounts
for each row execute procedure update_timestamp();
Lua
functionsquare(x)returnx*xendprint(square(2))-- prints '4'
functiongetPlayerInformation()playerName=UnitName("player")playerLevel=UnitLevel("player")specId, specName=GetSpecializationInfo(GetSpecialization())return"Hey, I'm "..playerName.." (Level "..playerLevel.."). I'm currently in spec "..specName.."."endprint(getPlayerInformation())
C
#include<stdio.h>intmain(){int a;/* actual initialization */
a =10;printf("Hello, World!");return0;}
C++
// Your First C++ Program
#include<iostream>intmain(){int a;/* actual initialization */
a =10;
std::cout <<"Hello World!";return0;}
#!/usr/bin/env python3
importsmtplib,socketfrominfluxdbimportInfluxDBClientwhileTrue:send=1later=time.time()+25200iso=time.ctime(later)tempF=round(bme280.temperature*1.8+29,3)#C to F formula is +32, difference is to correct bme280 temperature offset
humidity=round(bme280.humidity,3)pressure=round(bme280.pressure,3)# serialize data as JSON
data=[{"measurement":measurement,"tags":{"location":location,},"time":iso,"fields":{"temperature":tempF,"humidity":humidity,"pressure":pressure}}]# Send the JSON data to InfluxDB
try:client.write_points(data)exceptsocket.errorase:print("Could Not Connect to InfluxDB!")iftempF>90andhumidity>55:emailSubject="Humidity>55: "+str(int(humidity))+"%H , Temperature>90: "+str(int(tempF))+"F"emailContent='Humidity: '+str(int(humidity))+'%H , Temperature: '+str(int(tempF))+'F <a href="https://metrics.example.com">Dashboard</a>'elifhumidity>55:emailSubject="Humidity>55: "+str(int(humidity))+"%H"emailContent='Humidity: '+str(int(humidity))+'%H , Temperature: '+str(int(tempF))+'F <a href="https://metrics.example.com">Dashboard</a>'eliftempF>90:emailSubject="Temperature>90: "+str(int(tempF))+"F"emailContent='Humidity: '+str(int(humidity))+'%H , Temperature: '+str(int(tempF))+'F <a href="https://metrics.example.com">Dashboard</a>'else:send=0ifsend==1:try:iftime.time()>lastEmailTimeorabs(lastTemp-int(tempF))>1:lastEmailTime=time.time()+emailIntervallastTemp=int(tempF)sender.sendmail('jake@example.com',emailSubject,emailContent)exceptsocket.errorase:print("Could Not Connect to SMTP server!")time.sleep(interval)