This monorepo also contains many other crates:
We are developing a new desktop app for Ockam and I was wondering if you would be interested in getting super early access to it and maybe sharing some feedback about it?
It currently only runs on macOS so if you have a Mac and would like to try it ... let me know your email and I'll send you an invitation.
- You can email me at [email protected] w/ your information
- Our discord server can be found here: https://discord.gg/RAbjRr3kds
- Linkedin: https://www.linkedin.com/in/nazmulidris/
{ | |
"userConfigMajorVersion": 5, | |
"userConfigMinorVersion": 0, | |
"userConfigPatchVersion": 0, | |
"deviceName": "NAZ-UHK", | |
"doubleTapSwitchLayerTimeout": 250, | |
"iconsAndLayerTextsBrightness": 255, | |
"alphanumericSegmentsBrightness": 255, | |
"keyBacklightBrightness": 255, | |
"mouseMoveInitialSpeed": 1, |
/* | |
* Copyright (c) 2023 R3BL LLC | |
* All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
I have built the "TUI engine" & hosted it on github & published it to crates.io. Feel free to check them out here:
- github: https://github.com/r3bl-org/r3bl_rs_utils
- crates.io: https://crates.io/crates/r3bl_rs_utils/
The R3BL CMDR product, and R3BL BASE product have not been built. I am securing funding in order to be able to build them :). Here are some instructions on how you can run the demo on your own machine (macOS, Windows, or Linux).
Write a function which given a string argument, returns a count the occurences of each word in that string.
- A string represents a single line of text.
- A word is defined as a sequence of characters that are delimited by
,
, or;
, or.
. - To count as an occurence, there has to be a full word match (not a partial match).
the monkey donkey donkey monkey a face
/// Playground link: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=7f2ff17ff7ae239924d11698d12a69f9 | |
mod rate_limiter { | |
#[test] | |
fn test() { | |
const MAX_REQ_ALLOWED_IN_WINDOW: usize = 2; | |
const WINDOW_SIZE_MS: usize = 1000; | |
#[derive(Debug, /* deep copy support */ Clone, /* deep equality support */ PartialEq)] | |
enum RateLimitCheck { |
Link to delete their updater app account: https://help.updater.com/hc/en-us/requests/new?ticket_form_id=360000029672
Instructions:
- They must select "California Consumer Privacy Act (CCPA)" from the dropdown menu (at the top)
- They must also select "Please delete my data and forget about me." from the dropdown menu (at the bottom).
- And finally click the Submit button.
test("test foo", async () => { | |
function createPromiseThatRejects(): Promise<void> { | |
return new Promise<void>((_, rejectFn) => { | |
setTimeout(() => { | |
rejectFn(new Error("Rejected")) | |
}, 1_000) | |
}) | |
} | |
expect(createPromiseThatRejects()).rejects.toThrow("Rejected") |
/* | |
* Copyright (c) 2022 R3BL LLC. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |