bower
ember-cli
ember-cli-windows
gitignore
jshint
swagger
editorconfig-cli
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title data-rh="true">Taddy Ink</title> | |
<meta data-rh="true" itemprop="name" content="Taddy Ink" /> | |
<meta data-rh="true" itemprop="description" | |
content="Tools for webtoon creators to build, grow, and monetize their audience." /> | |
<meta data-rh="true" itemprop="image" content="https://ax0.taddy.org/general/taddy-logo-white-background.png" /> | |
<meta data-rh="true" name="description" |
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
--- | |
-- Find out current branch | |
-- @return {false|git branch name} | |
--- | |
function get_git_branch() | |
for line in io.popen("git branch 2>nul"):lines() do | |
local m = line:match("%* (.+)$") | |
if m then | |
return m | |
end |
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
var allposts = []; | |
function redirectToCorrectPage() { | |
{% for post in site.posts %} | |
allposts.push("{{ site.url }}{{ post.url }}"); | |
{% endfor %} | |
var url = window.location.toString(); | |
if (url.slice(-1) === "/") { | |
url = url.slice(0, -1); | |
} | |
var allpostsUpperCase = allposts.map(function(value) { |
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
/* | |
This is a modified version of the userstyle "Twitter Persian/Arabic Optimization" | |
https://userstyles.org/styles/119923/twitter-persian-arabic-optimization | |
This modification applies the Arabic font only on text with Arabic language while keeping | |
other languages with the default font | |
This is done using the :lang(ar) attribute | |
http://stackoverflow.com/a/15267560/463 | |
*/ | |
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
choco install 7zip.install | |
choco install cmdermini | |
choco install flashplayerplugin | |
choco install flashplayeractivex | |
choco install notepadplusplus.install | |
choco install sumatrapdf.install | |
choco install libreoffice | |
choco install ccleaner | |
choco install vlc | |
choco install clover |
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
### Keybase proof | |
I hereby claim: | |
* I am AmrEldib on github. | |
* I am amr (https://keybase.io/amr) on keybase. | |
* I have a public key whose fingerprint is D629 1605 2F4E 3B96 A510 276E C9DE FAD6 D0F4 A3C9 | |
To claim this, I am signing this object: |
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
string logFilePath = Path.GetTempFileName(); |
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
XmlConfigurator.Configure(stream); |
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
#if DEBUG | |
ILog log = LogManager.GetLogger("Logger"); | |
log.Debug("Message"); | |
#endif |
NewerOlder