Search found 273 matches

by Mihail_B
Nov 15, 2023 13:03
Forum: General
Topic: using gcc quadmath
Replies: 68
Views: 12507

Re: using gcc quadmath

the latest QuadMath dll, use the bi posted here here's quadmath.bi with overloaded operators and functions quadmath.bi Hi srvaldez the above download link isn't working ... do you have the time to upload somewhere again pls ? It would mean a lot to one of my (physics) projects ... Thanks in advance!
by Mihail_B
May 13, 2022 14:09
Forum: Community Discussion
Topic: The problem with the Object Oriented Programing
Replies: 38
Views: 5569

Re: The problem with the Object Oriented Programing

(First hello again, long time no replies, but I read this forum on weekly basis) So, here's a real life story ... First time you make a program that reads from a file CSV rows and you apply some rules to some columns and write the new stuff to a new file. The 2nd time the boss tells you need to be a...
by Mihail_B
May 19, 2018 9:38
Forum: Community Discussion
Topic: Rewriting code from scratch
Replies: 8
Views: 2883

Re: Rewriting code from scratch

I suppose it's rather a matter on one's perception about the code and the abilities does he [or she] possess the most. Code rewrite is not so error prone when you have lots of code to rewrite. It's a bad a idea to start rewrite when you have more than 30K lines of code. You will end up with new code...
by Mihail_B
Mar 18, 2018 15:55
Forum: Community Discussion
Topic: Number Nerdery
Replies: 6
Views: 1960

Re: Number Nerdery

This is nice stuff :)
by Mihail_B
Jan 23, 2018 17:22
Forum: Community Discussion
Topic: No more hosted networks (ad-hoc connections) allowed on win10!?
Replies: 10
Views: 3398

Re: No more hosted networks (ad-hoc connections) allowed on win10!?

You mean you tried this https://answers.microsoft.com/en-us/windows/forum/windows_10-networking-winpc/how-do-i-set-up-an-ad-hoc-wifi-network-in-windows/0caa92d8-e02f-4e7f-aa5c-0abf10ed2039?auth=1 and it didn't work :)) =)) ? Just for fun I've tried it and it kinda worked, but i have to admit to have...
by Mihail_B
Dec 29, 2017 17:27
Forum: Community Discussion
Topic: Part 3: Action - basic OpenSSL headers
Replies: 0
Views: 1325

Part 3: Action - basic OpenSSL headers

I offer to port the headers (for static libraries and/or dynamic libraries) for the most basic/important functions (as a start) in OpenSSL [>=1.0.2] (like: hashes, aes crypto, big numbers, ssl/tls) I can also write or port some tests/examples/how-to-use samples. OpenSSL can be easily compiled for wi...
by Mihail_B
Dec 20, 2017 18:20
Forum: Community Discussion
Topic: FreeBASIC Discussion December 2017
Replies: 42
Views: 11048

Re: FreeBASIC Discussion December 2017

Part 2 - Weakness

I don't have many complains ... :)

FBC
1. Incomplete OOP support (templates are really useful in all sorts of situations)

That's all ...
by Mihail_B
Dec 06, 2017 17:28
Forum: Community Discussion
Topic: FreeBASIC Discussion December 2017
Replies: 42
Views: 11048

Re: FreeBASIC Discussion December 2017

Part 1 - Strengths (and/or achievements) inline assembly and/or as/gcc back-end portability: dos, windows, linux, (~ macos) 32bit or 64bit, multi-threading support clean syntax - we use words instead of symbols easy integration with other existing resources/libraries/projects/etc you can easily star...
by Mihail_B
Dec 04, 2017 19:50
Forum: Community Discussion
Topic: time to say goodbye
Replies: 53
Views: 11052

Re: time to say goodbye

Thank you Mr D.J. Peters for your contribution from which I too benefited ... benefited richly ... I'll personally be missing your presence. I always thought about programming like it offers endless posibilities for research and development - and it does but perhaps we only need a new perspective an...
by Mihail_B
Jul 04, 2017 15:04
Forum: Projects
Topic: Relativistic Electrodynamics Simulator
Replies: 3
Views: 2209

Re: Relativistic Electrodynamics Simulator

Relativistic Electrodynamics Simulator - genius positions (genius fields), field propagation graphics (drawn after history elements are fully occupied) (You need a 64bit compiler and at least 3980MB free RAM) To compile use: [path]\fbc\win64-1.05.0\fbc -s console -t 128000 -w 3 -O 2 -v "relativ...
by Mihail_B
Jun 10, 2017 7:23
Forum: Projects
Topic: Relativistic Electrodynamics Simulator
Replies: 3
Views: 2209

Re: Relativistic Electrodynamics Simulator

Relativistic Electrodynamics Simulator - free version, uses genius positions (genius fields) (You need a 64bit compiler and at least 3980MB free RAM) To compile use: [path]\fbc\win64-1.05.0\fbc -s console -t 128000 -w 3 -O 2 -v "relativity_retardedfield.bas" It takes a lot of time - it's r...
by Mihail_B
May 24, 2017 16:37
Forum: Community Discussion
Topic: Currently inactive
Replies: 45
Views: 15816

Re: Currently inactive

You never know when you change your mind !
Maybe one day you'll get nostalgic.
Working for corporations can starve you to death, and all you'll want after a couple of years is to get some free days (or rather years) to code in FBC...

Thx for making our dreams possible :) !
Long live
by Mihail_B
Jan 22, 2017 20:14
Forum: Projects
Topic: Relativistic Electrodynamics Simulator
Replies: 3
Views: 2209

Relativistic Electrodynamics Simulator

Relativistic Electrodynamics Simulator - free version, but instant field used instead of genius positions. I don't have a release date for a FREE genius position simulator. Theory detail : please visit my answer on physics.stackexchange.com (i used exactly that in this simulator): http://physics.sta...
by Mihail_B
Nov 25, 2016 19:00
Forum: Sources, Examples, Tips and Tricks
Topic: AES Encryption/Decryption Algorithm
Replies: 22
Views: 18091

Re: AES Encryption/Decryption Algorithm

Never re-use the same Key/IV combination with any mode unless it's specifically meant to be fully nonce-reuse resistant (no widely used mode is, apart from KW modes unsuitable for general purpose use). I ment if it WOULD HAPPEN (due to unfortunate circumstances) to have same KEY/IV. But if your tex...
by Mihail_B
Nov 23, 2016 18:12
Forum: Sources, Examples, Tips and Tricks
Topic: AES Encryption/Decryption Algorithm
Replies: 22
Views: 18091

Re: AES Encryption/Decryption Algorithm

I can recommand you guys a strategy to increase AES strength which is very good and has only one con. it increases traffic. But if security is what you really need, when encrypting insert in between any 2 chars a random char. a = "MYSTRING" l = lenght(a) result = "" for i = 0 to ...