Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. |
10th January 2023, 14:33 | #1 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Interesting off-site Projects
Hi guys,
Just came across a couple of projects that other members might be interested in. You can post any others you might find appropriate in this thread. EDIT: Projects mostly from here [CodeProject]:- https://www.codeproject.com/ Project: Small Visual Basic. https://github.com/VBAndCs/sVB-Small-Visual-Basic Cut down version of M$ Small Basic with added Visual Basic (VB6 like) similarities. Easy for kids (7 Y.O. and up) and beginners. RAD language, (Rapid Application Development), for easy and quick program production. Quote:
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 5th February 2024 at 16:21. |
|
10th January 2023, 14:40 | #2 | Link | ||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Project:
CodeProject.AI https://www.codeproject.com/AI/index.aspx Quote:
Quote:
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? |
||
21st April 2023, 15:42 | #3 | Link | |||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Previous post CodeProject.AI updated.
https://www.codeproject.com/Articles...I-the-easy-way Quote:
Quote:
Quote:
Code:
<html> <body> Detect the scene in this file: <input id="image" type="file" /> <input type="button" value="Detect Scene" onclick="detectScene(image)" /> <script> function detectScene(fileChooser) { var formData = new FormData(); formData.append('image', fileChooser.files[0]); fetch('http://localhost:5000/v1/vision/detect/scene', { method: "POST", body: formData }) .then(response => { if (response.ok) response.json().then(data => { console.log(`Scene is ${data.label}, ${data.confidence} confidence`) }); }); } </script> </body> </html> EDIT: Or perhaps it just finds a frame within a clip file.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 21st April 2023 at 15:51. |
|||
21st April 2023, 19:52 | #4 | Link | |
Registered User
Join Date: Oct 2001
Location: Germany
Posts: 7,428
|
Quote:
ike: 'in natur', 'on the road', 'at the beach',... this is usually used to tag/categorize content and based on the scene/environment support object&text detection. see: https://www.v7labs.com/blog/yolo-object-detection |
|
21st April 2023, 20:20 | #5 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
ArHa!, thats what it is.
It was the Scene Detection thingy that initially caught my attention.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? |
9th May 2023, 15:18 | #6 | Link | ||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Project:
CaptureManager SDK - Capturing, Recording and Streaming Video and Audio from Web-Cams https://www.codeproject.com/Articles...ng-and-Streami Quote:
Quote:
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? |
||
24th November 2023, 17:35 | #7 | Link | ||||||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
ESP32 DIY GPS Tracker
https://www.codeproject.com/Articles...IY-GPS-Tracker Quote:
Maybe of interest to some #### Artificial Neural Network C++ Class https://www.codeproject.com/Articles...plusplus-Class Quote:
Quote:
Use Cases Quote:
Quote:
EDIT: Also maybe this of interest to the security conscious of you. How to Enable Bitlocker Hardware Encryption on SEDs [self encrypting drives] https://www.codeproject.com/Tips/537...ryption-on-SED Quote:
NOTE, the Crucial MX500 2.5" SATA SSD's have AES-256 bit harware encryption capability. Amazon, 500GB=£33, 1TB=£44, 2TB=£87, 4TB=£160. [ https://www.amazon.co.uk/dp/B003J5JB12 ] I recenty got a 2TB [EDIT: actually 4TB], was not aware of the hardware encryption capability [I usually buy the cheaper but slightly slower BX500 without encryption]
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 26th November 2023 at 19:13. |
||||||
24th November 2023, 21:45 | #8 | Link | |
Formerly davidh*****
Join Date: Jan 2004
Posts: 2,522
|
Quote:
|
|
25th November 2023, 16:27 | #9 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Yes of course, but perhaps of use if you're a government minister with a habit of leaving your laptop on a train.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? |
25th November 2023, 18:06 | #11 | Link | |
Broadcast Encoder
Join Date: Nov 2013
Location: Royal Borough of Kensington & Chelsea, UK
Posts: 3,032
|
Quote:
But yeah, bitlocker software encryption cripples performances. Luckily, though, hardware encryption exists and in that case the delay is mitigated to the point of being seconds. A few years ago, a friend of mine got his laptop stolen. The thieves broke into his house via the window the day he left with his wife to go on vacation. That could have very well happened to me. Although I wouldn't mind about the hardware, I would mind about the software, so, on Linux, I do encrypt everything with BTRFS fscrypt. Using hardware encryption on Linux means that the delay is negligible (we're talking ms and it's unnoticeable). Unfortunately in this day and age, we have to protect ourselves from this... |
|
26th November 2023, 19:10 | #12 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
It is my understanding that hardware encryption on eg nvme SED's would provide a significant speed hit (Especially PCIe 4.0/5.0),
but as SATA SSD's being slower, additional small overhead (in comparison) is of little concern.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 26th November 2023 at 19:17. |
26th November 2023, 21:28 | #13 | Link |
Broadcast Encoder
Join Date: Nov 2013
Location: Royal Borough of Kensington & Chelsea, UK
Posts: 3,032
|
Correct. SSD are so fast nowadays that they can very easily saturate the ~ 600 MB/s available on the Sata III line, so adding hardware encryption and decryption won't really matter much.
This is of course very different for NVME devices that can reach even ~ 1400 MB/s and would therefore be limited by hardware encryption/decryption when accessing a file as it might not be fast enough to cope with it. |
25th January 2024, 14:59 | #14 | Link | |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
New Project,
Quote:
EDIT: Updated project, CodeProject.AI Server: AI the easy way. https://www.codeproject.com/Articles...I-the-easy-way
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 25th January 2024 at 15:03. |
|
5th March 2024, 21:21 | #15 | Link | ||||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
Project: Windows & Linux
IP Radar 2 - Real-Time Detection and Defense https://www.codeproject.com/Articles...on-and-Defense GitHub:- https://github.com/ClarkFieseln/IPRadar2 Quote:
Quote:
Quote:
Gonna give this one a try. EDIT: Quote:
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 5th March 2024 at 21:29. |
||||
5th March 2024, 22:15 | #16 | Link |
Broadcast Encoder
Join Date: Nov 2013
Location: Royal Borough of Kensington & Chelsea, UK
Posts: 3,032
|
I have a GPS too, but for a slightly different reason.
You see, I have a GPS USB module connected to my desktop at home. People would think: "hold on a second, a GPS connected to a stationary desktop PC? What for? It's never gonna move!". But this is because people generally think about GPS as something used to understand where we are. How can we blame them? After all, it is called Global Positioning System. Anyway, what's interesting about GPS is that each and every satellite ever sent in orbit has an atomic clock inside so that it's gonna be able to know the time all the time regardless. GPS satellites are broadcasting such a signal as time in UTC. When you use a computer you generally use NTP (Network Time Protocol) and according to which server you're connected to you're gonna get a stratum. Those connected to an atomic clock are stratum 0, then, those servers tell the time via NTP to other servers which become stratum 1 and then they tell to other servers and they become stratum 2 and so on and so forth up until stratum 10 after which a server can only acquire the time but not tell the time to other servers (although some older versions allow up to stratum 16). Anyway, generally when you use public NTP pools you get at best servers at stratum 2 or 3 telling you the time, thus making you become stratum 3 or 4. Even if you manually set the time to be synced with the Google NTP servers, they're stratum 1, so you would become stratum 2. But... what happens if you connect directly to the satellites that have an atomic clock inside? Well, you're connected directly, so you become stratum 1 and that's exactly what I've done in January 2023. |
5th March 2024, 22:28 | #17 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
In a couple of tablet/laptop whotsits that I have, I have a PAYG SIM card, without ever any credit.
I did this so as to have system able to update clock / location from 4G mast of the not-in-credit service provider. I also have it in settings to auto update time from network (or something like that). No idea if it works as desired, I've never checked it, but it cant do much harm. (Of course you would need to enable DATA on SIM every now and then, just to access the mast access point, but not all of the time, takes battery). (Would also auto update from WiFi when available - I dont need atomic clock accuracy, just wanna know what day it is.) EDIT: Even without credit, SIM cards work, if only to access the service provider website to topup your credit.
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 5th March 2024 at 22:33. |
9th March 2024, 03:43 | #18 | Link | |||
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,992
|
No idea if this is of interest to anybody,
https://cloudblogs.microsoft.com/ope...-using-webgpu/ Quote:
Quote:
Quote:
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 9th March 2024 at 03:49. |
|||
Thread Tools | Search this Thread |
Display Modes | |
|
|