I hereby claim:
- I am sdmg15 on github.
- I am sdmg15 (https://keybase.io/sdmg15) on keybase.
- I have a public key ASDReENYgSw8E69a3p0qpf5v0cVPm2RgcwULuZiCw58bMgo
To claim this, I am signing this object:
At Njangi, we value your privacy and are committed to protecting your personal information. This Privacy Policy explains how we collect, use, and protect your information when you use our app. By using Njangi, you agree to the collection and use of information as described in this policy. | |
1. Information We Collect | |
We collect the following types of information when you use our app: | |
Personal Information: When you create an account or sign up for our services, we may collect personal details such as your name, email address, phone number, and other relevant information. | |
Financial Information: To offer our savings and credit group features, we may collect financial data, such as your account balances, savings goals, credit group contributions, and other related financial details. |
// A helper function to determine the data model of the current platform | |
[[nodiscard]] constexpr const char* dataModelPlatform() { | |
if constexpr (sizeof(int) == 2 && sizeof(long int) == 8) { | |
if (sizeof(int*) == 2) { | |
return "ILP32"; | |
} | |
return "LLP64"; | |
} |
#include <iostream> | |
#include <utility> | |
#include <tuple> | |
template<typename T> | |
void printWithSpace(T v) { | |
std::cout << v << " "; | |
} |
syntax = "proto3"; | |
package FIX; | |
import "executionreport.proto"; | |
message NewOrderSingle { | |
string ClOrdID = 1; | |
string Instrument = 2; |
I hereby claim:
To claim this, I am signing this object:
git log --author="Linus Torvalds" --date=iso | perl -nalE 'if (/^Date:\s+[\d-]{10}\s(\d{2})/) { say $1+0 }' | sort | uniq -c|perl -MList::Util=max -nalE '$h{$F[1]} = $F[0]; }{ $m = max values %h; foreach (0..23) { $h{$_} = 0 if not exists $h{$_} } foreach (sort {$a <=> $b } keys %h) { say sprintf "%02d - %4d %s", $_, $h{$_}, "*"x ($h{$_} / $m * 50); }' | |
For a brief user-level introduction to CMake, watch C++ Weekly, Episode 78, Intro to CMake by Jason Turner. LLVM’s CMake Primer provides a good high-level introduction to the CMake syntax. Go read it now.
After that, watch Mathieu Ropert’s CppCon 2017 talk Using Modern CMake Patterns to Enforce a Good Modular Design (slides). It provides a thorough explanation of what modern CMake is and why it is so much better than “old school” CMake. The modular design ideas in this talk are based on the book [Large-Scale C++ Software Design](https://www.amazon.de/Large-Scale-Soft
All participants of DevOfFuture are expected to abide by our Code of Conduct, both online and during in-person events that are hosted and/or associated with DevOfFuture. The Pledge
In the interest of fostering an open and welcoming environment, we pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. The Standards
Examples of behaviour that contributes to creating a positive environment include:
default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam' | |
default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes' | |
default['sshd']['sshd_config']['PasswordAuthentication'] = 'no' |