Skip to content

Instantly share code, notes, and snippets.

@Aizazahmed-7
Aizazahmed-7 / xml
Created May 8, 2024 12:05 — forked from Comerick/xml
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:g="http://base.google.com/ns/1.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<tom:link href="http://www.drink-shop.ch/engine/connectors/export/15/e8eca3b3bbbad77afddb67b8138900e1/export.xml" rel="self" type="application/rss+xml" />
<title>Drink-Shop</title>
<description>Beschreibung im Header hinterlegen</description>
<link>http://www.drink-shop.ch</link>
<language>DE</language>
<image>
<url>http://www.drink-shop.ch/templates/_default/frontend/_resources/images/logo.jpg</url>
@Aizazahmed-7
Aizazahmed-7 / isEven.js
Last active May 8, 2024 12:07
check if even
const isEven(input) => {
if (input % 2 ===0 ) return true
return false
//edit
hello world