This file contains hidden or 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
🚗 TẨU SẠC TỰ NGẮT NGUỒN KHI XE TẮT MÁY – XGreen Vf3 PowerGuard 🚗 | |
Hiện nay, với dòng xe VinFast VF3, việc lắp đặt tẩu sạc TỰ NGẮT NGUỒN ĐIỆN khi xe tắt máy là rất cần thiết. Thiết bị sử dụng nguồn Type-C có sẵn trên xe để điều khiển tẩu sạc lấy điện trực tiếp từ ắc quy. Phiên bản dành cho thợ thực hiện, đảm bảo an toàn hơn việc gắn bảng cầu chì. | |
─────────────────────────────────── | |
🔹 VÌ SAO NÊN LẮP ĐẶT? | |
• Bảo vệ ắc quy: Tránh hao điện khi quên tắt camera hành trình, bơm xe… | |
• Đảm bảo quyền lợi bảo hành: Không can thiệp vào hệ thống điện nguyên bản của xe. |
This file contains hidden or 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 time, sys | |
from Quartz.CoreGraphics import CGEventCreateMouseEvent | |
from Quartz.CoreGraphics import CGEventCreate | |
from Quartz.CoreGraphics import CGEventPost | |
from Quartz.CoreGraphics import CGEventGetLocation | |
from Quartz.CoreGraphics import kCGEventMouseMoved | |
from Quartz.CoreGraphics import kCGEventLeftMouseDown | |
from Quartz.CoreGraphics import kCGEventLeftMouseUp | |
from Quartz.CoreGraphics import kCGMouseButtonLeft | |
from Quartz.CoreGraphics import kCGHIDEventTap |
This file contains hidden or 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
defmodule MyApp.Migration do | |
@moduledoc """ | |
Additional helpers for PostgreSQL. | |
""" | |
import Ecto.Migration, only: [execute: 2] | |
defmacro __using__(_) do | |
quote do | |
use Ecto.Migration |
As a note, if you find errors with the math below, please let me know.
This cost comparison only compares cost per I/O operation. It does not discuss storage or transit costs.
- Intel 320 series SSD, 300GB specs: http://www.intel.com/content/www/us/en/solid-state-drives/ssd-320-specification.html
This file contains hidden or 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
with ignored(OSError): | |
os.remove('file.txt') | |
# izip, iter(partial(f, 1), '') | |
# vars(obj) |
This file contains hidden or 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 abc import ABC, abstractmethod | |
class Validator(ABC): | |
def __set_name__(self, owner, name): | |
self.private_name = f'_{name}' | |
def __get__(self, obj, objtype=None): | |
return getattr(obj, self.private_name) | |
This file contains hidden or 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
def cmd(cm: str): | |
import subprocess | |
import re | |
return subprocess.run(re.compile("\s+").split(cm)) |
The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.
You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.
- Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
NewerOlder