Engineer Blog – Migrating the Discord Bot Following the End of Deno Deploy Classic

As an engineer’s blog, I’d like to share what I’ve been learning on a daily basis.
I received an email asking me to migrate my assets to the new Deno platform, as the site where I had previously hosted my Discord bot had been rebuilt.
This migration allowed me to continue running the bot 24 hours a day for free, so I’d like to share more about that here.

What is Deno Deploy?

Before getting into the main topic, let me first briefly explain Deno Deploy.
It is a serverless edge computing service provided by the Deno development team.
It is a cloud service that allows you to publish applications written in TypeScript or JavaScript to the Internet without having to worry about setting up or managing servers. Because it makes it easy to deploy web apps, APIs, bots, and more, it has been widely adopted by many developers.

Email Content from Deno Deploy Classic

To be specific, the email I received had the following content:
・Deno Deploy Classic will be discontinued on July 20, 2026
・Apps on Classic will stop running after that date
・There will be no automatic migration
・You will need to manually migrate to the new Deploy

Things to Check Before Starting Work

① Are you using Classic?
Since you’ve received this email, it goes without saying that you’re using it, but just to be sure, please confirm that you’re using Classic.
https://dash.deno.com
If your project is listed above, it’s eligible for migration.

② Is the source code on GitHub?
Items to Check
・GitHub repository
・main branch
・Latest code

③ Make a note of the environment variables
Open the project you want to migrate in Deno Deploy Classic, and go to “Settings” → “Environment Variables.”
You should see tokens such as DISCORD_TOKEN configured here. Since these tokens are not automatically migrated, if you have a record of them, you’ll need to refer to that during the migration.
If you registered the token during development but didn’t keep a record of it, you’ll need to reissue a new token from the Discord Developer Portal.

The image shows the browser’s Japanese translation, which makes the Japanese look a bit unnatural, but the settings are correct.
Since I had the TOKEN noted down in my production notes this time, I’ll skip the step of reacquiring the TOKEN.

Just a side note… The Discord bot isn’t currently active.
It’s offline.

Actual Migration Procedures

① Log in to the new Deno Deploy
https://console.deno.com/

② Creating an Organization
Enter the Organization name and Organization slug, then click “Create Organization.”
If clicking this button reopens the previous Deno Deploy window, open a new Deno Deploy window and check to see if the organization you created is displayed there.

③ Tap “New App”
Tap the “Apps” tab, open “Applications,” and tap “New App.”

Open “Create a new application,” select your GitHub account, and choose your bot repository.
Scroll down and select your deployment targets.
Since this is a free plan, select “Free Regions” under “Managed,” then click “Create App.”
*This guide assumes you have already uploaded your source code to GitHub and have set up a new DenoDeploy integration with GitHub.

The build will start, but it will fail if you haven’t migrated the KV Database.

Click “Database” within the project to open the Database screen and migrate the KV Database.
Click “+Attach” for Deno KV on the following page

Click “provision new Deno KV” to create a KV database

Verify that the database you created is selected, then click “Attach Database.”

Return to the Build screen and click “Retry Build.”

④ Set the environment variables
Set the DISCORD_TOKEN in the “Environment Variables” section of the “Settings” page within your new Deno Deploy organization.

⑤ Check if you’re online on Discord
I am.

Now all that’s left is to test the system, and if it’s still running smoothly the next day, we’re all set.
This has been a long post, but that wraps up this edition of the Engineer’s Blog.

Stay tuned for the next Engineer Blog post.

技術者ブログ-Deno Deploy Classic 終了に伴うDiscord BOT移行

技術者ブログとして日ごろ取り組んでいる学習内容を紹介します。
以前作成したDiscordのBOTを置いていた場所が再構築されたことに伴い、新しいDenoに資産を移動させて欲しいというメールが届きました。
今回の資産移動により無料での24時間稼働が継続できたので、今回はそちらについてご紹介します。

Deno Deployとは

本題に入る前に、まずDeno Deployについて簡単に説明します。
Deno開発チームが提供するサーバーレスのエッジコンピューティングサービスです。
TypeScriptやJavaScriptで作成したアプリケーションを、サーバーの構築や運用を意識せずにインターネット上へ公開できるクラウドサービスです。手軽にWebアプリやAPI、Botなどをデプロイできることから、多くの開発者に利用されてきました。

Deno Deploy Classicからのメール内容

具体的にどんなメールが届いたかというと、以下のような内容でした。
・Deno Deploy Classicが2026/7/20で終了
・それ以降Classic上のアプリは停止
・自動移行はされない
・手動で新しいDeployへ移行する必要がある

作業前に確認すること

①Classicを使用しているか
メールが届いているので使用していることは当たり前ですが、念のためClassicを使用しているか確認します。
https://dash.deno.com
上記にプロジェクトがあれば移行対象です。

②GitHubにソースコードがあるか
確認事項
・GitHubリポジトリ
・mainブランチ
・最新コード

③環境変数を控える
Deno Deploy Classicの移動させるプロジェクトを開き、「setting(舞台設定)」→「Environment Variables(環境変数)」を確認します。
ここでDISCORD_TOKENなどでTOKENが設定されているはずです。このTOKENも自動移行されないので、このTOKENのメモを残してあるのであれば、そちらが移行時に必要になります。
もし制作時に登録してTOKENのメモを残していない場合はDiscord Developer Portalから新しいTOKENを再発行する必要があります。

画像はブラウザの日本語訳表示になっているため日本語が不自然になっていますが、設定していますね。
今回は制作時のメモにTOKENが控えてあったのでTOKEN再取得は割愛します。

余談ですが…現在のDiscordBotは動いていない状態です。
オフラインに居ます。

実際の移行手順

①新しいDeno Deployへログイン
https://console.deno.com/

②Organization作成
Organization name・Organization slugを入力して「Create Organization」を押下。
押下したら前のDeno Deployが開きましたが、その場合は新しいDeno Deploy画面を開いて作成したOrganizationが表示されているか確認。



③New app押下
Appsタブを押下し、Applicationsを開き、New appを押下します。

Create a new applicationsを開き、自分のGitHubを選んで、Botのリポジトリを選択する。
下にスクロールして、Deployment targetsを自分の選択。
今回は無料利用なのでManagedはFree Regionsを選択して、Create Appを押下。
※ここではGitHubにソースを上げていて、GitHubと新しいDenoDeploy連携をしている前提です。

ビルドが始まりますがKV Databaseの移行をしていないと失敗します。

プロジェクト内のDatabaseを押し、Databaseの画面を開いてKV Databaseの移行をする。
以下のページのDeno KVの+Attachを押下

provision new Deno KV押下でKV Databaseを作成する

作成したDatabaseが選択されていることを確認して「Attach Database」押下

Buildの画面に戻り「Retry Build」押下

④環境変数を設定する
新しいDeno DeployのOrganization内にあるSettingのEnvironment VariablesにDISCORD_TOKENを設定する

⑤Discordでオンラインになったか確認する
なりました。


これであとは動作確認をして、翌日も問題なく動いていれば完了です。
長くなりましたが、これで今回の技術者ブログを終わります。

次回の技術者ブログをお楽しみに。

Employee Profiles

Hello! Thank you for visiting my blog. I’m ‘Boo ✊’, and I joined the company in April 2026 as a new graduate! In this post, I’d like to share what inspired me to join the company and my impressions after starting my job.

The reason I joined the company

I spent two years at a vocational college in Nagoya, where I mainly studied for certifications and learned the fundamentals of IT, including programming languages.

Since I myself am a foreign national, I focused my job search—right after advancing to my second year—on companies that actively welcome foreign employees. However, there were only a few companies with such an environment, and at first, I felt that job hunting was quite challenging.

Around that time, my teacher introduced me to Dandelions. Later, the company visited our school to give a presentation, and that’s when I learned in detail that people of various nationalities work there and that everyone enjoys working together in a friendly environment. Feeling drawn to the company’s appeal, I proceeded with the selection process and was fortunate to receive an offer.

During the winter after receiving my job offer, I learned that the company was hosting an internship, so I decided to participate in order to experience the actual workplace atmosphere. I still remember how moved I was by what I saw there. Even though many employees were foreign nationals, everyone communicated actively regardless of nationality, and the environment was so flat and friendly that you could hardly feel any hierarchy. They genuinely enjoyed talking and working together. Just as I had heard during the company briefing, the atmosphere was bright, positive, and fun. Experiencing it firsthand made me truly excited about becoming a member of Dandelions and working in such a wonderful place.

Impressions After Joining the Company

Since I’m still in the training period, I haven’t started full‑fledged work yet, but I’m receiving careful instruction on business etiquette as a working professional and on how to communicate smoothly with colleagues from different nationalities.

Business etiquette, in particular, feels challenging because there is so much to learn. From grooming rules to exchanging business cards, even a small mistake can come across as impolite, so I’m realizing how important it is to properly learn and internalize the correct practices.

I’m also studying to obtain certifications, and I’m continuing to work hard toward passing them. Since I’ve just joined the company, there are still many things I don’t fully understand, but I’m asking lots of questions and learning as much as I can from my seniors. My goal is to become a ‘development engineer’ who can contribute to Dandelions as soon as possible, even if it’s just one day earlier, so I’ll keep doing my best!

Self‑Introduction

Lastly, let me share a bit about my hobbies. My hobby is going to the gym. Not only do I train at a regular gym, but I actually practice martial arts as well! I love both watching matches and moving my body to fight myself.

I usually go to the gym after work or on weekend mornings. Right now, I’m training every day with a big goal in mind — winning a tournament! Staying active not only boosts my motivation for work but also serves as the best stress relief. I truly recommend it for refreshing your mind and body, so I hope you’ll give it a try too!

Thank you so much for reading all the way to the end.
That’s all for this post.
Please look forward to the next employee introduction as well!!

社員紹介

こんにちは!ブログをご覧いただきありがとうございます。 2026年4月に新卒として入社いたしました、「ブー✊」です! 今回は、私が入社したきっかけや入社後の感想について書いていこうと思います。

入社したきっかけ

私は名古屋の専門学校で2年間、主に資格取得の勉強やプログラミング言語といったITの基礎を学びました。

私自身が外国籍ということもあり、2年生に進級してすぐに始めた就職活動では、「外国籍の社員を積極的に受け入れている会社」という条件に絞って探していました。しかし、そうした環境が整っている会社は少なく、最初は就職活動の難しさを感じていました。

そんな時に、学校の先生から紹介してもらったのがダンデライオンズでした。その後、学校に来ていただいて企業説明をしてもらう機会があり、そこで「色々な国籍の人が働いていること」や「みんなで仲良く楽しく仕事をしていること」を詳しく知りました。魅力を深く知った私は選考へと進み、無事に内定をいただくことができました。

そして内定後の冬、会社がインターンシップを開催していることを知り、実際の職場の雰囲気を体験するために参加しました。そこで見た光景には、本当に感動したのを覚えています。外国籍の社員さんが多く在籍している中で、国籍に関係なく常に活発なコミュニケーションが行われており、上下関係を感じさせないほどフラットで仲良く会話を楽しんでいました。説明会で聞いた通り、すごく雰囲気が明るくて楽しい会社だなと肌で実感し、私もこの場所で、ダンデライオンズの一員としてこれから働けることがとても楽しみになりました。

入社後の感想

現在は研修期間中のため、まだ本格的な業務には入っていませんが、社会人としてのビジネスマナーや、外国籍の方と円滑にコミュニケーションを取るための方法などを丁寧に教えていただいています。

特にビジネスマナーは、覚えることが多くて難しいと感じる毎日です。身だしなみのルールや名刺交換など、間違えて覚えてしまうと相手に対して失礼になってしまうため、正しいルールをしっかり身に付けることの大切さを実感しています。

また、現在は資格取得に向けた勉強にも取り組んでおり、まずは合格に向けて努力を続けています。 入社したばかりでまだ分からないことが多いですが、先輩方にたくさん質問し、多くのことを吸収して、一日でも早くダンデライオンズの一員として戦力になれるような「開発エンジニア」を目指して頑張ります!

自己紹介

最後に、私の趣味について紹介させてください。 私の趣味はジムに行くことです。普通のジムでトレーニングをするだけでなく、実は格闘技もやっています!観戦するのも、自分で実際に体を動かして戦うのもどちらも大好きです。

普段は仕事終わりや、土日の午前中といった時間を活用してジムに通っています。今は「大会で優勝すること」を大きな目標に掲げて、日々練習に励んでいます! 体を動かすことは、仕事へのモチベーションを高めるだけでなく、最高のストレス発散にもなります。リフレッシュにも本当におすすめなので、皆さんもぜひ体を動かしてみてください!

ここまで読んでいただきありがとうございました。
今回は以上となります。
次回の社員紹介もお楽しみに!!

Internal Study Session Report: How to Write a Readable Internal Blog and the Basics of WordPress

This time, we held an internal study session titled “How to Write an Internal Blog and the Basics of WordPress.”

Here’s a look at how it went.

Internal blogs are valuable assets for sharing technical information, research findings, and insights gained through daily work. At the same time, it’s not uncommon to hear people say, “I don’t know what to write,” or “I’m not good at writing.”

In this study session, we focused not on writing skills themselves but on “tips for creating articles that effectively communicate to readers.” The session covered practical topics for real-world use, including how to write blog posts, basic WordPress operations, handling images, and key points to keep in mind when using AI.

Topics Covered in the Study Session

In this study session, we learned about the following topics.

  • How to structure articles with the reader in mind
  • How to create effective titles and headings (H-tags)
  • How to write easy-to-read text using bullet points and paragraph breaks
  • Basic operations in WordPress (Gutenberg)
  • Useful editing features such as List View and grouping
  • Image optimization and the use of WebP format
  • Key points for creating screenshots
  • Secure handling of images and files with information security in mind
  • Important considerations and effective methods when using AI

We didn’t just focus on learning how to operate WordPress; we also emphasized the importance of writing articles with the perspective that they will serve as resources for someone in the future.

Scenes from the Study Session

Internal blogs are assets that carry knowledge into the future.

An internal blog doesn’t end at the moment it’s written.

By sharing the knowledge, insights, and trial‑and‑error experiences gained through daily work and learning, individual experiences become assets for the entire organization. Not only technical information but also lessons learned on the job, study session content, and work-related improvements can all serve as valuable knowledge for other team members.

Internal blogs also serve as a record of activities and initiatives. By documenting “what was learned,” “why a particular approach was chosen,” and “what results were achieved,” they become valuable resources for your future self and for members who join later and need to look back.

In addition, articles such as employee introductions and event reports help convey the company’s atmosphere and the people who work there. They not only deepen mutual understanding among team members but also contribute to recruitment efforts and corporate branding.

An internal blog is a “company resource that someone in the future will read.” With this study session as a starting point, I hope each person will keep in mind how to create articles that are a little easier to read and a little clearer to understand, leading to even more valuable information sharing.

We plan to continue holding study sessions on WordPress in the future.
Please look forward to the next article as well!


社内勉強会レポート:読みやすい社内ブログの書き方とWordPressの基本

今回は社内勉強会「社内ブログの書き方とWordPressの基本」を開催しました。

その様子をご紹介します。

社内ブログは、技術情報や調査結果、業務で得た知見を共有するための大切な資産です。一方で、「何を書けばいいのか分からない」「文章を書くのが苦手」という声も少なくありません。

今回の勉強会では、文章力ではなく「読み手に伝わる記事を書くためのコツ」をテーマに、ブログの書き方からWordPressの基本操作、画像の扱い方、AI活用時の注意点まで、実際の運用を意識した内容を紹介しました。

勉強会で取り上げた内容

今回の勉強会では、次のようなテーマについて学びました。

  • 読者を意識した記事構成の考え方
  • 読まれやすいタイトルや見出し(Hタグ)の付け方
  • 箇条書きや段落分けによる読みやすい文章の作り方
  • WordPress(Gutenberg)の基本操作
  • リストビューやグループ化など便利な編集機能
  • 画像の最適化やWebP形式の活用
  • スクリーンショット作成時のポイント
  • 情報セキュリティを意識した画像・ファイル管理
  • AIを活用する際の注意点と効果的な使い方

単にWordPressの操作方法を学ぶだけではなく、「未来の誰かが読む資料」という視点で記事を書くことの大切さについても共有しました。

勉強会の様子

社内ブログは知識を未来へつなぐ資産

社内ブログは、書いた時点で終わりではありません。

日々の業務や学習の中で得た知識や気付き、試行錯誤した内容を共有することで、個人の経験は組織全体の財産になります。技術情報だけでなく、業務で得た学びや勉強会の内容、仕事の工夫なども、他のメンバーにとって価値あるナレッジになります。

また、社内ブログは活動や取り組みを記録として残す役割もあります。「何を学んだか」「なぜその方法を選んだか」「どのような成果があったか」を残すことで、未来の自分や後から参加したメンバーが振り返るための貴重な資料になります。

さらに、社員紹介やイベント紹介などの記事は、会社の雰囲気や働く人の姿を伝え、メンバー同士の理解を深めるだけでなく、採用活動や企業ブランディングにもつながります。

社内ブログは、「未来の誰かが読む社内資料」です。今回の勉強会をきっかけに、一人ひとりが「少し読みやすく、少し伝わりやすい記事」を意識し、より価値のある情報発信につなげていければと思います

今後もWordPressをテーマにした勉強会を継続して開催していく予定です。
次回の記事もぜひお楽しみに!


Engineer’s Blog: New Features in WordPress 7.0 and How to Use Them

I’m oz, and I’ll be writing this edition of the Engineer’s Blog.
Since WordPress has recently been updated, I’d like to introduce some new features that should be useful for actual website management, along with how to make the most of them.

1. Responsive Display Control Features

In WordPress 7.0, you can now configure which devices each block is displayed on.

  • Display on PC only
  • Display on tablet only
  • Display on smartphone only

You can configure settings like the ones described above. Previously, you had to write CSS or install a dedicated plugin, but this is now available as a standard feature.

For example, you can hide images on smartphones to improve page load speed, or switch large tables designed for desktop computers to a different layout on smartphones.

2. Adding an Icon Block

WordPress 7.0 also includes a feature that makes it easy to place icons.

Until now, you couldn’t place icons without installing the Font Awesome plugin.

For example,

  • Display a phone icon next to the phone number
  • Display an email icon next to the email address
  • Display a warning icon next to the notes

You can create visually intuitive websites, such as these.

Email

Note

Summary

In this post, we’ve highlighted some of the new features added in WordPress 7.0 that are likely to be useful for actual website management.

The “responsive display control” and “new icon blocks” we’ve introduced here are relatively easy to use even without specialized knowledge, and they help improve the readability and usability of your website.

WordPress is updated regularly, with new features being added all the time. Even if you use it without giving it much thought on a daily basis, taking this opportunity to try out the new features might help you manage your site more efficiently.

There are still many features I haven’t fully mastered myself, so I plan to continue trying out new features and learning how to make the most of them.

That’s all for this post.
Thank you for reading this far.
Stay tuned for the next Engineer Blog post!

技術者ブログ:WordPress 7.0の新機能と活用方法について

今回の技術者ブログを担当します、ozです。
今回、Wordpressがアップデートされたということで、実際のサイト運用で役立ちそうな新機能と、その活用方法について紹介します。

1.レスポンシブ表示の制御機能

WordPress 7.0では、ブロックごとに表示する端末を設定できるようになりました。

例えば、

  • PCのみ表示
  • タブレットのみ表示
  • スマートフォンのみ表示

上記のような設定が可能です。これまではCSSを記述したり、専用プラグインを導入したりする必要がありましたが、標準機能として利用できるようになりました。
活用例としては、スマートフォンでは画像を非表示にしてページの表示速度を改善したり、PC向けの大きな表をスマートフォンでは別のレイアウトに切り替えたりすることができます。

2.アイコンブロックの追加

WordPress 7.0では、アイコンを簡単に配置できる機能も追加されました。

今までは、Font Awesomeプラグインを導入しないとアイコンを配置できませんでした。
例えば、

  • 電話番号の横に電話アイコンを表示する
  • メールアドレスの横にメールアイコンを表示する
  • 注意事項に警告アイコンを表示する

など、視覚的に分かりやすいサイトを作成できます。

メール

注意

まとめ

今回は、WordPress 7.0で追加された新機能の中から、実際のサイト運用で役立ちそうな機能を紹介しました。
今回紹介した「レスポンシブ表示の制御機能」や「アイコンブロックの追加」は、専門的な知識がなくても比較的簡単に利用でき、Webサイトの見やすさや利便性の向上につながります。
WordPressは定期的にアップデートが行われ、新しい機能が追加されています。普段何気なく利用している方も、この機会に新機能を試してみることで、より効率的なサイト運用ができるかもしれません。
私自身もまだ使いこなせていない機能がたくさんあるので、今後も新しい機能を試しながら活用方法を学んでいきたいと思います。

今回は以上になります。
ここまで読んでくださり、ありがとうございました。
次回の技術者ブログもお楽しみに!

Employee Introduction

Thank you for taking the time to read this.
Nice to meet you — my name is NoOne, and I joined the company in April 2026!
In this post, I’d like to share what led me to join Dandelions and my impressions after starting here.

Reason for joining

In Nagoya, I studied mainly Internet security at a technical college specializing in IT. As I continued taking classes, I also had opportunities to learn not only about Internet security and infrastructure, but also system development and web design. The more I explored different fields, the more I found each of them interesting, and before I knew it, I had reached job‑hunting season without being able to decide on one specific path I absolutely wanted to pursue.Since I didn’t have a clear idea of what I wanted to do, I decided to focus not only on finding a job that matched my skills, but also on finding a workplace with a good atmosphere where I could work comfortably. During that uncertain time, I encountered Dandelions at a company information session held at my school and later joined their internship program.During the internship, I found that despite being a global environment with many foreign employees, communication was incredibly smooth, and the company culture encouraged everyone—regardless of position—to freely share their opinions. I felt, ‘I want to work in such a wonderful place,’ and that’s what led me to decide to join the company.

Impressions after joining

I am currently in training, studying for IT‑related certifications and working to improve my technical skills. Even though I attended an IT vocational school, it doesn’t mean the training content is easy for me—there are many things I still don’t understand, and I often find myself getting stuck. However, thanks to the support of senior employees who teach us as instructors, as well as the help we give each other within my cohort, I feel that I’m able to learn and grow in a very supportive environment.
In addition to technical skills, we also receive thorough instruction in business etiquette. Since I was a student until just recently, I’m still not fully confident in basic business manners such as exchanging business cards, proper grooming, and handling phone calls. But my seniors and supervisors always teach me kindly, no matter how many questions I ask. Because they are so willing to help, I feel safe challenging myself every day and can sense my own growth.
As a working professional—and as a member of Dandelions—I want to continue doing my best so that I can represent the company with confidence when interacting with people outside the organization.

Introduction

As a hobby, I enjoy playing PC games. If you’re a PC gamer, you’ve probably felt the urge at least once to ‘perfect your desk setup.’ I’m definitely one of those people — I’ve been gradually improving not only my PC itself but also my peripherals and audio environment.
The PC I’m currently using was something I bought with a ‘looks over performance’ mindset, so lately I’ve been bothered by its slow startup and overall sluggishness. Then, almost as if perfectly timed, a collaboration PC featuring my favorite creator was released! I thought, ‘This is it — a PC that’s perfect both in appearance and performance!’ and decided to buy it.
On top of that, a collaboration keyboard with the same creator is scheduled to arrive around August this year. I’m turning this excitement into motivation and doing my best at work every day.

Thank you for reading all the way to the end.
That’s all for this time.
Please look forward to the next employee introduction!

社員紹介

ご覧いただきありがとうございます。
はじめまして、2026年4月に入社しました「NoOne」です!
今回はダンデライオンズへの入社のきっかけや入社後の感想などについて書いていこうと思います。

入社したきっかけ

私は名古屋でIT系の専門学校でインターネットセキュリティを主に学んでいました。授業を受けていくにつれてインターネットセキュリティやインフラ系だけでなく、システム開発やWebデザインにも触れる機会がありました。幅広いことを学ぶうちにどれも面白く感じ、自分の中で「これを絶対にやりたい!」というものを決められないまま就活の時期を迎えていました。やりたいことが特に決まっていなかった私は、「自分に合った仕事内容」だけではなく、「雰囲気が良く働きやすい環境」を軸に探すことにしました。そんな曖昧なときに、学校の会社説明会でダンデライオンズに出会い、インターンシップに参加しました。インターンシップでは外国籍の方が多く在籍しているグローバルな環境でありながらコミュニケーションが非常にスムーズで、上下関係なく誰でも意見を発信できる会社だと感じました。「こんな素敵な場所で働きたい!」と思い入社を決意しました。

入社後の感想

現在研修中で、IT系の資格対策勉強や技術面の学習に取り組んでいます。IT系の専門学校に通っていたからといって、研修内容が簡単にわかるというわけではなく、分からないことが多く手が止まってしまう場面も多々あります。そんな中、講師として教えてくださる先輩社員の方にサポートしていただいたり、同期のメンバーで教え合ったりしながら学びを深められるとても良い環境で研修を進められていると感じています。また、研修では技術面だけでなく、ビジネスマナーもとても丁寧に教えていただいています。ついこの間まで学生だった私は、名刺交換や身だしなみのルール、電話対応など、基本的なビジネスマナーもおぼつかない状態ですが、先輩や上司の方々がいつも親切に教えてくださいます。分からないところをたくさん質問しても快く教えていただけるため、日々安心して挑戦を重ね、成長できていると感じます。社会人として、そしてダンデライオンズの一員として社外に出ても恥ずかしくないようこれからも頑張っていきたいです。

自己紹介

私は趣味で、パソコンゲームをしています。PCゲーマーの方なら、一度は「デスク周りをこだわりたい!」と思ったことがあるのではないでしょうか。私もその1人で、PC本体だけでなく、周辺機器や音響環境にもこだわりたいと、コツコツ環境を整えています!今使っているPCは「性能を妥協し見た目重視」で購入したものだったため、最近起動や動作の遅さが気になっていました。そんな中、まるでタイミングを見計らったかのように、推しのコラボPCが発売されたのです!「これなら見た目も性能も完璧なPCが手に入る!」と、思い切って購入しました。さらに今年の8月頃には、推しのコラボキーボードも届く予定です。このワクワク感をモチベーションに変えて、日々の仕事を頑張ります!

ここまで読んでいただきありがとうございました。
今回は以上となります。
次回の社員紹介もお楽しみに!!