dotnetgram | Unsorted

Telegram-канал dotnetgram - .NET Dev

-

Try to keep discussions on topic. Any job posting = ban. Spam/ads = deleted. Spam again = ban. Piracy, porn, gore = guess what? Ban. English only. No begging! No job posting allowed.

Subscribe to a channel

.NET Dev

as long as you don't make them stop on each word, they can understand you don't know all the slang words ;)

just stay polite and state that english is not your native language

Читать полностью…

.NET Dev

lol, the gibberish was the scariest part tbh, I'm always thinking: "what if some day they slip a 'skmeiniawb' in a sentence and I just say yes but I just insulted their mom?" 😆

Читать полностью…

.NET Dev

Awesome, tyvm Wizou!

Читать полностью…

.NET Dev

based on your english only, I would hire you no problem! As non-native language, your english is excellent, and very much enough to communicate around for a developer kind of job

Читать полностью…

.NET Dev

Using Open AI API, Chat GPT turbo, training it to keep context has been an adventure.

Читать полностью…

.NET Dev

Mostly a combination of Tailwimd CSS which allows me to freestyle on any design while respecting CSS good practices, oh and My trusted AI assistant which never has a shortage of bad ideas for me.

Читать полностью…

.NET Dev

I don't know much about rendering software but you should find or seek out the groups that are and get active in those groups, Like Unity groups, maybe even find some meet ups. I struggle with this my self but I just keep trying.

Читать полностью…

.NET Dev

And i have windows software and 3d plugins for maya and blender and 3dmax

Читать полностью…

.NET Dev

Yes, it works very fast. Blazor is also very good. I also want to work on a project with Blazor

Читать полностью…

.NET Dev

Yeah there is lot of old Latin on this website 😂

Читать полностью…

.NET Dev

Good luck, but keep working on it IIAM on the same journey as well!

Check out my project, I am actually about to release the next version soon which should be a quantum leap, My project has evolved into a AI infused Multi Tenant Blazor application.

Читать полностью…

.NET Dev

Looks good but could have a better UI/UX IMO, also the languages are mixed at times. the sticky privacy notification box is a bit much for me.

Читать полностью…

.NET Dev

Share some code and let my bot define it

Читать полностью…

.NET Dev

Lol it can reach 50+ here

Читать полностью…

.NET Dev

Thats the List after calling the OnAudioDataReceived Method, where it should be filled with bytes

Читать полностью…

.NET Dev

don't hesitate to ask them for clarification on the occasional doubtful word

Читать полностью…

.NET Dev

as long as you know the words in your area of expertise (dev, front or back end..), not understanding song's gibberish is really not important 😆

Читать полностью…

.NET Dev

your lack of practice in oral english is only a problem if the job ad explicitly states that you will have to interact orally (phone/videochat?) with english-speaking clients... most of the time, developer interaction are written emails/chats

Читать полностью…

.NET Dev

TL;DR: Impostor syndrome about my english level, not .NET related, just an offtopic issue

Guys, I'm a bit concerned about my english level

I'm from Venezuela, we speak spanish here, and I learned english just by playing videogames, listening music, watching movies/series/videos, etc, but I never took an english course in my life, so there's a lot of problems when it comes to handling the right times and verbs

I can easily communicate my ideas with a weird english, I'm always trying to emulate the way of talking in series/movies, but that's not a professional/technical english level, as you see, I speak the same way I'm writing right now, but I'm really curious on how hard an english interviews could be.

Is somebody here actually working in the IT industry and not just for fun or hobbies or side projects? Would this basic level of english be enough to accomplish it?

I'm not using translators but I know there's some improvements in my vocabulary that can be done, yet I'm having the "I will never be good enough" some like the impostor syndrome but with english.

I can easily understand videos from Tim Corey for instance, without subs or translations, but I have never spoken with anybody in the real life, nobody around me speaks english, (they speak spanish pretty bad 😆 so you can picture why)

Yet I can't understand all the words of many songs, mainly because I think they pronounce really bad, like the guys from Korn that uses a lot of gibberish xD

So, what do you think? may this be enough or do you have an advice? considering in some months I will be traveling to USA and I really need to get a job there.

Читать полностью…

.NET Dev

Yeah I just completed writing my own chat gpt Blazor app which I am training ATM, I should release soon.

Читать полностью…

.NET Dev

How do you come up with designs for your project? I can think in code but when it comes to design I always end up putting together a generic design that gets things done but not fancy to look at

Читать полностью…

.NET Dev

https://animsanat.com/Software

Читать полностью…

.NET Dev

Do you think I can be employed in companies with this project?

Читать полностью…

.NET Dev

I didn't know they had a word for "airline" in ancient times

Читать полностью…

.NET Dev

https://lightningbits.com/LightningBits

Читать полностью…

.NET Dev

I posted this project on linkedin and sent messages to several companies, but I still haven't received an answer

Читать полностью…

.NET Dev

Hi friends , am finished my own render farm project. please visit it https://animsanat.com

Читать полностью…

.NET Dev

who among you is good with store procedures? I need a hand and I would be willing to give a fee too

Читать полностью…

.NET Dev

Hi does anyone know azure logic app and how to exceed its memory

Читать полностью…

.NET Dev

var BlazorAudioRecorder = {};

(function () {
var mStream;
var mAudioChunks;
var mMediaRecorder;
var mCaller;

BlazorAudioRecorder.Initialize = function (vCaller) {
mCaller = vCaller;
};

BlazorAudioRecorder.StartRecord = async function () {
mStream = await navigator.mediaDevices.getUserMedia({ audio: true });
mMediaRecorder = new MediaRecorder(mStream);
mAudioChunks = [];
mMediaRecorder.addEventListener('dataavailable', vEvent => {
mAudioChunks.push(vEvent.data);
mCaller.invokeMethodAsync('OnAudioDataReceived', new Uint8Array(vEvent.data));
});

mMediaRecorder.addEventListener('error', vError => {
console.warn('media recorder error: ' + vError);
});

mMediaRecorder.addEventListener('stop', () => {
var pAudioBlob = new Blob(mAudioChunks, { type: "audio/mp3;" });
var pAudioUrl = URL.createObjectURL(pAudioBlob);


/* uncomment the following if you want to play the recorded audio (without the using the audio HTML element)*/
var pAudio = new Audio(pAudioUrl);
pAudio.play();
});


mMediaRecorder.start();
};


BlazorAudioRecorder.StopRecord = function () {
mMediaRecorder.stop();
mStream.getTracks().forEach(pTrack => pTrack.stop());
};


})();

Читать полностью…
Subscribe to a channel