Introducing Our November Internal Contest!

Thank you for taking the time to read this post.
I’m “Omatsu” from the Operations Management Department, and I’ll be your guide for this blog. Today, I’ll introduce the year-end report meeting held in November 2024 as part of our event updates.

Section 0

Section 0 consists of the Web Design Unit (Unit 0) and the Cloud & Infrastructure Unit (Unit 3). The presentation of Section 0 covered the following topics:

  • Trend Research
  • Recruitment Website
  • Corporate Website
  • Server Management
  • Internal Security Literacy
  • Employee Welfare Services

The trend research on websites revealed some surprising insights. Much like fashion trends, the “Y2K” aesthetic has made its way into web design. Additionally, there’s a trend where websites display mobile-like layouts, even when viewed on a PC. As someone not deeply familiar with IT trends, I was amazed to see how trends can have parallels across different industries. It was a valuable learning experience.

In addition, Section 0 has been developing an employee welfare service called “Gorippuku” (御利福). Though only part of it was introduced, the web version demonstrated features like user information management, while the app version showcased functions such as displaying coupon QR codes. At first, the discussion seemed quite technical, which made me nervous, but once the explanation was given, the operations turned out to be straightforward.

Section 1

Section 1 comprises the AI Unit (Unit 1) and the Low-Code Unit (Unit 2). Their presentation focused on activities aimed at “efficiency improvement,” including:

  • Updates to Internal Systems
  • App Development for Image Recognition
  • Access to Internal Systems via Facial Recognition
  • Database Implementation for Internal Use

I was particularly amazed to learn that facial recognition, which is now a standard feature for unlocking smartphones (like FaceID), can also be used to access internal systems. Interestingly, they explained that the system even displays a matching score, but lighting conditions or clothing colors could sometimes result in incorrect matches. It was fascinating to see the challenges involved in implementing such advanced technologies.

Summary

This year-end report meeting provided a valuable opportunity to reflect on our activities over the past year. Like last year’s event, the presentations were interactive, making it an enjoyable and engaging experience. Even for someone with limited technical knowledge like me, the content was easy to understand.

Section 0’s presentation on security literacy was particularly impactful. It served as a reminder to be cautious about suspicious emails, not to open them lightly, and to report immediately if one is accidentally opened. This was a great reminder to maintain vigilance not only for work emails but also for personal accounts.

In Section 1, the features we requested from the Operations Management Department were incorporated into the system. Since these functionalities were implemented specifically for us, we plan to make full use of them to streamline our operations further.

That’s all for this update.
Stay tuned for the next blog post!

11月社内コンテスト紹介!

ご覧いただきありがとうございます。
今回のブログ記事を担当します、業務管理部の「おまつ」です。今回はイベント紹介ということで2024年11月に開催された期末報告会についてご紹介します。

第0セクション

第0セクションは、第0ユニット(ウェブサイトデザイン)と第3ユニット(クラウド・インフラ)で構成されています。
第0セクションの発表は、下記内容でした。
・トレンド調査
・リクルートサイト
・コーポレートサイト
・サーバー管理
・社内セキュリティーリテラシー
・福利厚生サービス

Webサイトのトレンド調査はファッションのトレンドと同じくY2Kが入っていたり、PCで見たときにスマホ風のレイアウトで表示されるものが入っていたりとITの知識・流行に疎い私はとても驚き、トレンドというのはどういった分野でも共通する部分があるということを新たに知ることができました。

また、第0セクションでは御利福(ごりっぷく)という福利厚生サービスを開発しています。一部の紹介とはなりますが、Web版では管理ユーザー情報登録、アプリ版ではクーポンQR情報の表示などを実際に行いました。難しそうな話だったので焦りましたが、説明を受けると簡単に操作することができました。

第1セクション

第1セクションは、第1ユニット(AI)と第2ユニット(ローコード)で構成されています。
発表は、「省力化」を目的とした活動についてでした。
・社内システムのアップデート
・画像認証のアプリ化
・顔認証による社内システムへのアクセスについて
・社内DB化について でした。

今では当たり前になったFaceIDでのスマホのロック解除ですが、それが社内システムへのアクセスで行うことができるようになるとのことで驚きました。また、一致度についても表示されており、服の色や照明の明るさなどで似ていない人が候補に出てしまうこともあるそうです。

まとめ

1年どういった活動をしてきたかを知ることができる貴重な時間でした。そして、昨年の期末報告会に引き続き、参加型の発表で楽しく積極的に聞くことができ、知識の少ない私でも理解しやすい内容でした。

第0セクションではセキュリティーリテラシーについての発表もあり、怪しいメールなどは気軽に開かないこと、開いてしまった場合はきちんと報告することの重要さを再認識しました。会社で使用しているメールもそうですが、プライベートで使用しているメールから怪しいメールへの危機意識を持ち、意識を高めることが重要だと感じました。

第1セクションには業務管理部よりリクエストしていた機能を反映していただきました。せっかく反映していただいたシステムなので上手に使用し、業務管理部の省力化につなげていきたいと思います。

今回の紹介は以上となります。
次回のブログをお楽しみに!

Engineer Blog – About QR Code Generation

Welcome to our engineer blog, where we share our ongoing learning experiences. This post is part of Unit 0, which focuses on web design. Today, I’d like to introduce an opportunity I had to work with something less commonly encountered: QR code generation.

Preparation

For this implementation, I used Java. Since my development environment is Gradle-based, adding the necessary libraries was as simple as including the following in the build.gradle file. (Isn’t it convenient how accessible things have become these days?)

Reference Site:
Getting Started Developing · zxing/zxing Wiki · GitHub

The library used here is ZXing, an open-source Java library that enables the creation and reading of one-dimensional codes (such as barcodes) and two-dimensional codes (like QR codes).

Implementation

The key element for generating QR codes is the encode method of the QRCodeWriter class. As summarized in the comments, the following parameters can be specified:

  1. First parameter: The content to be displayed.
  2. Second parameter: The output format ( BarcodeFormat from the ZXing 3.5.3 API).
  3. Third parameter: The dimensions.

The generated data is stored in a variable of type BitMatrix (bm). By specifying the output format in the writeToStream method, you can save the generated QR code in your desired format. In this case, we output the QR code in PNG format.

While the actual implementation involves handling API requests and returning the output result to the screen, I’ll omit those details here.

Summary

Nowadays, if you just want to generate a QR code once for testing purposes, there’s no need to write a program from scratch. You can find many online QR code generators with just a quick search. Some even let you customize the design or offer formats tailored to specific use cases, making them surprisingly fun to explore.

This post covered only the basics, but I hope it gave you an idea of how QR code generation works. If you found this interesting, I’d be delighted.

Stay tuned for the next engineer blog post!

P.S. The content of the QR code includes a closing message!

技術者ブログ –QRコード生成について

技術者ブログとして日ごろ取り組んでいる学習内容をご紹介します。
今回はWEBデザインをテーマにしている第0ユニットです。
普段触ることないQRコード生成について触れる
機会があったので、そちらをご紹介したいと思います。

準備

今回はjavaで作っていきたいと思います。
私の開発環境はgradleを使っているので、
build.gradleファイルに以下追記してあげるだけで、必要なライブラリーが読み込まれます。
(便利な世の中になりましたね…)

参考サイト:Getting Started Developing · zxing/zxing Wiki · GitHub

使用しているライブラリーは、「ZXing」です。
Javaで実装されているオープンソースで、一次元コード(バーコードなど)、二次元コード(QRコードなど)の作成/読取を行うことができる画像処理ライブラリです。

作成

作成するにあたってポイントになるのが、「QRCodeWriter」の「encode」メソッドです。
コメントにざっくり書いてありますが、以下パラメータを指定することができます。
第一引数:表示する内容
第二引数:出力フォーマット指定(BarcodeFormat (ZXing 3.5.3 API))
第三引数:縦横のサイズ

生成したものをBitMatrix型の変数(bm)に格納し、writeToStreamメソッドで出力形式を指定すれば出力することができます。今回はQRコードをpng形式で出力してみました。
本実装はAPIリクエストを受け付けてそれに対応する出力結果を画面に返却していますが、
そこの部分は割愛します。

まとめ

今の時代は、一回だけお試しに作りたい時などの場合、わざわざプログラムを組まなくても
ネットで検索すれば多数の生成サイトが見つかります。
中にはデザインをいじれたり、用途に応じてフォーマットが用意されていたりと探してみると意外と面白いです。
というわけで、本投稿ではシンプルな部分だけではありますが、
QRコードを作成する仕組みをご紹介致しました。
少しでも興味を持っていただければ幸いです。

それでは、次回の技術者ブログをお楽しみに。

※QRコード内容は締めの挨拶です!

New Year’s Greetings and Aspirations

A Journey to Nachi Falls
Thank you for your unwavering support and kindness toward Dandelions over the past year. As we welcome 2025, I’m delighted to share our New Year’s wishes and hopes for the year ahead.

Nachi Shrine

Recently, I had the opportunity to visit Nachi Falls, a UNESCO World Heritage Site. Nestled in the sacred Kumano region, this majestic waterfall, with its 133-meter drop and lush surroundings, left me in awe. Its powerful and endless flow reminded me of nature’s incredible strength and resilience. Standing there, I felt a profound sense of calm and renewal, paired with a determination to keep moving forward with steady, unstoppable energy, just like the falls themselves.

A New Challenge
The inspiration drawn from Nachi Falls resonates deeply with our theme for the 8th phase of our journey: Health-Oriented Management and Challenges. To achieve sustainable growth, both individuals and organizations require not intermittent effort but a continuous, ever-flowing strength, much like the falls.To this end, we aim to cultivate a corporate culture that prioritizes the health and fulfillment of every employee, fostering vitality and creativity without interruption. We firmly believe that physical and mental well-being lay the foundation for generating innovative ideas, overcoming challenges, and delivering new value to society.

Nachi Falls

This year marks a significant milestone in our journey of challenges. Since our establishment in 2017, we have expanded into a variety of fields, including IT systems planning, design, and operations; e-commerce; human resource development consulting; staffing services; and job placement. Building on our past accomplishments, we aim to take a bold leap forward in 2025.

Amid the rapid wave of digital transformation, we will not only integrate ICT technologies but also harness uniquely human strengths such as creativity and empathy. By doing so, we are committed to delivering solutions that embody the essence of “Dandelions” more than ever before.

Aiming to be a Contributing Company
The name “Dandelions” symbolizes resilience and growth—the ability to thrive anywhere and spread seeds of possibility far and wide. Like the steady flow of Nachi Falls, we aim to keep moving forward no matter the challenges, opening new doors and realizing new dreams.

Together, as a unified team, we’re ready to turn our vision of health and challenges into action, delivering services that bring value to our community and partners.

Nachi Mountain

In Closing
Standing before Nachi Falls, I was reminded of the gift of life and the endless energy that surrounds us. Inspired by this, we will continue to grow, creating a workplace where our people can shine and contributing to the success of our customers, partners, and society.

As we step into 2025, I wish you a year filled with growth and opportunity. Thank you for your continued trust and support for Dandelions—we look forward to an exciting year ahead with you.

January 2025
Hideo Takahashi
President & CEO
Dandelions Co., Ltd.

新年のご挨拶 & 挑戦

世界遺産「那智の滝」

旧年中は、ダンデライオンズにひとかたならぬご支援とご厚情を賜り、誠にありがとうございました。2025年の幕開けにあたり、皆さまへ新年のご挨拶を申し上げるとともに、本年の抱負をお伝えしたいと存じます。

那智神社

先日、私は世界遺産に登録されている那智の滝を訪れる機会に恵まれました。古来より霊場として名高い熊野の地にそびえる那智の滝は、高さや水量、そして周囲の緑と相まって、まさに圧倒的な存在感を放っていました。落差約133メートルから勢いよく流れ落ちる水の力強さ、その一瞬たりとも途切れることのない流れ――それらは自然の偉大さを感じさせるだけでなく、人知を超えたエネルギーを与えてくれるものでした。そこに身を置いていると、心が洗われるような静謐さと同時に、「いつでも前に進む、絶えることのない力」を感じずにはいられませんでした。

さらなる挑戦

この那智の滝がもたらしてくれた感動は、私どもが迎える第8期のテーマである「健康経営と挑戦」にも通じるものがあると痛感しております。人や組織が成長を続けるためには、断続的ではなく、那智の滝のように“連綿と流れ続ける”力が不可欠です。そのためにも、まずは社員一人ひとりの健康と働きがいを大切にし、活力と創造性を絶やすことなく保つ企業文化を育んでいきたいと考えております。身体的にも精神的にも健やかな状態であってこそ、常に新しいアイデアが生まれ、困難を乗り越え、社会に向けて新たな価値を提供することができると信じております。

那智の滝

また、本年は当社にとって大きな「挑戦」の節目でもあります。2017年の創立以来、私たちは情報システムの企画・設計・運用受託をはじめ、EC事業、人材開発コンサルティング、労働者派遣や有料職業紹介など、多岐にわたる事業を展開してまいりました。これまでの歩みを原動力に、2025年はさらなる飛躍へ向けて大きく一歩を踏み出したいと考えております。急速に進むデジタルトランスフォーメーションの流れの中で、ICT技術を取り入れるだけでなく、人間の創造力や思いやりといった“人”ならではの強みを掛け合わせることで、これまで以上に“ダンデライオンズらしい”ソリューションを提供してまいります。

貢献する企業へ

私たちが社名に掲げる「Dandelions(たんぽぽ)」は、どんな場所でも力強く根を張り、種を遠くまで運んで花を咲かせる象徴です。私たちもまた、那智の滝の絶え間ない水流のように、どのような状況下でもあきらめずに前進し、新たな可能性を拓き続ける存在でありたいと強く願っています。この思いを共有する社員が一丸となり、「健康経営」と「挑戦」というキーワードを具体的な行動へとつなげることによって、地域社会や企業の皆さまに価値あるサービスをお届けできるよう、全力を尽くしてまいります。

那智山

那智の滝を目の当たりにしたときの、自然と生かされることへの感謝の念や、尽きることのないエネルギーへの畏敬の念を胸に、私たちはこれからも飛躍を続けてまいります。社員がいきいきと働ける環境づくりを進め、お客様をはじめ、パートナーの皆さまや地域社会に貢献する企業として躍進していきたい所存です。

最後に

皆さまにおかれましても、本年が素晴らしい飛躍の一年となりますよう、心よりお祈り申し上げます。今後とも、株式会社ダンデライオンズへの変わらぬご指導とご鞭撻、そして温かいご支援を賜りますよう、何卒よろしくお願い申し上げます。

2025年 1月
株式会社ダンデライオンズ
代表取締役 髙橋英晃

Internal Training Session: Low-Code Development Experience Using Outsystems Part 2

Hello! I’m Ogi, responsible for this edition of our study session blog. I’m excited to share the highlights of our recent internal training session, “Low-Code Development Experience Using Outsystems Part 2”!

Check out the highlights from our previous study session here!

Building on our last session, the goal of this study meeting was to deepen our understanding of low-code development and Outsystems by gaining hands-on experience with Outsystems development. This time, we had many new members join us, making the session even more vibrant and engaging.

Here’s how the study session unfolded:

  1. Recap of the Previous Session
  2. Watching Educational Videos – Focus on UI Development
  3. Hands-On Development with Outsystems
  4. Summary and Q&A

Watching Educational Videos – Focus on UI Development

We kicked off the session by watching official educational videos provided by Outsystems. This time, the videos focused on UI development, where we learned the basics of screen widgets, variables, and client-side logic.

If you’re interested, you can watch the videos here (an Outsystems account is required).

Hands-On Development with Outsystems

After watching the videos, each participant used their own Outsystems environment to start developing. During this hands-on session, we primarily focused on:

  • Adding Widgets and Logic to Screen
  • Utilizing Aggregates ( Learn more about Aggregates here.)
  • Displaying Data on Screen

We experienced firsthand the unique advantages of developing with Outsystems, such as the simplicity of adding widgets through drag-and-drop and the visual manipulation capabilities provided by Aggregates for data retrieval and sorting.

Throughout the development process, we followed the instructor’s explanations and worked on our own projects, enhancing our practical skills.

While listening to the instructor’s explanations, we proceeded with development in our own environments.

Summary

In this study session, we tackled more hands-on content compared to the previous one, successfully conveying the benefits of low-code development and Outsystems. The development experience segment fostered active discussions and Q&A among the participants, further deepening our understanding.

We plan to continue hosting study sessions focused on Outsystems development in the future. Stay tuned for our next article!

社内勉強会:Outsystemsを用いたローコード開発体験 part2

今回の勉強会記事を担当します、第2ユニットのオギです。
今回は社内勉強会「Outsystemsを用いたローコード開発体験 part2」が開催されましたので、その様子をご紹介します!

前回の勉強会の様子はこちら

前回に引き続き、今回の勉強会も「Outsystemsでの開発を体験することで、ローコード開発やOutsystemsへの理解をより深めていくこと」を目的としています。
今回からの参加となるメンバーも多数いて、さらに活気ある勉強会となりました。

勉強会の流れは以下のとおりです。
⓪前回の勉強会のおさらい
①学習動画視聴 -UI開発について-
②Outsystemsでの開発体験
③まとめ、質疑応答

学習動画視聴 -UI開発について-

まずはOutsystemsが公式で提供している学習動画を視聴しました。
今回はUI開発についての動画を通して、画面のウィジェットや変数、クライアントのロジックについての基礎知識を学んでいきます。

こちらのリンクから視聴することができる(Outsystemsのアカウント取得が必要になります)ので、ご興味がある方は見てみてください!

Outsystemsでの開発体験

動画を視聴した後は、各々が構築したOutSystemsの環境を用いて実際に開発を進めました。

今回実施したのは主に以下のとおりです。
・画面へのウィジェット、ロジックの追加
・Aggregateの活用 (Aggregateについてはこちら)
・画面へのデータ表示

画面にウィジェットをドラッグ&ドロップで簡単に追加できたり、Aggregateを用いることでデータの取得やその条件、ソートなどを視覚的に操作できたりといったOutsystemsでの開発ならではの利点を体験しました。

講師の説明を聞きながら自分の環境で開発を進めていきます。

まとめ

今回の勉強会では前回よりもさらに実践的な内容を取り上げ、ローコード開発やOutsystemsの良さを伝えられた会になったかと思います。
開発体験のパートでは、近くのメンバーとの話し合いや質疑応答が盛んにおこなわれ、理解も一層深められたのではないでしょうか。

今後もOutsystemsの開発をテーマとした勉強会を開催予定です!
次回の記事もお楽しみに。

Engineering Blog – Internal Security Training (Training Emails)

Welcome to the engineering blog, where we share what we’re learning and working on daily.

As part of our employee security education efforts, we conducted a training email exercise.

What is a Training Email?

A training email involves sending employees simulated emails that mimic targeted attack emails to strengthen their ability to respond effectively.
Targeted attack emails are a sophisticated technique aimed at stealing sensitive information, often directed at specific organizations or individuals.

In this training, pseudo-attack emails resembling work-related communications were sent to selected employees to evaluate whether they would open the email or its attachments.

What We Did

1. Created Realistic and Persuasive Email Content

We designed email content and subject lines that employees might open without thinking twice. The goal was to create emails that seemed plausible during the training period.

Example of training email

2. Created a Fake Virus File (Word Document)

For this exercise, we embedded a mechanism into a Word file that accessed our company-managed server when opened.

If an employee opened the attachment, the file accessed the server and logged a unique ID hidden in the document.
By checking the output log, we were able to identify which employees had opened the file.

Unfortunately, a few employees did open the attachment during this exercise.

How training emails work

3. Conducted Internal Re-education

We followed up with additional internal training to reinforce measures against targeted emails and raise awareness further.

Refresher materials

Summary

This exercise helped raise employees’ security awareness.
We plan to continue these efforts in the future to further improve security measures.

Thank you for reading, and stay tuned for the next edition of the engineering blog!

技術者ブログ – 社内セキュリティ訓練 (訓練メール)

技術者ブログとして日ごろ取り組んでいる学習内容をご紹介します。

社員のセキュリティ教育の一環として訓練メールを実施しました。

訓練メールとは

標的型攻撃メールを模した疑似的なメールを従業員に送信して、攻撃メールへの対応能力を養うためのものです。
標的型攻撃メールは、重大な情報を盗むことを目的として特定の組織や個人に送信される巧妙な攻撃手法です。

そこで、訓練メールでは、業務用メールなどに似た疑似攻撃メールを対象従業員に送信し、メールを開封したかどうか、添付ファイルを開いたかどうか評価しました。

実際に行ったこと

1.引っ掛かりやすいメール文章を作成

何気なく開いてしまうかもしれないメールの文章や、名前を考えてメールを作成しました。

訓練メールを行った時期にありえそうなメールを作ることを考えました。

訓練メール文章

2.偽ウイルスファイル(Word)作成

今回は、Wordファイル内に、ファイルを開くと自社で管理しているサーバへアクセスする仕組みを組み込みました。

訓練メールで、添付ファイルを開いてしまったら、

サーバへアクセスし、Word内に仕組まれていたIDをログに出力します。

出力されたIDによって、どの従業員が添付ファイルを開いたか特定できます。

ちなみに、今回の訓練で数人添付ファイルを開いてしまいました。

訓練メールの仕組み

3.社内再教育

再度社内教育を行い標的型メールへの対策を再認識しました。

再教育資料

まとめ

今回の訓練により従業員のセキュリティ意識の向上になったかと思います。
今後も、続けていきたいと思いました。

以上となります。

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