Non-blocking sleep in ES7 (or, in ES6, setTimeout as a promise).
Asleep SDK for React Native
Prevent the screen of the mobile device from falling asleep.
Watches for the computer to fall asleep and then triggers an event callback on wakeup
Asleep React Native Alarm using iOS AlarmKit (iOS 26+)
A module provide getting system uptime, that don't pause while device is asleep
An autonomous agent to hold your fort while you're asleep
milk-wash-asleep
👉 https://hyper.fun/c/carbon-icon-asleep/1.3.0
asleep-eaten-average
asleep-picture-lamp0
asleep-hungry-room5
asleep-fruit
A tiny CLI tool to help save costs in development environments when you're asleep and don't need them!
Prevent the screen of the mobile device from falling asleep.
asleep-shadow-capital0
lift-driving-asleep-primitive
asleep-mistake
agree-building-asleep
asleep-lucky-mainly
asleep-recognize-web3-go
been-lunch-web3-asleep
👉 https://hyper.fun/c/carbon-icon-asleep-filled/1.3.0
here-asleep-strip7
An advanced suspend-aware sleep utility with live countdown and flexible datetime parsing
Sleep/wake cycle simulation for ExoGenesis Omega - memory consolidation during SWS/REM
Trait debugger backend for IDE interactions.
allows using ios ImpactFeedback API to generate haptic device vibrations
An arena allocator
Companion procedural macro crate for bookcase_alloc
Companion proc macro crate for bookcase
Safe, ergonomic Rust bindings for Box2D v3
Cargo tool for automating use of the solar framework used for building rust projects.
Lightweight cron expressions parser and time series generator
Keep a machine from suspending while another machine is active
Rust library for controlling Dutch and Dutch Ascend networked speakers
Dynopoker is a gem that will make your ruby based heroku app self pinging system, preventing single dyno from falling asleep
Do not let your machine fall asleep.
Requests websites so they won't fall asleep. Like on Heroku.
Ruby String's native #match method will only return the first instance of a pattern match. This gem provides the #match_all method, returns all instances of a pattern match in a String as an array. EXAMPLES: # Given the test string: string = "My cat is asleep on the couch. Now the cat is playing." # #match only returns the first match: string.match(/cat/) => #<MatchData "cat"> # However, I've found I often want to match _all_ instances of the pattern, and # then e.g. iterate through them and do something with them. #match_all does that: string.match_all(/cat/) => [ [0] #<MatchData "cat">, [1] #<MatchData "cat"> ] This is especially useful if, e.g. you want to interrogate the matches to find out their starting/ending indexes within the string, etc