Skip to content

Instantly share code, notes, and snippets.

View devzom's full-sized avatar
👷‍♂️
Coding for life and fun

Jakub Zomerfeld devzom

👷‍♂️
Coding for life and fun
View GitHub Profile
@yann-yinn
yann-yinn / api.js
Created August 23, 2017 13:01
Using cachios with Nuxt.js and express
/**
* Get content from wordpress via REST Api
*/
const config = require('../nuxt.config.js')
const axios = require('axios')
// always call the proxy here :
const endpoint = config.env.proxyApiBaseUrl
/**
* @param {int} perPage : number of post to return per page
// Kilka fajnych checklist
https://www.testing-web-sites.co.uk/testing-plans-checklists/download-checklists/
// Zbiory porad
https://www.slideshare.net/precisetestingsolution/ecommerce-website-testing-checklist
http://www.softwaretestinghelp.com/ecommerce-testing/
https://www.testing-web-sites.co.uk/testing-plans-checklists/testing-plan-for-an-ecommerce-site/
https://www.linkedin.com/pulse/20140715120218-53574772-e-commerce-website-testing-checklist
https://www.guru99.com/testing-e-commerce-applications.html
http://www.practicalecommerce.com/What-to-Test-on-an-Ecommerce-Site
@nkbt
nkbt / .eslintrc.js
Last active May 28, 2026 08:17
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {

Font Face

A mixin for writing @font-face rules in SASS.

Usage

Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.

@include font-face(Samplino, fonts/Samplino);
@pe3
pe3 / scrape_entire_website_with_wget.sh
Last active January 12, 2026 09:51
Scrape An Entire Website with wget
this worked very nice for a single page site
```
wget \
--recursive \
--page-requisites \
--convert-links \
[website]
```
wget options