Sh Lin
Sh Lin
Currently we have 300+ categories listing as a tree. It takes about 15~20 seconds to update for every single drag in the admin panel. I was able to cut it...
We're using AWS EC2+ECS for production. Every EC2 instance has 4 cores, where ECS places one task(containers) to each of them. In the container, Falcon is forked to 5 processes...
Take care. We use dumb-init as container entrypoint to rewrite and forward SIGTERM with SIGINT. It's because Puma once had issue handling SIGTERM, which makes GKE unhappy about container status....
Is it the same to start Falcon in hybrid mode to use thread for request handling? Also, I'd like to know how connection pool plays in this part. Does it...
We're using closure_tree 7.0.0 with rails 5.1.6 and ruby 2.5.1. The same problem exists. ``` # ```
Have you checked out the test files? The 'App 4' is what you're looking for. File records in each app have their own communication security setting. To utilize key cipher...
I feel the same for not making real project, but those test files actually run against real RFID cards. That said, you can see them as mini projects. Also, make...
It's platform-related issue. `to_gv` uses `'string'.to_s.inspect.gsub( "\\\\", "\\" )` to escape string, and `inspect` behaves differently on Windows. ```bash c:\script>ruby test.rb "\u4F60\u597D" [user@i2 ~]$ ruby test.rb "你好" ``` reference: http://stackoverflow.com/questions/34454084/ruby-sometimes-prints-unicode-escaped-chars-instead-of-the-chars-themselves-why
Good to hear that. I once wanted to write an unified NFC(A+B+F) library for MFRC522 and PN512, but I don't have time to do that. It'd be great if you...
After instance initialization, the reset pin you selected (BCM25) should be in HIGH OUT, and the voltage should be detectable using a multimeter. I suggest that you read MFRC522 version...