Preventing the url from being indexed through the robots.txt is not enough. It may still be listed by search engines, unless you add the right header to you file, in the .htaccess.
Both files have to be put into the root directory of your domain.
[user] | |
name = Henning Pohlmeyer | |
email = [email protected] | |
[alias] | |
# Basics | |
co = checkout | |
ci = commit | |
cm = commit -m | |
st = status | |
br = branch |
// Line Interpolation | |
function createLineInterpolationFunction(p1, p2) { | |
const slope = (p2.y - p1.y) / (p2.x - p1.x); | |
const yIntercept = p1.y - (slope * p1.x); | |
return (x) => slope * x + yIntercept; | |
} | |
// Example | |
const getY = createLineInterpolationFunction({ x: 200, y: 20}, { x: 1440, y: 60 }); | |
const point = { x: 100, y: getY(100) }; |
/** | |
* Calculate a 2:1 iso grid for specific sizes. | |
* | |
* @author Henning Pohlmeyer | |
* | |
* @param {number} smallestValue The smalles value to use in the grid. | |
* @return {object} The grid spacing value and rotate and | |
* shear values for each plane. | |
*/ | |
function calculateIsoGrid(smallestValue) { |
// ============================================================================= | |
// POINT CALCULATION HELPER FUNCTIONS | |
// | |
// This is a collection of various mathematical helper functions, for manipula- | |
// ting points and measuring angles and distances. | |
// | |
// Inside a function, no other function form the list is used, to ensure you can | |
// use the indipendently. | |
// ============================================================================= |
ffmpeg -i {{INPUT VIDEO}} -movflags faststart -an -vf scale=976:-2 -pix_fmt yuv420p {{OUTPUT FILE}} |
[A-Za-zÀ-ÖØ-öø-ÿ] |
# Hackers often base64 encode malicious code to make it | |
# harder to find. Try these commands on your sites root folder | |
# to find base64 occurences. Look out for large code blocks | |
# in the output and check the code. | |
# You can search in php files only, but if the site is not too | |
# huge, I would recommend to search through all your files. | |
# 1. option | |
# Use this option for Linux based systems, where grep -r is | |
# available. The use command are: |