#buko #buko-onboarding #buko-dashboard #buko-reporting
[[2025-01-11]]
- Admin - Internal Buko Users
Here is the best setup (I think so :D) for Keychron + Linux
Keychron Keyboards on Linux use the hid_apple driver (even in Windows/Android mode), both in Bluetooth and Wired modes.
By default, this driver uses the F-keys as multimedia shortcuts and you have to press Fn + the key to get the usual F1 through F12 keys.
In order to change this, you need to change the fnmode parameter for the hid_apple kernel module.
Here's some documentation on it, but a quick summary can be found below:
| import { Request, NextFunction } from 'express' | |
| import grabUser from '../helpers/grabUser' | |
| export const userRequired = async (req: Request, res, next: NextFunction) => { | |
| const authorization = req.headers.authorization | |
| if (authorization == null || authorization === '') { | |
| return res.status(401).send({ msg: 'Authorization header required' }) |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| #!/usr/bin/env python | |
| import base64 | |
| from Crypto import Random | |
| from Crypto.Cipher import AES | |
| BS = 16 | |
| pad = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS) | |
| unpad = lambda s : s[0:-ord(s[-1])] |
Needs to update the windows to install the KB2919355 windows update and install the Visual Studio Build Tools
Check the Visual C++ build tools and make sure in the Optional Windows 10 SDK and Visual C++ tools for Cmake are checked.