I hereby claim:
- I am platan on github.
- I am marcinmielnicki (https://keybase.io/marcinmielnicki) on keybase.
- I have a public key ASDf6zcA7hNg7AHBPDaV8z8YcMnNuWvO0r4jVyRswWVOWgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Copyright (c) 2018 Marcin Mielnicki | |
# Licensed under the MIT License | |
# | |
# Shows usages of Shields.io in most starred projects hosted on GitHub | |
# | |
# Requirements: | |
# - requests (http://python-requests.org/) | |
# | |
import argparse |
{ | |
"_links": { | |
"comments": { | |
"href": "https://api.github.com/repos/badges/shields/issues/1114/comments" | |
}, | |
"commits": { | |
"href": "https://api.github.com/repos/badges/shields/pulls/1114/commits" | |
}, | |
"html": { | |
"href": "https://github.com/badges/shields/pull/1114" |
after do | |
# requires sox: sudo apt install sox | |
`notify-send "Pomodoro ended"` | |
`play -q /usr/share/sounds/ubuntu/stereo/message.ogg` | |
end |
# Copyright (c) 2015 Marcin Mielnicki | |
# Licensed under the MIT License | |
# | |
# Requirements: | |
# stashy (https://github.com/RisingOak/stashy): pip install stashy | |
# | |
# Creates Hound config (https://github.com/etsy/Hound) with public Stash | |
# repositories | |
# | |
# Code formatting: |
#!/bin/bash | |
window_ids=$(wmctrl -l | cut -f1 -d " ") | |
for window_id in $window_ids | |
do | |
wmctrl -i -r "$window_id" -b add,maximized_vert,maximized_horz | |
done |
<?xml version="1.0"?> | |
<!DOCTYPE module PUBLIC | |
"-//Puppy Crawl//DTD Check Configuration 1.2//EN" | |
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | |
<module name="Checker"> | |
<module name="RegexpMultiline"> | |
<property name="format" value="@Component( |\n|\r|\r\n)"/> | |
<property name="message" value="JSR-330 @Named should be used instead of Spring @Component. "/> |