<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>2021-12 on Funky Si's Blog (Dev)</title><link>https://blog-dev.funkysi1701.com/2021/12/</link><description>Recent content in 2021-12 on Funky Si's Blog (Dev)</description><generator>Hugo -- gohugo.io</generator><language>en-gb</language><managingEditor>funkysi1701@gmail.com (Simon Foster)</managingEditor><webMaster>funkysi1701@gmail.com (Simon Foster)</webMaster><lastBuildDate>Tue, 28 Dec 2021 20:00:45 +0000</lastBuildDate><atom:link href="https://blog-dev.funkysi1701.com/2021/12/index.xml" rel="self" type="application/rss+xml"/><item><title>Rediscovering BASIC as a language</title><link>https://blog-dev.funkysi1701.com/posts/2021/back-to-basic/</link><author>funkysi1701@gmail.com (funkysi1701)</author><pubDate>Tue, 28 Dec 2021 20:00:45 +0000</pubDate><guid>https://blog-dev.funkysi1701.com/posts/2021/back-to-basic/</guid><category term="BASIC">BASIC</category><category term="History">History</category><category term="Lynx">Lynx</category><media:content medium="image" type="image/jpeg" url="https://blog-dev.funkysi1701.com/images/FHi_NyOXEAo9YbG.jfif"/><description>&lt;blockquote class="twitter-tweet"&gt;&lt;p lang="en" dir="ltr"&gt;How exciting my Lynx Computer from my childhood has come home, all 96k of it &lt;a href="https://t.co/aeN38KBiS8"&gt;pic.twitter.com/aeN38KBiS8&lt;/a&gt;&lt;/p&gt;&amp;mdash; Simon Foster (@funkysi1701) &lt;a href="https://twitter.com/funkysi1701/status/1475139125154037760?ref_src=twsrc%5Etfw"&gt;December 26, 2021&lt;/a&gt;&lt;/blockquote&gt; &lt;script async src="https://platform.twitter.com/widgets.js" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;I can&amp;rsquo;t remember the syntax for BASIC, luckily I have been able to find the &lt;a href="https://camputers.dk/lynxbooks.html" target="_blank" rel="noopener noreferrer"&gt;Manual&lt;/a&gt;
.&lt;/p&gt;
&lt;p&gt;All the commands are listed inside so lets see what we can do.&lt;/p&gt;
&lt;p&gt;The Lynx presents you with a command prompt in which you can type text. Back in the 80s we had a tape player to load programs from tape, however I don&amp;rsquo;t have one today so only programs I write can be run.&lt;/p&gt;
&lt;p&gt;PRINT - To write Hello World, you can just type PRINT &amp;ldquo;Hello World&amp;rdquo; and Hello World appears on the screen. To Write a program that displays Hello World, you just write the line number first.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;10 PRINT &amp;#34;Hello World&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To run this you type RUN
To view the code you type LIST&lt;/p&gt;
&lt;p&gt;To Edit a specific Line you can use Ctrl+E and type the line number, or you can just write the line out again.&lt;/p&gt;
&lt;p&gt;CLS - This command clears the screen&lt;/p&gt;
&lt;p&gt;INPUT N - stores text typed by the user and stores it in the variable N&lt;/p&gt;
&lt;p&gt;GOTO N - Execution of code continues at Line Number N&lt;/p&gt;
&lt;p&gt;The first Program I wrote with a bit of help from my boys.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;10 CLS
20 PRINT &amp;#34;What is your Age?&amp;#34;
30 INPUT N
40 IF N&amp;gt;5 AND N&amp;lt;41 THEN PRINT &amp;#34;a good age&amp;#34;
50 ELSE IF N&amp;lt;6 THEN PRINT &amp;#34;a spaceman&amp;#34;
60 ELSE IF N&amp;gt;40 THEN PRINT &amp;#34;too old&amp;#34;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;My 4yo didn&amp;rsquo;t like being &amp;ldquo;too young&amp;rdquo; in the original version, so my 6yo helped me change him to be a &amp;ldquo;spaceman&amp;rdquo;.&lt;/p&gt;
&lt;p&gt;Not bad and it was fun pair programming with a 6yo, all my typos were quickly spotted, and he easily understood the logic of IF/ELSE/THEN statements.&lt;/p&gt;
&lt;p&gt;The Lynx comes from 1983 and has just 96k of memory. I am very lucky it actually still works, however I have been able to find an emulator so I can write Lynx BASIC from the comfort of my laptop. &lt;a href="https://jynxemulator.wordpress.com/" target="_blank" rel="noopener noreferrer"&gt;jynxemulator&lt;/a&gt;
, it is also on &lt;a href="https://github.com/jonathan-markland/Jynx" target="_blank" rel="noopener noreferrer"&gt;github&lt;/a&gt;
but it doesn&amp;rsquo;t include the ROMs so getting from the website is a better option.&lt;/p&gt;
&lt;p&gt;The developer experience today is so much nicer than it must have been in the 1980s, however back then distractions must have been much reduced.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;No internet or google to get answers to your questions&lt;/li&gt;
&lt;li&gt;No Copy/Paste of text&lt;/li&gt;
&lt;li&gt;No Load/Save (unless you have a working disk drive or tape player!)&lt;/li&gt;
&lt;li&gt;No IDE&lt;/li&gt;
&lt;li&gt;No Build or Release process just type RUN&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I then have additional sites, that I use as my playground for learning new tech. I can easily link between them and I can tweak the style so they &amp;ldquo;fit&amp;rdquo; nicely together.&lt;/p&gt;
&lt;p&gt;I am still considering what to do with dev.to. I like that I am using it as the backend for my blog posts, and its API gives me that flexibility to display that content where I want.&lt;/p&gt;</description></item><item><title>Comparing All Good Things and Picard</title><link>https://blog-dev.funkysi1701.com/posts/2021/a-comparison-of-all-good-things-and-star-trek-picard/</link><author>funkysi1701@gmail.com (funkysi1701)</author><pubDate>Wed, 15 Dec 2021 20:00:45 +0000</pubDate><guid>https://blog-dev.funkysi1701.com/posts/2021/a-comparison-of-all-good-things-and-star-trek-picard/</guid><category term="StarTrek">StarTrek</category><category term="Picard">Picard</category><media:content medium="image" type="image/jpeg" url="https://blog-dev.funkysi1701.com/images/picard.jpeg"/><description>&lt;p&gt;The final episode of Star Trek: The Next Generation features a few scenes set 25 years into the future. That episode aired May 1994. The newest Star Trek TV show Star Trek Picard has just aired its first episode and this is 25 years and 8 months after that episode. This article may contain minor spoilers for the first episode of Star Trek Picard, you have been warned.&lt;/p&gt;
&lt;p&gt;I thought it would be interesting to compare the two time periods.&lt;/p&gt;
&lt;h2 id="fate-of-picards-crew"&gt;Fate of Picards crew&lt;a class="anchor ms-1" href="#fate-of-picards-crew" aria-label="Permalink: Fate of Picards crew"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;In All Good Things&amp;hellip; all of Picards crew are still alive except one. Deanna Troi passed away but it is never revealed how.&lt;/p&gt;
&lt;p&gt;In Star Trek Picard, we know Data has died as featured in the feature file Star Trek Nemesis. From the trailers we know Riker and Troi are still alive. We do not know the fate of Crusher, LaForge and Worf yet, but I am going to assume they are still alive somewhere.&lt;/p&gt;
&lt;p&gt;In both timelines we have one dead crew member.&lt;/p&gt;
&lt;h2 id="living-arrangements"&gt;Living arrangements&lt;a class="anchor ms-1" href="#living-arrangements" aria-label="Permalink: Living arrangements"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;In both time lines Picard is living in France at his vineyard.&lt;/p&gt;
&lt;p&gt;In All Good Things&amp;hellip; we do not know who Picard is living with, it is assumed he lives alone, which is why Geordi feels the need to check on him, once he learns about his Irumodic Syndrome.&lt;/p&gt;
&lt;p&gt;In Star Trek Picard we learn that Picard is living with a Romulan couple, due to the involvement Picard made to save the Romulan people when their star went supernova. Picard appears older but for the most part in good health, he can&amp;rsquo;t for example run up a flight of stairs (he is 92 so not surprising really!) and is plagued by dreams from his past.&lt;/p&gt;
&lt;h2 id="romulan-neutral-zone"&gt;Romulan Neutral Zone&lt;a class="anchor ms-1" href="#romulan-neutral-zone" aria-label="Permalink: Romulan Neutral Zone"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;In All Good Things&amp;hellip; there is no Neutral Zone, the Romulan empire has been taken over by the Klingons.&lt;/p&gt;
&lt;p&gt;In Star Trek Picard one would assume there is no Neutral Zone as well because the Romulan star system was destroyed. A handful of Romulans survived mostly due to the actions of Picard.&lt;/p&gt;
&lt;h2 id="looks"&gt;Looks&lt;a class="anchor ms-1" href="#looks" aria-label="Permalink: Looks"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;As we have seen Patrick Stewart does not appear to be ageing. Below is a comparison of how he looks in the two time frames.&lt;/p&gt;
&lt;p&gt;
&lt;img class="img-fluid" alt="All Good Things.." src="https://blog-dev.funkysi1701.com/images/2021/all-good-things.jpg" loading="lazy"
width="320" height="320"
/&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;img class="img-fluid" alt="Star Trek Picard" src="https://blog-dev.funkysi1701.com/images/2021/picard.jpeg" loading="lazy"
width="880" height="479"
/&gt;
&lt;/p&gt;
&lt;p&gt;I really enjoyed the first episode of Star Trek Picard and it is going to be interesting seeing what other similarities and differences there are between it and All Good Things&amp;hellip;&lt;/p&gt;
&lt;p&gt;Did you know you can track episodes from TNG and Picard in &lt;a href="https://www.episodeatlas.com/" target="_blank" rel="noopener noreferrer"&gt;Episode Atlas&lt;/a&gt;
.&lt;/p&gt;</description></item><item><title>Lone developer to senior, my 2021</title><link>https://blog-dev.funkysi1701.com/posts/2021/lone-developer-to-senior-developer-my-2021-story/</link><author>funkysi1701@gmail.com (funkysi1701)</author><pubDate>Sun, 05 Dec 2021 09:00:05 +0000</pubDate><guid>https://blog-dev.funkysi1701.com/posts/2021/lone-developer-to-senior-developer-my-2021-story/</guid><category term="FestiveTechCalendar2021">FestiveTechCalendar2021</category><category term="Career">Career</category><category term="LifeStory">LifeStory</category><media:content medium="image" type="image/jpeg" url="https://blog-dev.funkysi1701.com/images/github/festivetechcalendar-calendar.jpg"/><description>&lt;h2 id="welcome-to-day-5-of-the-festive-tech-calendar"&gt;Welcome to Day 5 of the Festive Tech Calendar!&lt;a class="anchor ms-1" href="#welcome-to-day-5-of-the-festive-tech-calendar" aria-label="Permalink: Welcome to Day 5 of the Festive Tech Calendar!"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Usually at this time of year I like to take the opportunity to look back on the last 12 months, highlight some of my achievements and make a few goals for the new year.&lt;/p&gt;
&lt;p&gt;Like many of you 2021 has been a difficult year, but it has also been a year of change, and I am in a much better place now than at the start of the year.&lt;/p&gt;
&lt;p&gt;To tell you my 2021 story I first need to give you a bit of a history lesson about my career. So, lets fire up your flux capacitor (or Tardis of similar value) and journey back to 2006.&lt;/p&gt;
&lt;h3 id="back-to-2006"&gt;Back to 2006&lt;a class="anchor ms-1" href="#back-to-2006" aria-label="Permalink: Back to 2006"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;In 2006 I got my first IT job. My housemate, who was working as an IT Manager for a small Health and Safety Company, suggested I come work with him. I was currently working an admin job with no idea what to do with my life, so I said yes.&lt;/p&gt;
&lt;p&gt;So, in October 2006 I joined as a member of the IT Team. I worked mainly on first line support, but as the IT department was small, I learnt about all sorts of IT things, from fixing printers, setting up the CEOs BlackBerry mobile phone with emails, administering active directory, writing SQL queries to swapping tapes for the weekly backups.&lt;/p&gt;
&lt;p&gt;The company had many faults which I won&amp;rsquo;t discuss here, but the work was varied, and I was always learning something new so I stayed with the company.&lt;/p&gt;
&lt;p&gt;At the end of 2010, the IT Manager resigned, shortly followed by the rest of the IT department. In January 2011 I was IT Manager, I had no staff, plenty of IT problems and no clue what I was doing.&lt;/p&gt;
&lt;p&gt;This was an amazing time for me, I learnt how to interview and hire staff, I learnt more about the different systems we used. It was approximately at this point in time that I switched from being exclusively a SysAdmin to starting to learn Development.&lt;/p&gt;
&lt;p&gt;I had been creating simple websites for a while, mainly using PHP and MySQL. But since I started working in IT I learned more and more about databases, SQL Server and writing T-SQL scripts. I was the companies &amp;ldquo;database guy&amp;rdquo;, so the company naturally asked me to do more and more database work. This led to learning other technologies like MS Access and C# so I could do more and solve more of the company&amp;rsquo;s problems.&lt;/p&gt;
&lt;p&gt;However, the company was small, and I would always be dragged in to fix SysAdmin problems so I never managed to spend 100% of my time doing development, so in 2016 I moved on to my first full time development job.&lt;/p&gt;
&lt;p&gt;The new job was great, but I kept in touch with my old CEO, Ally and helped out with bits of work on the side, writing SQL queries, updating the odd bespoke application.&lt;/p&gt;
&lt;h3 id="back-where-it-all-began"&gt;Back where it all began&lt;a class="anchor ms-1" href="#back-where-it-all-began" aria-label="Permalink: Back where it all began"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;In 2019 I started formulating a plan to go back to my old job as a contract developer. To my amazement Ally almost bit my arm off to get me back, agreeing to all my terms. So, in the summer of 2019 I started full time as a contract developer, mostly working from home with the occasionally meeting in the office and supporting the business with IT issues.&lt;/p&gt;
&lt;p&gt;My second stint with the company was different than my first, I was able to concentrate almost exclusively on development work. As the only developer I was in full control of development, I decided to use dotnet and Blazor.&lt;/p&gt;
&lt;p&gt;Late in 2019 I was given advanced warning that the company was being sold. In Feb 2020 the company did get sold, the new owners kept me on to finish the project I was working on but made me a permanent member of staff. In March 2020, the whole company began to work from home due to COVID-19, with parts of the business being furloughed.&lt;/p&gt;
&lt;p&gt;This was a difficult time; on top of the stress the whole world was feeling from the global pandemic I was trying to assist with various IT integrations that you would expect when any company gets sold.&lt;/p&gt;
&lt;h3 id="january-2021"&gt;January 2021&lt;a class="anchor ms-1" href="#january-2021" aria-label="Permalink: January 2021"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;This is pretty much where you find me in January 2021. I was working remotely developing internal applications with dotnet/Blazor with the occasional Teams meeting to demonstrate what I had built so far.&lt;/p&gt;
&lt;p&gt;Working on your own as a developer is great! You start work and can write code all day. There is no daily stand up, you don&amp;rsquo;t need to explain what you have been working on, or what challenges you are facing. You don&amp;rsquo;t have any process or formality to follow, only what you impose on yourself.&lt;/p&gt;
&lt;p&gt;I created a build/release pipelines in Azure DevOps, I created pull requests that would kick of a build, run my unit tests, and run some static code analysis. I would glance over my PRs but 99% of the time I would approve them.&lt;/p&gt;
&lt;p&gt;This was the greatest weakness of working on my own, no one to suggest ideas of better ways of writing code, no one to bounce ideas off, no one to encourage or be encouraged when I figured out something clever or offer to help you overcome a problem.&lt;/p&gt;
&lt;h3 id="redundancy"&gt;Redundancy&lt;a class="anchor ms-1" href="#redundancy" aria-label="Permalink: Redundancy"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;In Mid July I was told that the development function was no longer required, and my job was at risk of redundancy. As I was the only one working in development it sounded very much like a done deal. I had a couple of redundancy meetings to attend and I would need to talk through how various applications worked as part of a handover.&lt;/p&gt;
&lt;p&gt;To be honest I agreed with the decision to make me redundant. New development work was not coming through, although the users of the applications I had developed loved what I had created, upper management were keen to migrate off these systems and use more centrally managed systems. If I was in charge, I would probably have made a similar difficult decision.&lt;/p&gt;
&lt;p&gt;As soon as I found out I was at risk of redundancy I called up a couple of recruitment agents I had spoken to before. They told me that it was a great time to be looking for a job and immediately arranged some interviews for the next week. I also took advantage of social media and asked on twitter if anyone was looking for developers like me. To my surprise this resulted in at least one interview.&lt;/p&gt;
&lt;p&gt;One thing I stressed in all my conversations with recruiters and companies I spoke with, was that I was looking for a &lt;strong&gt;team&lt;/strong&gt;. I wanted to work in a team, bounce ideas off others, mentor others, learn from others. This was the most important thing I wanted in whatever my next role was going to be.&lt;/p&gt;
&lt;p&gt;Other important things for me was continuing to use Azure or similar cloud technologies. However, I always think that the tech stack and technology can be learnt on the job, tech moves so quickly these days that you have to be constantly learning to stay relevant.&lt;/p&gt;
&lt;p&gt;About two weeks after I first found out about my impending redundancy I contacted (or more likely was contacted by) a third recruitment agency. It was this third one that eventually got me a job, however all three were brilliant, and kept me updated and answered all of my questions.&lt;/p&gt;
&lt;p&gt;The next few days were packed with phone calls, interviews, tech tests. I had a lot of different types of companies that I spoke with, from Software Consultancy companies, FinTech companies, Energy suppliers, Legal companies and many others.&lt;/p&gt;
&lt;p&gt;During this time of interviews, I can think of only two in person interviews. The rest made use of Teams, Zoom, Google Meet and even Skype (yes at least one company still uses it for video chats!)&lt;/p&gt;
&lt;p&gt;The usual way the process went was a conversation with the recruiter about a role after which my details were sent to the company, If the company liked the sound of me an initial informal interview was arranged, after that a second more technical interview was held, sometimes there would be a tech test, sometimes it was more technical questions being asked in the interview. Some companies had more stages that this, but this was what I typically encountered.&lt;/p&gt;
&lt;p&gt;I lost count of the actual number of interviews I had, but I used a spreadsheet to try and keep it all straight in my mind. The last thing I wanted was to ask a question about the wrong company!&lt;/p&gt;
&lt;h3 id="positive-no"&gt;Positive No&lt;a class="anchor ms-1" href="#positive-no" aria-label="Permalink: Positive No"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;I got plenty of noes from these interviews, however all were phrased as a positive no. That being they liked me as a person but something about my skill or experience wasn&amp;rsquo;t quite right. A friend once described me as an odd mix of junior and senior developer. I agree with that statement, I have a lot of experience in some areas and a real lacking in others.&lt;/p&gt;
&lt;p&gt;A common one was working in a team. Being a lone developer is not good for gaining experience working in a team. However, each time I spoke with companies I stressed that the &lt;strong&gt;team&lt;/strong&gt; was what I was looking for.&lt;/p&gt;
&lt;p&gt;Another weakness of mine is front end. When I am building something, functionality is more important than getting it looking good. I came from a database and backend start, so it is only natural that I am more at home working on these things. Also, my most recent projects are working with Blazor, which is brand new and few companies are doing much with it yet.&lt;/p&gt;
&lt;p&gt;I tried really hard not to be discouraged by these noes and that the right company was just around the corner. One no hit harder than most. I had an initial chat with the team of a FinTech Company and then there was a second interview with the CTO which I felt had gone OK.&lt;/p&gt;
&lt;p&gt;From what I had heard it ticked a lot of boxes, the team sounded good, with lots of support and development opportunities and they were moving to the Cloud, so my Azure experience sounded ideal. The CTO liked me and thought I would be a good fit, but I was part way between a junior and a senior, so he had gone away to try and make a bespoke role for me, eventually it would be a no.&lt;/p&gt;
&lt;p&gt;Looking back, it is easy to see, that this was really encouraging. They tried to create a bespoke role for me! However, at the time all I could think about was all the noes I was hearing.&lt;/p&gt;
&lt;h3 id="the-job-for-me"&gt;The job for me&lt;a class="anchor ms-1" href="#the-job-for-me" aria-label="Permalink: The job for me"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;About the same time, I had my initial interview with the company I would eventually accept a role with. I kept being told that there was a tech test to do, but for some reason it never got sent to me, so the interview featured a lot of tech questions and they really grilled me. I came away without much of a sense of if it went well or not.&lt;/p&gt;
&lt;p&gt;However, they liked me and wanted me to do a presentation at their office. I am rubbish at public speaking and doing presentations, so I thought I will do this presentation, but it is very unlikely they will like what I do.&lt;/p&gt;
&lt;p&gt;The topic of my presentation was how I upskilled a team on a new project or technology. As a lone developer what an earth could I do for a topic like that? I thought about what I had done to upskill myself on various things, however that doesn&amp;rsquo;t really address the question, as they wanted to know more about what I had done to upskill a team.&lt;/p&gt;
&lt;p&gt;I thought back to a time when I helped get a largely un-version controlled codebase into source control and automated the build and release pipeline using Azure and Azure DevOps. This involved talking to SQL and data developers so could be a better option for a presentation.&lt;/p&gt;
&lt;p&gt;I arrived at the office to do my presentation. First of all, I parked next to the factory where all the forklifts were, I was directed to the correct place to park. Then I tried to go to the wrong building, a very helpful employee helped me go to the correct place. I was introduced to the people who would be interviewing me, one of whom I had worked with in the past, who immediately said you should hire this guy, he is an excellent developer! As introductions go, that&amp;rsquo;s not bad!&lt;/p&gt;
&lt;p&gt;In my opinion the presentation was bad. I didn&amp;rsquo;t have a PowerPoint or similar to go with my talk, so I just waffled on for ten minutes about what I had done a few years back about how I helped get source control being used.&lt;/p&gt;
&lt;h3 id="the-next-day-i-got-the-job-offer"&gt;The next day I got the job offer.&lt;a class="anchor ms-1" href="#the-next-day-i-got-the-job-offer" aria-label="Permalink: The next day I got the job offer."&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;I was very surprised to get the offer as I thought I had done so badly the day before they would give me another positive no. I took a few hours to think about it, however all my other applications were either not started or waiting for the next stage, so I was 99% sure I would accept.&lt;/p&gt;
&lt;p&gt;I had no idea what to expect when I started, as I didn&amp;rsquo;t really ask many questions at the last interview as I was convinced, I was going to get a no after my presentation.&lt;/p&gt;
&lt;p&gt;I worked my notice period and at the start of October I started my new job. My contract only arrived the day before I started, so in the days before I started my mind was making up reasons why the job would disappear.&lt;/p&gt;
&lt;p&gt;The job started with a two-day induction. Things that were covered on the induction were, mental health, sleep cycles, company values, health and safety and of course a bit of form filling and photocopying passports that you would expect on a first day.&lt;/p&gt;
&lt;h3 id="conclusion"&gt;Conclusion&lt;a class="anchor ms-1" href="#conclusion" aria-label="Permalink: Conclusion"&gt;&lt;i class="fas fa-link" aria-hidden="true"&gt;&lt;/i&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;p&gt;Back when I had been job hunting, each time I stressed the importance of team. The company I had joined had an amazing focus on supporting its staff and getting the best from each other. I had got the best possible fit for the kind of team I was looking for.&lt;/p&gt;
&lt;p&gt;Usually when I start a new job, I get a large dose of imposter syndrome. Now, two months after I started, I can say, I didn&amp;rsquo;t really get that this time. Maybe it is how the team functions, maybe it is my level of experience, or maybe its just something else.&lt;/p&gt;
&lt;p&gt;I am happy in my new job. There is a lot to learn, both technology and how to work well in this team. But I am supported, there are people to ask question, I am contributing almost from day one. I have already shared a brief talk about my experience with Blazor, which went down better than I expected. I am excited to learn what is next for me.&lt;/p&gt;
&lt;p&gt;If you have read all the way to here, Thank you! This is my story and I hope you have found it interesting. If you are looking for a new role, I would encourage you to focus on the soft skills you are looking for next, if you concentrate on team like I did, there is a good chance you will land in an amazing team.&lt;/p&gt;
&lt;p&gt;Don&amp;rsquo;t forget to check out some of the other great content that is being created by all the amazing &lt;a href="https://festivetechcalendar.com/" target="_blank" rel="noopener noreferrer"&gt;Festive Calendar 2021&lt;/a&gt;
contributors.&lt;/p&gt;</description></item></channel></rss>