Skip to content

Commit d574d9c

Browse files
authored
Merge pull request #1443 from future-architect/feature
アドベントカレンダーの場合は、キャリア採用導線を無くす
2 parents 0e4c579 + 0eb70f2 commit d574d9c

5 files changed

+12
-7
lines changed

source/_posts/20241204a_DBUnitでいろいろはまった.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ category:
1111
thumbnail: /images/20241204a/thumbnail.jpg
1212
author: 澁川喜規
1313
lede: "Javaでデータベースを使うプロジェクトだったのでDBUnit使うぜ、と導入したのですが、細かいところで引っかかったりしたので備忘メモです。"
14+
skip_career: true
1415
---
1516
<img src="/images/20241204a/dbunit.jpg" alt="" width="500" height="300">
1617

@@ -71,11 +72,11 @@ Javaでデータベースを使うプロジェクトだったのでDBUnit使う
7172
"system");
7273
IDataSet dataSetSys = new FlatXmlDataSetBuilder().build(
7374
new File("src/test/resources/dbunit/fixture.xml"));
74-
75+
7576
// このフィルターでテーブルを選別
7677
var dataFilterSys = new ExcludeTableFilter(appOnlyTables);
7778
var filterdDatasetSys = new FilteredDataSet(dataFilterSys, dataSetSys);
78-
79+
7980
databaseTesterSys.setDataSet(filterdDatasetSys);
8081
databaseTesterSys.setSetUpOperation(DatabaseOperation.CLEAN_INSERT);
8182
databaseTesterSys.onSetup();

source/_posts/20241205a_TypeScript/JavaScript_Array完全攻略2024.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ category:
1010
thumbnail: /images/20241205a/thumbnail.png
1111
author: 澁川喜規
1212
lede: "イマドキのJavaScriptの書き方2018]というのを以前書いたのだけど、配列周りはかなり変わっているな、というのを思ったので、そこの部分だけアップデートするつもりで書いてみました。"
13+
skip_career: true
1314
---
1415

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

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

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

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

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

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

source/_posts/20241208a_Swift6移行に向けて、Isolation_domainとSendableを理解する.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ category:
1111
thumbnail: /images/20241208a/thumbnail.png
1212
author: 橋本竜我
1313
lede: "SwiftZoomin#20の内容から、Swift6移行に向けて理解が必要なSwift Concurrencyの重要な概念について簡単にまとめました。"
14+
skip_career: true
1415
---
1516
<img src="/images/20241208a/image.png" alt="" width="1200" height="416" loading="lazy">
1617

@@ -158,11 +159,11 @@ actor A {
158159
func run() async {
159160
let box: Box = .init()
160161
let a: A = .init() // actor A のインスタンスa
161-
162+
162163
await a.setBox(box) // actor A のインスタンスaにboxを渡す ⇐ boxがIsolation bounadaryを超えて、actor AのインスタンスaのIsolation domainに入る。
163164
// ここで次のエラーメッセージが出る。
164165
// Sending 'box' risks causing data races
165-
166+
166167
print(box.value)
167168
}
168169
```

source/_posts/20241214a_Gitブランチフロー規約の紹介.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ category:
1313
thumbnail: /images/20241214a/thumbnail.png
1414
author: 宮崎将太
1515
lede: "フューチャー社内の有志メンバーでGitブランチフローの規約を作成しました。ひとまずは形になったので紹介します。"
16+
skip_career: true
1617
---
1718

1819
[GitHub Advent Calendar 2024](https://qiita.com/advent-calendar/2024/github)の14日目の記事です。昨日はwa-chan222さんの[未経験から始めたGitHub活用の基本と学び](https://qiita.com/wa-chan222/items/c951d6ebdded099482c2)でした。

themes/future/layout/_partial/article.ejs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<section class="reference-post margin-bottom-40 nav">
3737
<%- list_reference_posts(post) %>
3838
</section>
39+
<% if (!page.skip_career){ %>
3940
<section class="career-counseling article-entry margin-bottom-40 nav">
4041
<h2 id="career"><a href="#career-counseling" class="headerlink" title="キャリア相談"></a>We're hiring</h2>
4142
<p>フューチャーで一緒に働く仲間を大募集しています!</p>
@@ -62,6 +63,7 @@
6263
</div>
6364
</div>
6465
</section>
66+
<% } %>
6567
</aside>
6668
</footer>
6769
</div>

0 commit comments

Comments
 (0)