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 'package:flutter/material.dart'; | |
import 'package:flutter_html/style.dart'; | |
import 'package:flutter_html/flutter_html.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
class FontSizer extends StatefulWidget { | |
@override | |
_FontSizerState createState() => new _FontSizerState(); | |
} |
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
I am working on the Youtube of audio and would LOVE to have you onboard. | |
It is no doubt that audio is one of the fastest growing media for information sharing, but there exists only two major platforms: podcasts and audiobooks. | |
I am working on the third platform that falls in between both of these, this is article narration. | |
Wouldn't you like to reach the same the millions of people who, similarly to the book industry, would love to consume your blog in audio format? | |
Wouldn't you like to turn those listeners into paying subscribers to your content? | |
Wouldn't you like to do this with little to no time on your part? | |
I am proposing that you become a part of a few hand-picked bloggers we are choosing to launch this product. |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
#navigate to your web root and run this. | |
#I provide no warranty that it may not affect benign files but this worked for me | |
#so I though I should share it. | |
sudo grep -rl 'var _0x' . | xargs sudo sed -i -e 's/var _0x.*));//g' |
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
rom 0ab617f74d84ab33e7309f8b567defa5f85c642d Mon Sep 17 00:00:00 2001 | |
From: "Rohan A. Smith" <rohan@bluespark.com> | |
Date: Fri, 29 Apr 2016 10:23:49 -0400 | |
Subject: [PATCH] AAS-463: Patch for missing image alt data |
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
$("#box").click( function() { | |
$('#box').children().filter(function(){ | |
if($('#box').children().first().css('backgroundColor')!=$(this).css('backgroundColor')){ | |
$(this).css('background-color','lime'); | |
$(this).css('border-width','5px'); | |
$(this).css('border-color','red'); | |
} | |
}); | |
}); |
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
a_occured = false | |
b_occured = false | |
function event(source){ | |
if(source==A){ | |
if(b_occured==false){ | |
a_occurred=true | |
} | |
}else{ | |
if(a_occured==false){ |
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
fav = api.GetFavorites(count=200) | |
size = len( [elem for elem in fav if elem.user.screen_name=='frazras']) | |
pp( [[profile.updates.new(unicodedata.normalize('NFKD', (elem.text)).encode('ascii','ignore')) for elem in fav if elem.user.screen_name=='frazras'][i] for i in random.sample(xrange(size), 15)]) |