|
Today we want to talk about two recent Kubernetes vulnerabilities (CVE-2019-11247 and CVE-2019-11249) and how you can address them.
|
|
Heather Hansman, writing for Outside Online: “Americans have gone west to escape the ills of society while bringing the ills of society with them, pretty much since Manifest Destiny; one regional myth was that, once here, everyone would have the chance to experience something wild. In reality, of course, settlement always brought land-access issues, prompted human displacement, and fueled socioeconomic disparity. That remains true now, ..
|
|
This article is more about understanding the Event Emitters in Angular and Ionic. Data flow is the most important when you build an application to communicate with components. Event Emitters will help you to even bind using @Input @Output decorators. Here is a simple example to display and update the user profile using Angular Event Emitters. For this demo I choose Ionic framework for better experience. Take a quick look at the live demo.
|
|
Canasta is a card game that was created by two bridge players in 1939 and was extremely popular at the end of the 1940s, "In the peak year of the game one hundred million packs of cards were sold" - When Canasta Was the Craze, article from 1952. It is one of my absolute favorite [...]
|
|
Canasta is a card game that was created by two bridge players in 1939 and was extremely popular at the end of the 1940s, "In the peak year of the game one hundred million packs of cards were sold" - When Canasta Was the Craze, article from 1952. It is one of my absolute favorite [...]
|
|
The testing package is one of my favourite packages in the Go standard library, not just because of its low noise approach to unit testing, but, over the lifetime of Go, it has received a steady stream of quality of life improvements driven by real world usage. The most recent example of this is, in […]
|
|
Six Tips for Interviewing Software Engineers When You Aren't Technical
-
fuzzyblog.io
-
6 years ago
-
eng
Interviewing engineers when you aren't one is a regular human resources task that tends to give non technical folk fits and for good reasons. 1. Focus on What You Can Interview them About To the non engineer, our job is all about coding but that's actually only a part of what an engineer does. Engineers exist in the same ecosystem as any employee and there are all kinds of questions about work practices that need to be asked. For exampl....
|
|
Written: 3/10/2020 @ 4:25 PM EST When changes are made then I will put an update time on this. Preparation Here are the quick bullet points: This isn't the apocalypse; but it is going to be a bad time. The mortality rates vary by age but average many times worse than flu. Minimizing non essential travel and trips out is smart. Keep three feet separation between people as a general guideline. Having extra food on hand is worthwhile; h....
|
|
DuckDB: SQLite for Analytics | Hacker News . GitHub - ZetloStudio/ZeQLplus: Open Source Terminal SQLite Database Browser . Inserting 130M SQLite rows per minute from a scripting language | Hacker News . Inserting One Billion Rows in SQLite Under A Minute - blag . LiteCLI – A user-friendly command-line client for SQLite database (Hacker News) . SQLite As An Application File Format . Zumero: Efficient sync by using multiple SQLite files..
|
|
Fixing Validation Errors on my 2019 Free File Fillable Forms Federal Tax Return
-
www.joehxblog.com
-
6 years ago
-
eng
I like to be hands-on with my finances, including my taxes. I also like to fill out forms. That’s why I like to use Free File Fillable Forms from the IRS.
|
|
Stop telling me to exercise: dealing with a mild short-term depression
-
www.rasulkireev.com
-
6 years ago
-
eng
In this post, I wanted to share some of my reflections on the depressive state that I went through. I'd like to share some of my thoughts that were running through my head and what helped me get over.
|
|
Here comes another life update. My biological clock seems to have chosen to remind me to post these updates once every 6 months, with seasonal changes.
|
|
A call to growing tech companies — how to move the needle on gender equality together
-
snyk.io
-
6 years ago
-
eng
This post focuses on women's opportunity in the tech workforce, and how rapidly-growing companies can make a difference.
|
|
A system of hooks in Scribunto can be reasonable to use if you have a wikifarm with synced code that occasionally needs to be slightly modified on one or more wikis. I found the system more complicated than it was worth, but I’m documenting it here before I remove it.
|
|
A system of hooks in Scribunto can be reasonable to use if you have a wikifarm with synced code that occasionally needs to be slightly modified on one or more wikis. I found the system more complicated than it was worth, but I’m documenting it here before I remove it.
|
|
On April 5 - 6, 2019 I spent a day in the hospital for a surgery. This post is a dive into the insurance and money for the visit.
|
|
Popular Python library, urllib3, subject to a denial of service vulnerability
-
snyk.io
-
6 years ago
-
eng
Urllib3, a powerful and popular Python http client, is subject to a newly discovered denial of service vulnerability.
|
|
Today is a short one, just pointers to some datasets for Machine Learning data sets that I keep losing. Kaggle LionBridge.ai Million Song Dataset Synced Review Twitter Sample Stream
|
|
关于 Gradle 中的基础、Task 等知识,可以看我的 上一篇文章 。 Gradle 中的依赖 Gradle 中的依赖可以分为脚本文件依赖、插件依赖以及包依赖。 脚本文件依赖 随着项目结构的复杂,一个 build.gradle 已经无法满足我们的需求了,尤其是对依赖库版本的配置,如果多个 project 都需要用到某个依赖库,稍有不慎版本就会错乱,从而引发一些问题。 此时我们期望可以把所有用到的依赖库版本都配置在同一个文件中,build.gradle 使用这个文件中的版本来依赖相应的版本,Gradle 提供了 apply 方法来依赖其他文件。 apply from: 'config.gradle' 我们可以在 build.gradle 文件中添加上述代码来依赖 config.gradle 文件,这样就可以把这个文件中的设置应用到对应的 Project 中去, 包括其中的 Task 。 插件依赖 插件依赖是指依赖 编译插件 ,最常见的是我们....
|
|
A byte of data has been stored in a number of different ways as newer, better, and faster mediums of storage are introduced. A byte is a unit of digital information that most commonly refers to eight bits. A bit is a unit of information that can be expressed as 0 or 1, representing logical state. In the case of paper cards, a bit was stored as the presence or absence of a hole in the card at a specific place. If we go even further back in....
|
|
Gradle 是用于构建项目的工具,除了管理依赖库之外,Gradle 还支持我们自己添加编译脚本、添加编译配置等控制项目的构建,通过提供 API 我们可以控制编译的每一步操作。 Gradle 目前使用最广泛的是 Android 项目的构建 ,几年前 Google 推出 Android Studio 的同时也把它也推选为默认的构建工具,因此我们也经历了从 Maven 到 Gradle 这一痛苦的转变过程,每天对着满屏的编译失败信息怀疑人生。 实际上 Gradle 也确实对开发者很不友好,用 Gradle 你能遇到各种各样的问题,版本混乱到无以复加,互相还不兼容,甚至对 Android Studio 都有版本要求。不过几乎所有的问题都能 Google 到答案,而我们也能看到确实在逐渐变好。 关于 Gradle 中的依赖与自定义插件,可以点此看我的 下一篇文章 。 Gradle 基本原理 我们知道 Gradle 是一种以 Groovy 语言 为基础的 自动化构....
|
|
I recently had this situation in Python and Redis : redis.lpush(kafka_topic_name, current_filename) redis.exceptions.ResponseError: WRONGTYPE Operation against a key holding the wrong kind of value So I did my normal deal of debugging by adding: import pdb and then a: pdb.set_trace() before the lpush call and I tried it manually by typing out redis.lpush(kafka_topic_name, current_filename) ENTER and it, naturally, wo....
|
|
Repository: @knadh/listmonk GitHub release page: v0.5.0-alpha This release has significant changes including several important bug fixes. listmonk now supports public forms that can be used on public webpages to allow users to signup to mailing lists. This can be found under Lists > Forms.
|
|
The Laughing Man 笑(わらい) い 男(おとこ) (warai otoko) is a fictional character in the anime series Ghost in the Shell: Stand Alone Complex . This lil’ project is an animated SVG using CSS transforms to rotate the text. The Laughing Man logo is an animated image of a smiling figure wearing a cap, with circling text quoting a line from Salinger’s novel The Catcher in the Rye , which reads: “I thought what I’d do was, I’d pretend I wa....
|
|
When you know something well you always look to learn by analogy. Today's short topic is reloading the REPL (read-evaluate-print-loop) interactive console in Python and then contrast between Python and Rails. And, yes, I get that Python is a language and Rails is a framework but where you tend to work directly in the Python console, you also tend to work directly in the Rails console (as opposed to the IRB Ruby console on which the Rails ....
|
|
A weekly Python podcast hosted by Christopher Bailey with interviews, coding tips, and conversation with guests from the Python community.
|
|
Emulating Ruby's Benchmark.real_time in Python Using a Context Manager
-
fuzzyblog.io
-
6 years ago
-
eng
One of the most confusing aspects of multi language programming is when you know how to do it in your preferred language and when you are trying to figure it out in your new language. And, as any reader of this blog knows, Ruby is always, always, always my preferred language. But, as my perspective on languages widens, I suspect you could say that: Ruby is my wife but I have a serious relationship with Python And I'm now flirting with R....
|
|
Here’s a list of my favorite podcasts. I listen to them with Pocketcast (Android and web app). Top 10 Les Pieds sur Terre (France Culture) Géopolitique (France Inter) Open Jazz (France Musique) The Daily (New York Times) La méthode scientifique (France Culture) + La conversation scientifique (France Culture) L’esprit public (France Culture) Affaires étrangères (France Culture) Hardware Addicts Linux Unplugged Dev’Obs (p7t.tech) English T....
|