Skip to content

Commit

Permalink
Merge pull request #1443 from future-architect/feature
Browse files Browse the repository at this point in the history
アドベントカレンダーの場合は、キャリア採用導線を無くす
  • Loading branch information
ma91n authored Dec 16, 2024
2 parents 0e4c579 + 0eb70f2 commit d574d9c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 3 additions & 2 deletions source/_posts/20241204a_DBUnitでいろいろはまった.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ category:
thumbnail: /images/20241204a/thumbnail.jpg
author: 澁川喜規
lede: "Javaでデータベースを使うプロジェクトだったのでDBUnit使うぜ、と導入したのですが、細かいところで引っかかったりしたので備忘メモです。"
skip_career: true
---
<img src="/images/20241204a/dbunit.jpg" alt="" width="500" height="300">

Expand Down Expand Up @@ -71,11 +72,11 @@ Javaでデータベースを使うプロジェクトだったのでDBUnit使う
"system");
IDataSet dataSetSys = new FlatXmlDataSetBuilder().build(
new File("src/test/resources/dbunit/fixture.xml"));

// このフィルターでテーブルを選別
var dataFilterSys = new ExcludeTableFilter(appOnlyTables);
var filterdDatasetSys = new FilteredDataSet(dataFilterSys, dataSetSys);

databaseTesterSys.setDataSet(filterdDatasetSys);
databaseTesterSys.setSetUpOperation(DatabaseOperation.CLEAN_INSERT);
databaseTesterSys.onSetup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ category:
thumbnail: /images/20241205a/thumbnail.png
author: 澁川喜規
lede: "イマドキのJavaScriptの書き方2018]というのを以前書いたのだけど、配列周りはかなり変わっているな、というのを思ったので、そこの部分だけアップデートするつもりで書いてみました。"
skip_career: true
---

<img src="/images/20241205a/ts2024.png" alt="" width="900" height="513">


[TypeScriptアドベントカレンダー](https://qiita.com/advent-calendar/2024/typescript)の12/5のエントリーです。昨日は@nanasi-1さんの[【TypeScript】ジェネレーターによる遅延評価でフィボナッチ数列を生成する](https://zenn.dev/nanasi_1/articles/22696e18f3a2f9)でした。

[イマドキのJavaScriptの書き方2018](https://qiita.com/shibukawa/items/19ab5c381bbb2e09d0d9)というのを以前書いたのだけど、配列周りはかなり変わっているな、というのを思ったので、そこの部分だけアップデートするつもりで書いてみました。
Expand Down Expand Up @@ -63,7 +63,7 @@ const array1 = [1, 2, 3];

// 空の場合は型指定必須
const array2: string[] = []; // なるべくこちら推奨
const array3 = [] as string[]; // 式として書かないといけない場合は右辺に
const array3 = [] as string[]; // 式として書かないといけない場合は右辺に
```

既存のデータ構造からコピーして作る
Expand Down Expand Up @@ -273,7 +273,7 @@ const newA2 = [0, ...a]; // 先頭にも追加できる
const a = [1, 2, 3, 4, 5];

a.pop(); // 末尾の要素の削除
a.length--; // これでも可能
a.length--; // これでも可能
a.shift(); // 先頭の要素の削除
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ category:
thumbnail: /images/20241208a/thumbnail.png
author: 橋本竜我
lede: "SwiftZoomin#20の内容から、Swift6移行に向けて理解が必要なSwift Concurrencyの重要な概念について簡単にまとめました。"
skip_career: true
---
<img src="/images/20241208a/image.png" alt="" width="1200" height="416" loading="lazy">

Expand Down Expand Up @@ -158,11 +159,11 @@ actor A {
func run() async {
let box: Box = .init()
let a: A = .init() // actor A のインスタンスa

await a.setBox(box) // actor A のインスタンスaにboxを渡す ⇐ boxがIsolation bounadaryを超えて、actor AのインスタンスaのIsolation domainに入る。
// ここで次のエラーメッセージが出る。
// Sending 'box' risks causing data races

print(box.value)
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ category:
thumbnail: /images/20241214a/thumbnail.png
author: 宮崎将太
lede: "フューチャー社内の有志メンバーでGitブランチフローの規約を作成しました。ひとまずは形になったので紹介します。"
skip_career: true
---

[GitHub Advent Calendar 2024](https://qiita.com/advent-calendar/2024/github)の14日目の記事です。昨日はwa-chan222さんの[未経験から始めたGitHub活用の基本と学び](https://qiita.com/wa-chan222/items/c951d6ebdded099482c2)でした。
Expand Down
2 changes: 2 additions & 0 deletions themes/future/layout/_partial/article.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<section class="reference-post margin-bottom-40 nav">
<%- list_reference_posts(post) %>
</section>
<% if (!page.skip_career){ %>
<section class="career-counseling article-entry margin-bottom-40 nav">
<h2 id="career"><a href="#career-counseling" class="headerlink" title="キャリア相談"></a>We're hiring</h2>
<p>フューチャーで一緒に働く仲間を大募集しています!</p>
Expand All @@ -62,6 +63,7 @@
</div>
</div>
</section>
<% } %>
</aside>
</footer>
</div>
Expand Down

0 comments on commit d574d9c

Please sign in to comment.