mirror of
https://github.com/bspeice/speice.io
synced 2024-11-05 01:28:09 -05:00
Light maintenance
This commit is contained in:
parent
7f44a54605
commit
38201e21a1
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,3 +2,5 @@ _site/
|
||||
.swp
|
||||
.sass-cache/
|
||||
.jekyll-metadata
|
||||
.bundle/
|
||||
vendor/
|
47
Gemfile.lock
47
Gemfile.lock
@ -1,36 +1,26 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (5.1.5)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (~> 0.7)
|
||||
minitest (~> 5.1)
|
||||
tzinfo (~> 1.1)
|
||||
addressable (2.5.2)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
addressable (2.7.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
colorator (1.1.0)
|
||||
colorize (0.8.1)
|
||||
concurrent-ruby (1.0.5)
|
||||
em-websocket (0.5.1)
|
||||
eventmachine (>= 0.12.9)
|
||||
http_parser.rb (~> 0.6.0)
|
||||
ethon (0.11.0)
|
||||
ethon (0.12.0)
|
||||
ffi (>= 1.3.0)
|
||||
eventmachine (1.2.5)
|
||||
ffi (1.9.21)
|
||||
ffi (1.11.3)
|
||||
forwardable-extended (2.6.0)
|
||||
html-proofer (3.8.0)
|
||||
activesupport (>= 4.2, < 6.0)
|
||||
html-proofer (3.14.1)
|
||||
addressable (~> 2.3)
|
||||
colorize (~> 0.8)
|
||||
mercenary (~> 0.3.2)
|
||||
nokogiri (~> 1.10.4)
|
||||
mercenary (~> 0.3)
|
||||
nokogiri (~> 1.10)
|
||||
parallel (~> 1.3)
|
||||
rainbow (~> 3.0)
|
||||
typhoeus (~> 1.3)
|
||||
yell (~> 2.0)
|
||||
http_parser.rb (0.6.0)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jekyll (3.4.3)
|
||||
addressable (~> 2.4)
|
||||
colorator (~> 1.0)
|
||||
@ -59,14 +49,14 @@ GEM
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
ruby_dep (~> 1.2)
|
||||
mercenary (0.3.6)
|
||||
mini_portile2 (2.3.0)
|
||||
minitest (5.11.3)
|
||||
nokogiri (1.10.4)
|
||||
mini_portile2 (~> 2.3.0)
|
||||
parallel (1.12.1)
|
||||
mini_portile2 (2.4.0)
|
||||
nokogiri (1.10.5)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
parallel (1.19.1)
|
||||
pathutil (0.16.1)
|
||||
forwardable-extended (~> 2.6)
|
||||
public_suffix (3.0.2)
|
||||
public_suffix (4.0.1)
|
||||
rainbow (3.0.0)
|
||||
rb-fsevent (0.9.8)
|
||||
rb-inotify (0.9.10)
|
||||
ffi (>= 0.5.0, < 2)
|
||||
@ -78,13 +68,10 @@ GEM
|
||||
sass-listen (4.0.0)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
thread_safe (0.3.6)
|
||||
trollop (2.1.2)
|
||||
typhoeus (1.3.0)
|
||||
typhoeus (1.3.1)
|
||||
ethon (>= 0.9.0)
|
||||
tzinfo (1.2.5)
|
||||
thread_safe (~> 0.1)
|
||||
yell (2.0.7)
|
||||
yell (2.2.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
@ -97,4 +84,4 @@ DEPENDENCIES
|
||||
rb-fsevent (= 0.9.8)
|
||||
|
||||
BUNDLED WITH
|
||||
1.16.1
|
||||
1.17.3
|
||||
|
@ -1,40 +0,0 @@
|
||||
---
|
||||
layout: post
|
||||
title: "4 reasons I think Python is broken"
|
||||
description: "but are super technical and not super convincing."
|
||||
category:
|
||||
tags: []
|
||||
---
|
||||
|
||||
I'm going to put on my hipster hot takes hat for a moment:
|
||||
|
||||
*I think Python has kinda made some mistakes.*
|
||||
|
||||
|
||||
![Hipster](/assets/images/4-reasons-python/hipster.jpg)
|
||||
> [Not me because I can't grow facial hair but wish I could][hipster]
|
||||
|
||||
And I get it; [there are two kinds of languages][stroustrup], and Python definitely
|
||||
belongs to the "languages people complain about because they actually use them" camp.
|
||||
That said, these are the reasons why I'm not super thrilled about Python and am
|
||||
avoiding it. The time has come to acknowledge that there are some bits of Python
|
||||
that qualify as mistakes.
|
||||
|
||||
In no particular order, allow me to present my issues with Python.
|
||||
|
||||
# 1: No Boolean operator overloads
|
||||
|
||||
Language reserves `and`, `or` as keywords. Leads to issues in Pandas
|
||||
where special care must be taken because bitwise `~` takes precedence over
|
||||
comparison operators (`<`, `==`).
|
||||
|
||||
# 2: Poorly specified overloads
|
||||
|
||||
Specifically, `x < y` is not necessarily equivalent to `y > x`.
|
||||
|
||||
# 3: Global variable scoping
|
||||
|
||||
|
||||
|
||||
[hipster]: https://flic.kr/p/Tg9Cdv
|
||||
[stroustrop]: https://en.wikiquote.org/wiki/Bjarne_Stroustrup
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
layout: post
|
||||
title: "Another Rust CI Template"
|
||||
description: "...so you can put the machines to work for you. 🤖"
|
||||
category:
|
||||
tags: [rust]
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user