diff --git "a/source/_posts/20241204a_DBUnit\343\201\247\343\201\204\343\202\215\343\201\204\343\202\215\343\201\257\343\201\276\343\201\243\343\201\237.md" "b/source/_posts/20241204a_DBUnit\343\201\247\343\201\204\343\202\215\343\201\204\343\202\215\343\201\257\343\201\276\343\201\243\343\201\237.md" index ca78a1d73a38..475f942cd9ad 100644 --- "a/source/_posts/20241204a_DBUnit\343\201\247\343\201\204\343\202\215\343\201\204\343\202\215\343\201\257\343\201\276\343\201\243\343\201\237.md" +++ "b/source/_posts/20241204a_DBUnit\343\201\247\343\201\204\343\202\215\343\201\204\343\202\215\343\201\257\343\201\276\343\201\243\343\201\237.md" @@ -11,6 +11,7 @@ category: thumbnail: /images/20241204a/thumbnail.jpg author: 澁川喜規 lede: "Javaでデータベースを使うプロジェクトだったのでDBUnit使うぜ、と導入したのですが、細かいところで引っかかったりしたので備忘メモです。" +skip_career: true --- @@ -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(); diff --git "a/source/_posts/20241205a_TypeScript\357\274\217JavaScript_Array\345\256\214\345\205\250\346\224\273\347\225\2452024.md" "b/source/_posts/20241205a_TypeScript\357\274\217JavaScript_Array\345\256\214\345\205\250\346\224\273\347\225\2452024.md" index c10f3aa904d2..d10d0f7a3e93 100644 --- "a/source/_posts/20241205a_TypeScript\357\274\217JavaScript_Array\345\256\214\345\205\250\346\224\273\347\225\2452024.md" +++ "b/source/_posts/20241205a_TypeScript\357\274\217JavaScript_Array\345\256\214\345\205\250\346\224\273\347\225\2452024.md" @@ -10,11 +10,11 @@ category: thumbnail: /images/20241205a/thumbnail.png author: 澁川喜規 lede: "イマドキのJavaScriptの書き方2018]というのを以前書いたのだけど、配列周りはかなり変わっているな、というのを思ったので、そこの部分だけアップデートするつもりで書いてみました。" +skip_career: true --- - [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)というのを以前書いたのだけど、配列周りはかなり変わっているな、というのを思ったので、そこの部分だけアップデートするつもりで書いてみました。 @@ -63,7 +63,7 @@ const array1 = [1, 2, 3]; // 空の場合は型指定必須 const array2: string[] = []; // なるべくこちら推奨 -const array3 = [] as string[]; // 式として書かないといけない場合は右辺に +const array3 = [] as string[]; // 式として書かないといけない場合は右辺に ``` 既存のデータ構造からコピーして作る @@ -273,7 +273,7 @@ const newA2 = [0, ...a]; // 先頭にも追加できる const a = [1, 2, 3, 4, 5]; a.pop(); // 末尾の要素の削除 -a.length--; // これでも可能 +a.length--; // これでも可能 a.shift(); // 先頭の要素の削除 ``` diff --git "a/source/_posts/20241208a_Swift6\347\247\273\350\241\214\343\201\253\345\220\221\343\201\221\343\201\246\343\200\201Isolation_domain\343\201\250Sendable\343\202\222\347\220\206\350\247\243\343\201\231\343\202\213.md" "b/source/_posts/20241208a_Swift6\347\247\273\350\241\214\343\201\253\345\220\221\343\201\221\343\201\246\343\200\201Isolation_domain\343\201\250Sendable\343\202\222\347\220\206\350\247\243\343\201\231\343\202\213.md" index fc575dd45b79..a1927b743043 100644 --- "a/source/_posts/20241208a_Swift6\347\247\273\350\241\214\343\201\253\345\220\221\343\201\221\343\201\246\343\200\201Isolation_domain\343\201\250Sendable\343\202\222\347\220\206\350\247\243\343\201\231\343\202\213.md" +++ "b/source/_posts/20241208a_Swift6\347\247\273\350\241\214\343\201\253\345\220\221\343\201\221\343\201\246\343\200\201Isolation_domain\343\201\250Sendable\343\202\222\347\220\206\350\247\243\343\201\231\343\202\213.md" @@ -11,6 +11,7 @@ category: thumbnail: /images/20241208a/thumbnail.png author: 橋本竜我 lede: "SwiftZoomin#20の内容から、Swift6移行に向けて理解が必要なSwift Concurrencyの重要な概念について簡単にまとめました。" +skip_career: true --- @@ -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) } ``` diff --git "a/source/_posts/20241214a_Git\343\203\226\343\203\251\343\203\263\343\203\201\343\203\225\343\203\255\343\203\274\350\246\217\347\264\204\343\201\256\347\264\271\344\273\213.md" "b/source/_posts/20241214a_Git\343\203\226\343\203\251\343\203\263\343\203\201\343\203\225\343\203\255\343\203\274\350\246\217\347\264\204\343\201\256\347\264\271\344\273\213.md" index 14a19ec0dba8..33fa201e250b 100644 --- "a/source/_posts/20241214a_Git\343\203\226\343\203\251\343\203\263\343\203\201\343\203\225\343\203\255\343\203\274\350\246\217\347\264\204\343\201\256\347\264\271\344\273\213.md" +++ "b/source/_posts/20241214a_Git\343\203\226\343\203\251\343\203\263\343\203\201\343\203\225\343\203\255\343\203\274\350\246\217\347\264\204\343\201\256\347\264\271\344\273\213.md" @@ -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)でした。 diff --git a/themes/future/layout/_partial/article.ejs b/themes/future/layout/_partial/article.ejs index a18eae41d561..c67b84062ed1 100644 --- a/themes/future/layout/_partial/article.ejs +++ b/themes/future/layout/_partial/article.ejs @@ -36,6 +36,7 @@
<%- list_reference_posts(post) %>
+ <% if (!page.skip_career){ %>

We're hiring

フューチャーで一緒に働く仲間を大募集しています!

@@ -62,6 +63,7 @@
+ <% } %>