#Lista tagów na wykop.pl wartych śledzenia
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
let table = "<table><tbody>"; | |
for (let li of document.querySelectorAll("li")) { | |
table += "<tr>"; | |
table += getRowString(li, ""); | |
table += "</tr>"; | |
} |
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
### Keybase proof | |
I hereby claim: | |
* I am maxbmx on github. | |
* I am maxbmx (https://keybase.io/maxbmx) on keybase. | |
* I have a public key ASA5kAoJddokxoRCTYwXnS5KORruh4jOSkE6fkyzhEudLAo | |
To claim this, I am signing this object: |
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
1. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
2. brew install zsh zsh-completions | |
2.1 chsh -s /bin/zsh | |
2.2 sudo port install zsh zsh-completions | |
3. sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
4. vi ~/.zshrc | |
do ZSHRC: | |
#CUSTOM |
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
//If you would like fo filter benchmark list on the https://browser.geekbench.com/mac-benchmarks | |
//you could simply use the Chrome Developer Tools and in the Console tab paste this: | |
$('table.table.mac-benchmark tr').find('td.name:not(:contains("MacBook Pro"))').parent("tr").remove(); | |
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
(.)*(payu|tpay|db-pbc|pekao24|t-mobilebankowe|3dsecure|aliorbank|bankmillennium|bosbank24|citibankonline|citibank|credit-agricole|e-bank|ebank|eblik|eurobank|getinbank|ideabank|ingbank|mbank|multibank)+.(com|[com.pl]|pl|net|[net.pl])+ | |
/* | |
Examples: | |
3dsecure.mbank.pl | |
aliorbank.pl | |
bankmillennium.pl | |
citibankonline.pl | |
cloud.ideabank.pl |
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
#!/bin/bash | |
# Update all | |
sudo gem update --system | |
brew update | |
brew cask update | |
npm -g update | |
mas upgrade | |
#brew upgrade |
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
<?php | |
namespace Ageno\DecoMorreno; | |
class DecoMorreno | |
{ | |
const LIGHT_TYPE = 1; | |
const DARK_TYPE = 2; | |
const EXTRA_DARK_TYPE = 3; |