Car Model | Fuel Economy (km/L) | Mileage (km) | Price (KRW) | Reliability (score out of 10) | Features (score out of 10) | Total Score (out of 20) |
---|---|---|---|---|---|---|
Lexus ES 300h 2014 | 16.7 | 180,000 | 15,000,000 | 9 | 8 | 17 |
Lexus CT 200h Supreme 2015 | 22.2 | 81,000 | 19,500,000 | 9 | 9 | 18 |
Lexus IS 350 Executive 2014 | 10.1 | 95,000 | 17,700,000 | 7 | 8 | 15 |
Lexus ES 350 Supreme 2008 | 9.0 | 86,000 | 7,500,000 | 7 | 8 | 15 |
Lexus LS 460L Executive 2008 | 7.8 | 182,000 | 7,700,000 | 7 | 9 | 16 |
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
#!/usr/bin/env python3.8 | |
# | |
# Test #2 | |
# [email protected] | |
# | |
# Write a command-line program that prints out the sum of two non-negative integers as input arguments. | |
# Input arguments are UTF-8 encoded Korean characters only listed as '일이삼사오육칠팔구' and '십백천만억조', and also your program's output should be. | |
# The less you use ifs, the higher you get scored. Google Korean Numbering System if you are not familiar with. | |
#!/usr/bin/env python3.8 | |
import sys |
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
#!/usr/bin/env python3.8 | |
# | |
# Test #1 | |
# [email protected] | |
# | |
# Write a command-line program that prints out the sum of two non-negative integers as input arguments. | |
# You must not use any built-in BigInteger library or convert the inputs to integer directly. | |
import sys | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Ansible playbook to setup HTTPS using Let's encrypt on nginx. | |
The Ansible playbook installs everything needed to serve static files from a nginx server over HTTPS. | |
The server pass A rating on [SSL Labs](https://www.ssllabs.com/). | |
To use: | |
1. Install [Ansible](https://www.ansible.com/) | |
2. Setup an Ubuntu 16.04 server accessible over ssh | |
3. Create `/etc/ansible/hosts` according to template below and change example.com to your domain | |
4. Copy the rest of the files to an empty directory (`playbook.yml` in the root of that folder and the rest in the `templates` subfolder) |
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
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
from django.contrib import admin | |
from django.contrib.auth.models import User | |
class UserAdmin(admin.ModelAdmin): | |
fields = ('email', 'is_staff', 'is_superuser', 'is_active') | |
list_display = ('email', 'is_active', 'is_staff', 'is_superuser', 'date_joined',) | |
admin.site.register(User, UserAdmin) |
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="ko"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<!-- Meta, title, CSS, favicons, etc. --> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
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
<script type="text/javascript"> | |
let globalChristianClassId = null; | |
let globalChristianLevelId = null; | |
let globalChristianDutyId = null; | |
let globalOfferingServiceId = null; | |
let globalOfferingTypeId = null; | |
(function($) { | |
'use strict'; |
NewerOlder