- XML GET
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET "http://hostname/resource"- JSON GET
curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET "http://hostname/resource"- JSON PUT
| -- Token Based API Access for Supabase | |
| -- | |
| -- How to configure Supabase (https://supabase.com/) to generate and accept API tokens. | |
| -- | |
| -- (c) 2022 Felix Zedén Yverås | |
| -- Provided under the MIT license (https://spdx.org/licenses/MIT.html) | |
| -- | |
| -- Disclaimer: This file is formatted using pg_format. I'm not happy with the result but | |
| -- prefer to follow a tool over going by personal taste. | |
| -- |
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET "http://hostname/resource"curl -i -H "Accept: application/json" -H "Content-Type: application/json" -X GET "http://hostname/resource"| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Manually gzip CSS and JS files</title> | |
| <link rel="stylesheet" href="bootstrap-custom.min.css" type="text/css"> | |
| <script src="header-scripts.min.js"></script> | |
| </head> |
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| //CSS | |
| import { Card, Col, Divider, Form, Input, Row } from "antd"; | |
| import { LocationSearchInput } from "./location-search"; | |
| import { geocodeByAddress, getLatLng } from "react-places-autocomplete"; | |
| import { FormComponentProps } from "antd/lib/form/Form"; | |
| type Props = {} & FormComponentProps; | |
| type State = { | |
| address: string; | |
| }; |
| import React, { PureComponent } from 'react'; | |
| import { Button, } from 'antd'; | |
| // npm i jspdf | |
| import jsPDF from 'jspdf' | |
| // npm i jspdf-autotable | |
| import 'jspdf-autotable'; | |
| export default class pdfGenerate extends PureComponent { |
| <?php | |
| $countryArray = array( | |
| 'AD'=>array('name'=>'ANDORRA','code'=>'376'), | |
| 'AE'=>array('name'=>'UNITED ARAB EMIRATES','code'=>'971'), | |
| 'AF'=>array('name'=>'AFGHANISTAN','code'=>'93'), | |
| 'AG'=>array('name'=>'ANTIGUA AND BARBUDA','code'=>'1268'), | |
| 'AI'=>array('name'=>'ANGUILLA','code'=>'1264'), | |
| 'AL'=>array('name'=>'ALBANIA','code'=>'355'), | |
| 'AM'=>array('name'=>'ARMENIA','code'=>'374'), | |
| 'AN'=>array('name'=>'NETHERLANDS ANTILLES','code'=>'599'), |
| const HOST_URL = process.env.BASE_URL || 'http://localhost:3000'; | |
| //const API_URL = process.env.BASE_API_URL || 'http://14.225.11.12:3030/api/client'; | |
| const API_URL = process.env.BASE_API_URL || 'http://localhost:3000'; | |
| const webpack = require("webpack"); | |
| module.exports = { | |
| mode: 'spa', |
| <?php | |
| /** | |
| * == About this Gist == | |
| * | |
| * Code to add to wp-config.php to enhance information available for debugging. | |
| * | |
| * You would typically add this code below the database, language and salt settings | |
| * | |
| * Oh.. and *do* make sure you change the path to the log file to a proper file path on your server (make sure it exists). | |
| * |
| You can create a new empty branch like this: | |
| $ git checkout --orphan NEWBRANCH | |
| --orphan creates a new branch, but it starts without any commit. After running the above command you are on a new branch "NEWBRANCH", and the first commit you create from this state will start a new history without any ancestry. | |
| The --orphan command keeps the index and the working tree files intact in order to make it convenient for creating a new history whose trees resemble the ones from the original branch. | |
| Since you want to create a new empty branch that has nothing to do with the original branch, you can delete all files in the new working directory: |