Skip to content

Commit

Permalink
Use https everywhere possible
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Sep 14, 2018
1 parent 99973f1 commit 50b6ec2
Show file tree
Hide file tree
Showing 11 changed files with 43 additions and 43 deletions.
10 changes: 5 additions & 5 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: Andrea Leopardi
description: Software developer

# URL of your avatar or profile pic (you could use your GitHub profile pic)
avatar: http://www.gravatar.com/avatar/faafc04d9e69b73b9f49995fd4c94d4d?s=500
avatar: https://www.gravatar.com/avatar/faafc04d9e69b73b9f49995fd4c94d4d?s=500

#
# Flags below are optional
Expand All @@ -32,13 +32,13 @@ disqus: blog-andrealeopardi
# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
google_analytics: UA-41860599-4

# Your website URL (e.g. http://barryclark.github.io or http://www.barryclark.co)
# Your website URL (e.g. https://barryclark.github.io or https://www.barryclark.co)
# Used for Sitemap.xml and your RSS feed
url: http://andrealeopardi.com
url: https://andrealeopardi.com

# If you're hosting your site at a Project repository on GitHub pages
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# (https://yourusername.github.io/repository-name)
# and NOT your User repository (https://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: ""

Expand Down
4 changes: 2 additions & 2 deletions _includes/disqus.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
})();

</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
{% endif %}
{% endif %}
2 changes: 1 addition & 1 deletion _includes/svg-icons.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
{% if site.footer-links.pinterest %}<a href="https://www.pinterest.com/{{ site.footer-links.pinterest }}"><i class="svg-icon pinterest"></i></a>{% endif %}
{% if site.footer-links.rss %}<a href="{{ site.baseurl }}/feed.xml"><i class="svg-icon rss"></i></a>{% endif %}
{% if site.footer-links.twitter %}<a href="https://www.twitter.com/{{ site.footer-links.twitter }}"><i class="svg-icon twitter"></i></a>{% endif %}
{% if site.footer-links.stackoverflow %}<a href="http://stackoverflow.com/{{ site.footer-links.stackoverflow }}"><i class="svg-icon stackoverflow"></i></a>{% endif %}
{% if site.footer-links.stackoverflow %}<a href="https://stackoverflow.com/{{ site.footer-links.stackoverflow }}"><i class="svg-icon stackoverflow"></i></a>{% endif %}
{% if site.footer-links.youtube %}<a href="https://youtube.com/{{ site.footer-links.youtube }}"><i class="svg-icon youtube"></i></a>{% endif %}
{% if site.footer-links.googleplus %}<a href="https://plus.google.com/{{ site.footer-links.googleplus }}"><i class="svg-icon googleplus"></i></a>{% endif %}
6 changes: 3 additions & 3 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#">
<html prefix="og: https://ogp.me/ns# article: https://ogp.me/ns/article#">
<head>
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title>

{% include meta.html %}

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" />
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />

<!-- Created with Jekyll Now - http://github.com/barryclark/jekyll-now -->
<!-- Created with Jekyll Now - https://github.com/barryclark/jekyll-now -->
</head>

<body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,16 +336,16 @@ I'm realizing just now that this post, even if it's my first post about Elixir,

I updated the source code in this blog post to use `String.to_charlist/1` and `to_charlist/1` instead of `String.to_char_list/1` and `to_char_list/1` respectively; the `charlist` spelling has been deprecated in Elixir 1.3.

[wiki-lexical-analysis]: http://en.wikipedia.org/wiki/Lexical_analysis
[wiki-parsing]: http://en.wikipedia.org/wiki/Parsing
[wiki-lex]: http://en.wikipedia.org/wiki/Lex_(software)
[wiki-yacc]: http://en.wikipedia.org/wiki/Yacc
[docs-leex]: http://erlang.org/doc/man/leex.html
[docs-yecc]: http://erlang.org/doc/man/yecc.html
[docs-parsetools]: http://www.erlang.org/doc/apps/parsetools/
[docs-mix-compilers/0]: http://elixir-lang.org/docs/master/mix/Mix.html#compilers/0
[dragon-book]: http://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools
[stackoverflow-html-regex]: http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags
[wiki-lexical-analysis]: https://en.wikipedia.org/wiki/Lexical_analysis
[wiki-parsing]: https://en.wikipedia.org/wiki/Parsing
[wiki-lex]: https://en.wikipedia.org/wiki/Lex_(software)
[wiki-yacc]: https://en.wikipedia.org/wiki/Yacc
[docs-leex]: https://erlang.org/doc/man/leex.html
[docs-yecc]: https://erlang.org/doc/man/yecc.html
[docs-parsetools]: https://www.erlang.org/doc/apps/parsetools/
[docs-mix-compilers/0]: https://elixir-lang.org/docs/master/mix/Mix.html#compilers/0
[dragon-book]: https://en.wikipedia.org/wiki/Compilers:_Principles,_Techniques,_and_Tools
[stackoverflow-html-regex]: https://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags
[po-files]: https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html
[gnu-gettext]: https://www.gnu.org/software/gettext/
[gettext-for-elixir-parser-code]: https://github.com/elixir-lang/gettext/blob/e2e3d42edd2a8fa5aa2deada2e5779f122594e71/src/gettext_po_parser.yrl
Expand Down
16 changes: 8 additions & 8 deletions _posts/2015-06-19-handling-tcp-connections-in-elixir.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,18 +312,18 @@ We saw how to implement a GenServer that works as an interface to a TCP server.

Thanks for reading!

[docs-inet-setopts/2]: http://www.erlang.org/doc/man/inet.html#setopts-2
[docs-gen_tcp-recv/2]: http://www.erlang.org/doc/man/gen_tcp.html#recv-2
[docs-gen_tcp]: http://www.erlang.org/doc/man/gen_tcp.html
[docs-genserver-reply/2]: http://elixir-lang.org/docs/stable/elixir/GenServer.html#reply/2
[docs-connection]: http://hexdocs.pm/connection
[redis]: http://redis.io
[resp-specification]: http://redis.io/topics/protocol
[docs-inet-setopts/2]: https://www.erlang.org/doc/man/inet.html#setopts-2
[docs-gen_tcp-recv/2]: https://www.erlang.org/doc/man/gen_tcp.html#recv-2
[docs-gen_tcp]: https://www.erlang.org/doc/man/gen_tcp.html
[docs-genserver-reply/2]: https://elixir-lang.org/docs/stable/elixir/GenServer.html#reply/2
[docs-connection]: https://hexdocs.pm/connection
[redis]: https://redis.io
[resp-specification]: https://redis.io/topics/protocol
[eredis]: https://github.com/wooga/eredis
[eredis-comment]: https://github.com/wooga/eredis/blob/770f828918db710d0c0958c6df63e90a4d341ed7/src/eredis_client.erl#L1-L21
[postgrex]: https://github.com/ericmj/postgrex
[mongodb]: https://github.com/ericmj/mongodb
[orientdb]: http://orientdb.com/orientdb/
[orientdb]: https://orientdb.com/orientdb/
[fishcakez]: https://github.com/fishcakez
[connection]: https://github.com/fishcakez/connection
[poolboy]: https://github.com/devinus/poolboy
10 changes: 5 additions & 5 deletions _posts/2015-10-10-compile-time-work-with-elixir-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ experimented with using macros to do compile-time work. We saw a non-real-world
example and then a real-world example taken from the gettext Elixir library.


[understanding-macros-sasa-juric]: http://www.theerlangelist.com/2014/06/understanding-elixir-macros-part-1.html "Understanding Elixir Macros by Saša Jurić"
[understanding-macros-sasa-juric]: https://www.theerlangelist.com/2014/06/understanding-elixir-macros-part-1.html "Understanding Elixir Macros by Saša Jurić"
[metaprogramming-elixir]: https://pragprog.com/book/cmelixir/metaprogramming-elixir "Metaprogramming Elixir"
[macro-chapter-elixir-website]: http://elixir-lang.org/getting-started/meta/macros.html "Chapter on macros from Elixir's \"Getting Started\" guide"
[docs-macro-expand-2]: http://elixir-lang.org/docs/stable/elixir/Macro.html#expand/2 "Docs for Macro.expand/2"
[docs-macro-expand_once-2]: http://elixir-lang.org/docs/stable/elixir/Macro.html#expand_once/2 "Docs for Macro.expand_once/2"
[docs-macro-prewalk-3]: http://elixir-lang.org/docs/stable/elixir/Macro.html#prewalk/3 "Docs for Macro.prewalk/3"
[macro-chapter-elixir-website]: https://elixir-lang.org/getting-started/meta/macros.html "Chapter on macros from Elixir's \"Getting Started\" guide"
[docs-macro-expand-2]: https://elixir-lang.org/docs/stable/elixir/Macro.html#expand/2 "Docs for Macro.expand/2"
[docs-macro-expand_once-2]: https://elixir-lang.org/docs/stable/elixir/Macro.html#expand_once/2 "Docs for Macro.expand_once/2"
[docs-macro-prewalk-3]: https://elixir-lang.org/docs/stable/elixir/Macro.html#prewalk/3 "Docs for Macro.prewalk/3"

[gettext-for-elixir]: https://github.com/elixir-lang/gettext "gettext for Elixir"

Expand Down
8 changes: 4 additions & 4 deletions _posts/2015-12-05-using-c-from-elixir-with-nifs.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ This was a long post, but I hope I covered most of the NIF universe in it. As yo

Thanks for making it this far!

[docs-erlang-load_nif-2]: http://www.erlang.org/doc/man/erlang.html#load_nif-2
[docs-erlang-load_nif-2]: https://www.erlang.org/doc/man/erlang.html#load_nif-2
[devinus-markdown]: https://github.com/devinus/markdown
[sasa-juric-ports]: http://theerlangelist.com/article/outside_elixir
[erl-nif-docs]: http://www.erlang.org/doc/man/erl_nif.html
[mix-compilers-0]: http://elixir-lang.org/docs/stable/mix/Mix.html#compilers/0
[sasa-juric-ports]: https://theerlangelist.com/article/outside_elixir
[erl-nif-docs]: https://www.erlang.org/doc/man/erl_nif.html
[mix-compilers-0]: https://elixir-lang.org/docs/stable/mix/Mix.html#compilers/0
6 changes: 3 additions & 3 deletions _posts/2017-08-15-the-guts-of-a-property-testing-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ Most ideas in StreamData are not original and are taken partially from QuickChec
[quickcheck-paper]: http://www.cs.tufts.edu/~nr/cs257/archive/john-hughes/quick.pdf
[elixir]: https://elixir-lang.org
[library-haskell]: https://hackage.haskell.org/package/QuickCheck
[library-erlang]: http://www.quviq.com/products/
[library-erlang]: https://www.quviq.com/products/
[library-clojure]: https://github.com/clojure/test.check
[library-python]: http://hypothesis.works
[library-python]: https://hypothesis.works
[library-scala]: https://www.scalacheck.org
[streamdata]: https://github.com/whatyouhide/stream_data
[hypothesis-article]: http://hypothesis.works/articles/how-hypothesis-works/
[hypothesis-article]: https://hypothesis.works/articles/how-hypothesis-works/
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
<channel>
<title>{{ site.name | xml_escape }}</title>
<description>{{ site.description | xml_escape }}</description>
Expand Down
2 changes: 1 addition & 1 deletion tags/elixir/feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<rss version="2.0" xmlns:atom="https://www.w3.org/2005/Atom">
<channel>
<title>{{ site.name | xml_escape }} - Elixir</title>
<description>Posts about Elixir from Andrea Leopardi's blog</description>
Expand Down

0 comments on commit 50b6ec2

Please sign in to comment.