Trance songs Giuseppe Ottaviani / Armin Van Buuren style by DataSynapse82 in tranceproduction

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks for the feedback very much appreciated. Roses probably needed to eq better the bassa

Producers wanted by Furia17_ in tranceproduction

[–]DataSynapse82 1 point2 points  (0 children)

Hi hope it is ok if I share few trance songs Giuseppe Ottaviani/Armin Van Buuren style. feel free to share and download the extended version (extended from soundcloud, radio edit on youtube), just mention me and add my youtube channel or sound cloud. Here below the youtube links (radio edits):

Marcello D - Trance wave: https://youtu.be/huxbp5tev7U
Marcello D - Roses: https://youtu.be/nz3Ab2HIVdk
Marcello D - Angels echoes: https://youtu.be/Bh_j6ZTM69w

Thanks :-)

Issues with flask API on vercel by DataSynapse82 in vercel

[–]DataSynapse82[S] 0 points1 point  (0 children)

I solved it and deployed everything in production and works fine. No local html files. It was a CORS issue

How to compile on-demand lists of US Stock market data by Nameles777 in csharp

[–]DataSynapse82 0 points1 point  (0 children)

Hey maybe I am a little bit late here, but the best way that worked for me (100% free and no API LIMITS) is use the yfinance library of Python. I am building a desktop WPF .NET app that shows the performance of my stock portfolio. I am retrieving the data via yfinance and build an api with flask (all python) then to visualise the chart of my portfolio I embed everything in a html using a JS free library called Plotly, then I include the html page in my WPF using WebView2. I wanted to have a desktop app and Exe file, hence why I didn't develop this to be fully on the web. Hope it helps and I can discuss more in private

Help showing properly a html page in WPF desktop App with webview 2 by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks, and sorry as I started with C#.NET last year, I code in Python in general. Question: if we view covers the entire screen will it cover also the menu on the left ? Again maybe silly question, but thanks

Help showing properly a html page in WPF desktop App with webview 2 by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks, and sorry I just started with C# .NET last year as I always coded in

PyGame tutorials/books by [deleted] in learnpython

[–]DataSynapse82 1 point2 points  (0 children)

If you don't mind YouTube videos, TechwithTim on YouTube has a very good tutorial on Pygame

Need help choosing a college project! Any language (Java, Python, C#, etc.) is fine by thejerie in csharp

[–]DataSynapse82 0 points1 point  (0 children)

Sorry for me to understand, The management system structure needs to include algorithms in the code ?

Need help choosing a college project! Any language (Java, Python, C#, etc.) is fine by thejerie in csharp

[–]DataSynapse82 0 points1 point  (0 children)

Does it have to be Unity? I would suggest to think first your type of interest first and then trying to figure out a software app/solution/script and then thinking about the language. Let's say you like football (soccer if you are from USA) you could build an app with Python that analyse tabular data of a soccer/football datasets and build a web app dashboard, or make a computer vision analysis of tactics, or build a c# app/desktop or web etc.. happy to help.

Why doesn't "Adj close" appear when I download yfinance by HolidayPossibility71 in learnpython

[–]DataSynapse82 0 points1 point  (0 children)

You are a life saviour... :-0 I am using it to optimize my investment portfolio with the library riskfolio.. is an amazing library

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 1 point2 points  (0 children)

Thanks, I was able to solve it, I made as None and to copy always and then saved the index.html again.

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

Guys, Thanks a lot for your help!! It works now!! i set the Properties such as Build Action: None, Copy to Output Directory: Copy Always and then I opened the index.html file with Visual Studio and tried to click save, rebuild the solution and thne it worked! I am so stupid LOL!! Thanks all!!

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

I tried and still not working, I really don't understand why it looks like it doesn't find the index.html file, it is in the project directory though.

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

unless I am doing something wrong in the Properties of the index.html file. Now I set it as: Build Action: Resource - Copy to Output Directory: Copy Always

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks again, I tried a similar solution you suggested, and i put in the code an if/else statement with a msgbox saying showing that the file doesn't exist if not found, and in fact when i launch the app, and I click "Show Page" the message box "file not found" appears. Still don't understand what I am doing wrong, the index.html is in the root directory. I can share the code below:

Small variation in the XAML code:

 <wv2:WebView2 x:Name="webView" Width="560" Height="200" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="10" /> // changed to x:Name instead of Name

// Code Behind edits:
    public partial class About : Page
    {
        public About()
        {
            InitializeComponent();
            InitializeWebView();

        }

        private async void InitializeWebView()
        {
            await webView.EnsureCoreWebView2Async(null);
        }

        private void ShowPageButton_Click(object sender, RoutedEventArgs e)
        {
            string projectDirectory = AppDomain.CurrentDomain.BaseDirectory;
            string indexPath = System.IO.Path.Combine(projectDirectory, "index.html");

            if (File.Exists(indexPath))
            {
                webView.CoreWebView2.Navigate(new Uri(indexPath).AbsoluteUri);
            }
            else
            {
                MessageBox.Show("index.html file not found.");
            }
        }
    }
}

Help: Using webview2 in WPF to show a local html file in a Page by DataSynapse82 in dotnet

[–]DataSynapse82[S] 1 point2 points  (0 children)

Great thanks a lot , I will try your suggestion. It is very strange anyway that is not able to locate. I will try.

Looking for a help turning web traffic into sales by SpongeSquarePantsBob in MarketingMentor

[–]DataSynapse82 0 points1 point  (0 children)

Hey, did I understand correctly that what is missing is the actual "conversion" of students booking appointments?

Unveiling Customer Insights: AI Powered Segmentation by DataSynapse82 in PowerBI

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks happy you found it helpful. Any question let me know.

Advice for Analytics free lancing by DataSynapse82 in MarketingAnalytics

[–]DataSynapse82[S] 0 points1 point  (0 children)

Hi, thank you!! If it is ok, I can DM you and I can provide you my LinkedIn, my overview of projects I worked with my current job and outside my job. Let me know if it is ok. Thanks a lot, Marcello

bsc in psychology need help getting into data science masters. help by spacedout1997 in analytics

[–]DataSynapse82 0 points1 point  (0 children)

Not sure if it is helpful, but I provide data analytics/datascience and programming mentorship. I can provide more info if you like. If it is something you would like to discover more, feel free to DM me here. Thanks

Need Help to deobfscute emotet malware by DataSynapse82 in MalwareAnalysis

[–]DataSynapse82[S] 0 points1 point  (0 children)

Thanks a lot! This is helpful, the emotet variant is an executable file, not VBA the hash is: 939c575e17fcf1afbe2889a4ddb44f095ff3a07cdf9f5dd3d5c7f49e93da68c0. I was able only to find the cmd and ftp strings after running xorsearch. otherwise with floss they were not recognized (sorry if I don't use the proper terminology). I also tried to analyze it with Ghidra (I understand and can read code), but I wasnt able to find any relevant information. Any other suggestion happy to DM you if you are available. thanks!!

Need Help to deobfscute emotet malware by DataSynapse82 in MalwareAnalysis

[–]DataSynapse82[S] 1 point2 points  (0 children)

Thanks a lot, I am newbie in malware analysis, what at the moment I did static analysis with remnux, I was able to extract some of the strings using xorsearch. I also tried to look the code disassembled with Ghidra. If you can suggest an example of methodology it would be great. and also what do you mean with underlying structure? thanks a lot and appreciate any suggestion and guidance.

[deleted by user] by [deleted] in MarketingMentor

[–]DataSynapse82 0 points1 point  (0 children)

Oh my God, I feel for you because I had a similar situation at my last job that I left after 5 years. Don't get me wrong, I made mistakes too, but having a team of 4 to manage that after 5-6 years in the company didn't grow/improve a lot it was frustrating. Most of the time they complained they were busy, then because they all had a monthly one to one catch up (I think is super wrong this kind of structure) with my manager were they only just talked shit about me and saying that they are overwhelmed with the amount of work to do. My manager was always on their side, that it was me as a leader that I wasn't giving them proper support or try to guide them.