Skip to content

Instantly share code, notes, and snippets.

View flvasques's full-sized avatar

Fernando Libório Queiroz Vasques Neto flvasques

  • Brasil, Rio Grande do Sul
View GitHub Profile
@flvasques
flvasques / example_feed_xml_rss.xml
Created February 9, 2023 00:47 — forked from marcosnakamine/example_feed_xml_rss.xml
Google Merchant - Feed example in xml
This XML file does not appear to have any style information associated with it. The document tree is shown below.
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<title>Example - Online Store</title>
<link>http://www.example.com</link>
<description>
This is a sample feed containing the required and recommended attributes for a variety of different products
</description>
<!--
First example shows what attributes are required and recommended for items that are not in the apparel category
@flvasques
flvasques / Response.php
Created September 27, 2022 20:31 — forked from jeffochoa/Response.php
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;