Puddinq.com sharing knowledge

Puddinq.com - blog

Remove jQuery migrate from WordPress

When WordPress is loaded it displays a jQuery migrate notice in the console. This means a part of software was loaded to be backward compatible. You can remove it:

jQuery make divs equal height

This little script can be run agains classes so all all items with that class are of equal hight. Sometimes it is impossible to make different items the same hight with css as the elements are flexibel and the size depends on the contents. The script looks at the heights of all items after loading […]

Wamp PHP 7.2 Mysql 5.7

Updating your wamp stack is relatively easy, you just need the right files and info. There are a few options to consider off which some can be manditory. Just update: if you can? Reinstall Extra’s Backup ?

Working with Linux (git) on Windows

After working with git local and true ssh on remote linux servers I have tried numerous software connection packages, after a few years one stands out and Git-scm – download Start where you want Rightmouse click anywhere in your file explorer and open the bash shell in the same path with Git Bash Here Use […]

Generating ssh key

An ssh key holds information that once combined with a login action lets you login without using a password*. This is very useful if you login regularly.  * You have to leave the keyphrase empty while generating the key file in order to login without anything more than a username.

FileZilla FTP keyfile pkk windows

Using a ssh key file to connect to your server with FileZilla sftp is easy once you have generated a key file (tutorial). Once you have a id_rsa file in the .ssh folder in you profile folder (users/your-name) you can use that directly in Filezilla.

jQuery Autocomplete with Wordpress

Assuming you know something about plugin development, I want to share a piece using jQuery autocomplete the WordPress way. Ajax calls have been around and jQuery autocomplete has been, but you do not see them as much together in examples the WordPress way.

Linux show last (n) rows of file

If you have ssh access to a server you can have a live view on whats happening by displaying the last lines of the error or access log. Here is it and how is explained below. cd /logs tail -n 10 -f error_log | cut -b 1-200 You have to navigate to where your error […]

Most appreciated WordPress plugins 2017

It is the end of the year and I am making a list, the most appreciated WordPress plugins I have used in 2017. Plugins extend the functionality of WordPress and need to flexibel and trustworthy. Here is my list with some exploitation: 1. GravityForms Build anything from a contactform to a ticket-system that organizes your […]

Adding key from server to Bitbucket or Github

First you connect to your server (ssh) Run ssh-keygen in the account you want to generate keys for Enter the questions (set nothing) View .ssh/id_rsa Copy the contents Add them to your Bitbucket or Github account

1 8 9 10 11 12 14