This file contains 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
sudo apt-get install zsh | |
curl -L http://install.ohmyz.sh | sh | |
chsh vagrant -s /bin/zsh |
This file contains 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
/** | |
* Custom pagination for WordPress to be like Zurb Foundation Pagination, without the need to hook/change classes or items on the paginate_links() function. | |
* This style has been compile using the default Foundation settings. | |
* Final note: .page-number li has a float: right rule which isn't from Foundation, it's custom. | |
*/ | |
ul.page-numbers { | |
display: block; | |
min-height: 1.5rem; | |
margin-left: -.3125rem; | |
} |
I hereby claim:
- I am AAlakkad on github.
- I am aalakkad (https://keybase.io/aalakkad) on keybase.
- I have a public key whose fingerprint is 9AE7 3C1B 6350 9665 7417 49DE 718C 233A B848 FF4E
To claim this, I am signing this object:
- You have the Stylish plugin to be installed in your browser (Chrome, Firefox).
- Install the css file into Stylish plugin, go to style page and click
+ Install with Stylish
button.
- If using Lenovo laptop, install wireless driver (linux40-broadcom-wl) or replace
40
with kernel version. - Install Slim (instead of LightDM), and
sudo systemctl disable lightdm.service && sudo systemctl disable lightdm-plymouth.service
. and configure it for default user. - Install
git
,openssh
,fish
.
- Install fonts; ms fonts, tahoma, droid-arabic, powerline, PT Mono (install it to
~/.local/share/fonts
). - Instal infinality
This file contains 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
<?php | |
$finder = Symfony\CS\Finder\DefaultFinder::create() | |
->in(__DIR__); | |
return Symfony\CS\Config\Config::create() | |
->level(Symfony\CS\FixerInterface::PSR2_LEVEL) | |
->fixers(array('-psr0', '-unalign_double_arrow', 'no_blank_lines_before_namespace', 'short_array_syntax', 'align_equals', 'concat_with_spaces')) | |
->finder($finder); |
This file contains 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
Show hidden characters
{ | |
"passes": | |
[ | |
"AlignPHPCode", | |
"NewLineBeforeReturn", | |
"AutoSemicolon", | |
"SmartLnAfterCurlyOpen", | |
"SpaceBetweenMethods", | |
"AlignEquals", | |
"AlignTypehint", |
This file contains 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
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
} from 'react-native'; | |
import Tabs from 'react-native-tabs'; |