Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
TMSZ
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
TMSZ
3y ago
It would be more proper to compare baresip to PJSIP/pjsua. I'm using both and both are great, with multiple unique features. The strong point for pjsip would be in my opinion pjmedia conference bridge (easy to use and powerful mix
2.
▲
by
TMSZ
4y ago
Well, consumer SIP is mostly dead. 20 years ago mobile calls were quite expensive, now they are basically free. Also the marked matured, people are more educated in general and using default port was never a good idea.
3.
▲
by
TMSZ
4y ago
V.23 FSK is just the name of modulation. You can have CLIP receiver as separate IC ( https://www.microsemi.com/product-directory/caller-id/4305-m... ) or as some DFT code with Goertzel algorithm with maybe 0.1 MIPS
4.
▲
by
TMSZ
4y ago
The other caveat is that time spent configuring, troubleshooting and later maintaining them would be worth much more than 10 dollars. Their use is discouraged by many SIP providers ( https://teamhelp.sipgate.co.uk/hc/en-
5.
▲
by
TMSZ
4y ago
I remember these phones had some interoperability issue: https://answers.microsoft.com/en-us/mobiledevices/forum/all/... (technically all according to specification, but often not working for incoming ca
6.
▲
by
TMSZ
4y ago
I do believe that Cisco SIP implementation in 7000 series phones is non-interoperable by design. One major issue is that they are sending SIP messages from different port than the port they are receiving on. Because of this they practically
7.
▲
by
TMSZ
4y ago
There are some USB "phones" - basically composite USB devices with audio and HID, where HID is used to handle keypad and display (if present). I'm using very cheap EX-03 "Skype" phone: https://tomeko.net&
8.
▲
by
TMSZ
9y ago
I think Delphi Started has same limitation as C++ Builder Starter - removed most of debugging functionality (e.g. local variables window). It may be not critical with small applications, but I would rather have "no commercial", no
9.
▲
by
TMSZ
9y ago
Not necessary much higher. I've measured screen flickering in Lenovo T500 (probably one of the oldest laptops with LED backlight) with small solar cell and oscilloscope and it's 220Hz, with lowest brightness setting only 100Hz (al
10.
▲
by
TMSZ
10y ago
> Very few SoCs have internal switch mode controllers. That's why PMUs are used. Just look at bottom side of the PCB - there are three coils, two of them very close to the chip looking pretty much like PMU. > It is going to eithe
11.
▲
by
TMSZ
10y ago
Nope. There is chip looking like PMU on board with at least two output power rails. For VoCore 1 there were two MT3410L converters, one for 3.3V and one for 1.8V. With switching converter total power consumption should be close to SoC power
12.
▲
by
TMSZ
10y ago
Code::Blocks was fine for me, simple and lightweight, included in many distros and suitable for cross-platform Windows/Linux work. Also: KDevelop, Eclipse, Netbeans.
13.
▲
by
TMSZ
10y ago
With a piece of kynar wire same pin can be connected on "old" ESP-01. Little hard to solder though.
14.
▲
by
TMSZ
10y ago
ESP8266 has ADC. It does not have DAC, however for some purposes (e.g. low quality audio over WiFi) I2S output can be used with DMA as PWM output. Isn't IPv6 supported for ESP8266 with lwip?
15.
▲
by
TMSZ
10y ago
There are few viewers/editors listed at http://softwarerecs.stackexchange.com/questions/18839/json-v... JSONedit should work well with files up to few MBs, with larger files loading time may be not acceptable
16.
▲
by
TMSZ
10y ago
There are few ways of inserting comments: http://stackoverflow.com/questions/244777/can-i-use-comments... If you do not care too much about exchanging data with other apps then parser/generator supporting jav
17.
▲
by
TMSZ
10y ago
I hope this would be JSONedit as it is mine ;) - http://tomeko.net/software/JSONedit/ There are also - I think two different - plugins for Notepad++, JsonViewer: https://jsonviewer.codeplex.com/ ,
18.
▲
by
TMSZ
10y ago
Different uses I guess. I'm using JSON for configuration purposes (~100kB...4MB PABX config, but Azure seems to be more popular example) and it's read-modify-update cycle > 95% of the time.
19.
▲
by
TMSZ
10y ago
(Emacs) That's weird. Smart editor should render only portion visible to user and number of lines should not make any difference for highlighter. I've checked Scintilla with 3MB single-line JSON and using C++ lexer (actually: &quo
20.
▲
by
TMSZ
11y ago
JSONedit has (experimental) C++ code generator that serializes and deserializes JSON to/from object (default name for class is "Settings" and it uses json-cpp 0.5 as parser and generator): http://tomeko.net/so