Skip to content

Instantly share code, notes, and snippets.

body {
text-rendering: optimizeLegibility important;
-webkit-font-smoothing: auto;
}
.p-member_directory__search_filter_container{
background-color: #1a1a1a !important;
}
.p-member_directory__member_row {
background-color: #1a1a1a !important;
border-bottom: 1px solid #000 !important;}
body {
text-rendering: optimizeLegibility important;
-webkit-font-smoothing: auto;
}
.p-member_directory__search_filter_container{
background-color: #1a1a1a !important;
}
.p-member_directory__member_row {
background-color: #1a1a1a !important;
border-bottom: 1px solid #000 !important;}
@mlopes
mlopes / slackstyle.css
Created May 7, 2019 13:50
dark style for slack
body { background: #222; color: #e6e6e6; }
a { color: #949494; }
a:link, a:visited { color: #949494; }
a:hover, a:active, a:focus { color: #c7c7c7; }
hr { border-bottom: 1px solid #424242; border-top: 1px solid #222; }
/* ===[ General ]=== */
#messages_container > div.p-history_container.message_pane_scroller > div > div:nth-child(2) > div > div.c-virtual_list.c-virtual_list--scrollbar.c-message_list.c-scrollbar.c-scrollbar--fade > div.c-scrollbar__hider {
background: #2A2E39;
}
.c-message--light .c-message__sender .c-message__sender_link {
color: #ffffff
}
.c-message__body {

Keybase proof

I hereby claim:

  • I am mlopes on github.
  • I am mlopes (https://keybase.io/mlopes) on keybase.
  • I have a public key ASBWeiKLf4WqwamRdXom3K4ItA6BEPGwkO7s0hWdlTvlugo

To claim this, I am signing this object:

<scheme name="Monokai Dark Soda Custom" version="142" parent_scheme="Default">
<option name="FONT_SCALE" value="3.0" />
<metaInfo>
<property name="created">2018-04-10T11:17:08</property>
<property name="ide">Idea</property>
<property name="ideVersion">2018.1.0.0</property>
<property name="modified">2018-04-10T11:17:21</property>
<property name="originalScheme">Monokai Dark Soda Custom</property>
</metaInfo>
<option name="EDITOR_FONT_SIZE" value="16" />
import Data.Text (Text)
import qualified Data.Yaml as Y
import Data.Yaml (FromJSON(..), (.:))
import Data.ByteString (ByteString)
import Text.RawString.QQ
import Control.Applicative
actionsYml :: ByteString
actionsYml = [r|
action:
# Tell - The de-coupling allows me to write the example without having to write an example of the Keychain class
class EncryptionKey:
def __init__(self, keychain):
self.keychain = keychain
def decrypt(self, password):
if _decrypt(password):
self.keychain.unlock()
@mlopes
mlopes / gist:1852698
Created February 17, 2012 11:05
Convert wordpress plugin vipers quicktags youtube tags to octopress youtube tags
#!/usr/bin/perl
use strict;
my $script_name = $ARGV[0];
my $file_contents = "";
while(<>) {
if($_ =~ /\[youtube\](.*)\[\/youtube\]/) {
if($1 =~ /[\?&]v=([^&]+).*/) {
@mlopes
mlopes / gist:1852550
Created February 17, 2012 10:36
Convert wordpress style caption tags to octopress image tags
#!/usr/bin/perl
use strict;
my $script_name = $ARGV[0];
my $file_contents = "";
while(<>) {
if($_ =~ /\[caption.*/) {
my %imageData;