PR: #54 (v2.4.0) Branch: v2.4.0 → beta Reviewers: Security, Performance, Quality, Gemini, Codex
VERIFIED: Issues Actually Introduced by PR #1500:
- Snapshot JSON parsing complexity (notes_controller.rb:38-80) - new code
- JSON parsing with bare rescue (notes_controller.rb:50-56) - silent failures
- get_value() falsy handling behavior (debatable if bug - intentionally returns falsy values)
VERIFIED: Fixed Within PR #1500:
- ✅ N+1 queries for staff roles (introduced commit 99aec49922, fixed commit 1b878d6c55)
- ✅ Lambda duplication (introduced commit 99aec49922, fixed commit a5819fec1d)
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
| // https://stackblitz.com/edit/react-aria-emoji-picker?file=src%2FEmojiPicker.tsx | |
| import { | |
| Autocomplete, | |
| Button, | |
| GridLayout, | |
| ListBox, | |
| ListBoxItem, | |
| Select, | |
| SelectValue, |
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
| <!-- Need to specify the `installLocation`. Can do this with a config plugin --> | |
| <!-- See `app.json` and `withAndroidManifestAttributes.js` below --> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.example.myapp" | |
| android:installLocation="auto"> | |
| ... | |
| </manifest> |
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
| { | |
| "cli": { | |
| "version": ">= 0.52.0" | |
| }, | |
| "build": { | |
| "development": { | |
| "developmentClient": true, | |
| "distribution": "internal" | |
| }, | |
| "sim-dev": { |
Patches to get https://framagit.org/StCyr/deck-react-native building
- Add Simulator profiles
- Remove
eas-cliandexpo-clidependencies - Reinstall dependencies
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
| /* | |
| * Convert `app.json` to `app.config.js` | |
| * Install `@expo/config-plugins` as a devDependency | |
| * Copy the `withAndroidApplicationAttributes` config plugin and related `addAttributesToApplication` function to `app.config.js` | |
| * Add a `plugins` section to reference the config plugin and specify the attribute to add | |
| * Build with `eas build -p android ...` | |
| */ | |
| import { AndroidConfig, withAndroidManifest } from "@expo/config-plugins"; | |
| function addAttributesToApplication(androidManifest, attributes) { |
/tmp$ git clone https://github.com/wodin/expo-zip-example
Cloning into 'expo-zip-example'...
remote: Enumerating objects: 38, done.
remote: Counting objects: 100% (38/38), done.
remote: Compressing objects: 100% (22/22), done.
remote: Total 38 (delta 15), reused 38 (delta 15), pack-reused 0
Receiving objects: 100% (38/38), 170.29 KiB | 369.00 KiB/s, done.
Resolving deltas: 100% (15/15), done.
/tmp$ cd expo-zip-example
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
| #!/usr/bin/env python3 | |
| import sys | |
| import csv | |
| import json | |
| from collections import OrderedDict | |
| # !type | |
| # !group_id | |
| # !group_name |
NewerOlder