This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************************************************** | |
* * | |
* Consultant.js * | |
* * | |
* @description Interactive consultant plugin for Peter Ray Homes * | |
* @author Tiny Giant * | |
* @version 1.0.4.4 * | |
* * | |
********************************************************************/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Peter Ray Homes Consultant | |
// @namespace http://github.com/Tiny-Giant | |
// @version 1.0.0.4 | |
// @description Interactive consultant applet for the homepage of Peter Ray Homes | |
// @author @TinyGiant | |
// @match http://www.libbyandben.co.nz/peterRay* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
/* jshint -W097 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# DO NOT EDIT THIS FILE | |
# | |
# It is automatically generated by grub2-mkconfig using templates | |
# from /etc/grub.d and settings from /etc/default/grub | |
# | |
### BEGIN /etc/grub.d/00_header ### | |
set pager=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@localhost /]# grub2-mkconfig -o /boot/grub2/grub.cfg | |
Generating grub configuration file ... | |
Found linux image: /boot/vmlinuz-4.3.5-300.fc23.x86_64 | |
Found initrd image: /boot/initramfs-4.3.5-300.fc23.x86_64.img | |
Found linux image: /boot/vmlinuz-0-rescue-241ff0f2785d4dbe9901c9ce49c38588 | |
Found initrd image: /boot/initramfs-0-rescue-241ff0f2785d4dbe9901c9ce49c38588.img | |
Found Ubuntu 14.10 (14.10) on /dev/sda2 | |
done | |
[root@localhost /]# grub2-install --target=i386-pc --grub-setup=/bin/true --debug /dev/sda | |
Installing for i386-pc platform. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
su - | |
cd /mnt | |
mount /dev/fedora/root ./ | |
mount /dev/fedora/home home/ | |
mount -t proc proc proc/ | |
mount --rbind /sys sys/ | |
mount --rbind /dev dev/ | |
mount --rbind /var/run/ var/run/ | |
chroot /mnt/ | |
mount -a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Title: How to center a floated list | |
This is what my page looks like: | |
[![enter image description here][1]][1] | |
Now when I add another post: | |
[![enter image description here][2]][2] |
- http://stackoverflow.com/q/90661
- http://stackoverflow.com/q/1235410
- http://stackoverflow.com/q/2094306
- http://stackoverflow.com/q/2588329
- http://stackoverflow.com/q/2909587
- http://stackoverflow.com/q/4426415
- http://stackoverflow.com/q/5985119
- http://stackoverflow.com/q/9550664
- http://stackoverflow.com/q/11098756
- http://stackoverflow.com/q/12598051
Bad stuff is bad, right?
Plagiarism is bad. Useless edits are bad. Robo-reviewing is bad. Skip is always a valid option if you're not sure.
We know all of this, right?
Apparently not, because suggested edits to tag wikis and their excerpts containing plagiarized content, or just improper content are being approved regularly.
So what is the problem?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
'use strict'; | |
$(document).ready(function() { | |
(function(){ | |
if (!/portfolio-item/.test(window.location.href)) return; | |
var i; | |
var bigwrap = document.querySelector('.page-header .portfolio-entry-img').parentNode; |