soyer

Results 48 comments of soyer

It's an Octet String as defined in PKCS#3. https://github.com/st3fan/osx-10.9/blob/master/CommonCrypto-60049/lib/CommonDH.c#L124 https://github.com/samdmarshall/apple-corecrypto/blob/df1ffe4ae19dcb7c320d336d7f5f28c9af6daa09/ccdh/corecrypto/ccdh.h#L331 Maybe the java's X509EncodedKeySpec can use it.

You can find some code to set the Kiyo Pro custom controls: https://github.com/soyersoyer/kiyoproctrls

My vue-smooth-dnd.d.ts file: ```typescript declare module 'vue-smooth-dnd' { import Vue from 'vue'; type Payload = any; interface DropResult { removedIndex: number; addedIndex: number; payload: Payload; element: Element; } interface DragEvent...

There are good news too. They fixed the scatter gather usb bug in [5.10.103](https://github.com/raspberrypi/linux/commit/a538fd26f82b101cb6fb963042f3242768e628d4) Now the mt7612u is working well without the disable_usb_sg=1 parameter.

Of course! I am using a COMFAST CF-WU782AC adapter. My hostapd.conf: ``` interface=wlan0 ssid=ssid0 bssid=e2:aa:bb:cc:dd:ee hw_mode=a channel=36 ieee80211n=1 ht_capab=[LDPC][SHORT-GI-20][SHORT-GI-40][HT40+][GF][TX-STBC][RX-STBC1] ieee80211ac=1 vht_capab=[RXLDPC][SHORT-GI-80][TX-STBC-2BY1][RX-STBC-1][MAX-A-MPDU-LEN-EXP3][TX-ANTENNA-PATTERN][RX-ANTENNA-PATTERN] vht_oper_chwidth=1 vht_oper_centr_freq_seg0_idx=42 ieee80211d=1 #ieee80211h=1 country_code=US wmm_enabled=1 macaddr_acl=0 auth_algs=1 wpa=2...

It works well with my rasPi4b. I had to disable the usb_sg. I like this setup because it can route near gigabit (with a tp-link ue300), my mobile devices have...

I think they wrote about these commits: https://github.com/openwrt/mt76/commit/fae295af31eb463ee3654c5c2a29ec4fe3ba03e2 https://github.com/openwrt/mt76/commit/e0f9479bf8937bc0ff7322043a7a0554b44af29f https://github.com/openwrt/mt76/commit/822e1135e7e1daba426972b8de6627f17158d8f7

You can query the host on js side too. `var ws = new WebSocket('ws://' + window.location.host + '/ws/');`