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
*** /sbin/dhclient-script Mon Jun 20 02:28:18 2022 | |
--- /etc/dhclient-script Sun Jun 26 06:04:21 2022 | |
*************** | |
*** 174,179 **** | |
--- 174,193 ---- | |
if [ "$new_ip_address" = "$router" ]; then | |
route add default -iface $router >/dev/null 2>&1 | |
else | |
+ # OHV PATCH <<< | |
+ # OVH dhclient sends network settngs that make router unreachable from |
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
# Stolen from https://github.com/matplotlib/matplotlib/issues/12417 | |
## 1 | |
legend = plt.legend() | |
for legobj in legend.legendHandles: | |
legobj.set_sizes([64]) | |
## 2 | |
def update(handle, orig): | |
handle.update_from(orig) |
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
👋🏻Intro | |
I’ve been in software development for 10 years and worked with different technologies | |
during that time (databases, languages, frameworks, clouds and tools). I’ve worked | |
in different roles from a programmer to a tech lead and solved problems of different | |
kinds and levels: from coding to communicating with stakeholders, designing system | |
architecture, specification decomposing, terms estimation and team management. | |
🔎What I’m looking for | |
Currently I’d like to consider the following options: | |
* Middle frontend developer (Typescript/Clojurescript/JavaScript, React, Vue) I’m not |
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
#include <utility> | |
#include <iterator> | |
namespace ext | |
{ | |
namespace details | |
{ | |
template <typename TCollection> | |
struct const_respective_iterator | |
{ |
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
#include <type_traits> | |
namespace ext | |
{ | |
namespace details | |
{ | |
template <typename T> | |
struct value_type | |
{ | |
using type = typename std::remove_reference<T>::type::value_type; |
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
#include <iterator> | |
#include <type_traits> | |
namespace ext | |
{ | |
template <typename TCounter> | |
struct RangeIterator | |
{ | |
explicit RangeIterator(TCounter const current): | |
m_current(current) |
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
#pragma once | |
#include <DB/Common/SipHash.h> | |
#include <Poco/SHA1Engine.h> | |
#include <Poco/MD5Engine.h> | |
#include <mysqlxx/DateTime.h> | |
#include <DB/Core/StringRef.h> | |
#include <utility> |