投稿時間:2023-08-01 16:30:30 RSSフィード2023-08-01 16:00 分まとめ(33件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ rinnaが日英バイリンガル大規模言語モデルをオープンソースで公開 4種類のモデル公開で活用の幅を拡大 https://robotstart.info/2023/08/01/rinna-release-llm-open-source.html rinnaが日英バイリンガル大規模言語モデルをオープンソースで公開種類のモデル公開で活用の幅を拡大シェアツイートはてブrinnaは、日本語と英語のバイリンガル大規模言語モデルを開発した。 2023-08-01 06:50:27
IT ITmedia 総合記事一覧 [ITmedia News] 楽天カード、ポイント計算法を月の合計→会計ごとに変更 実質的な還元率減に https://www.itmedia.co.jp/news/articles/2308/01/news135.html itmedia 2023-08-01 15:45:00
IT ITmedia 総合記事一覧 [ITmedia PC USER] エレコム、単一指向性マイクを備えたオーバーヘッド型ヘッドセット https://www.itmedia.co.jp/pcuser/articles/2308/01/news133.html itmediapcuser 2023-08-01 15:39:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders WHI、タレントマネジメント製品にポジション管理機能を追加、ジョブ型人事制度を支援 | IT Leaders https://it.impress.co.jp/articles/-/25173 WHI、タレントマネジメント製品にポジション管理機能を追加、ジョブ型人事制度を支援ITLeadersWorksHumanIntelligenceWHIは年月日、タレントマネジメントソフトウェア製品群「COMPANYTalentManagement」シリーズに、ポジション管理機能「PositionampCareerDevelopment」を追加したと発表した。 2023-08-01 15:51:00
python Pythonタグが付けられた新着投稿 - Qiita djangoで、事前にログイン・ユーザー認証をしていないと使用できないRESTAPIを作成する。 https://qiita.com/76r6qo698/items/ae9cd08c156409af4e47 djangoで、事前にログイン・ユーザー認証をしていないと使用できないRESTAPIを作成する。 2023-08-01 15:08:52
Ruby Rubyタグが付けられた新着投稿 - Qiita ruby.wasmの初期化シーケンス https://qiita.com/ledsun/items/dacf789c787c7d192529 ltscriptsrc 2023-08-01 15:48:49
Ruby Rubyタグが付けられた新着投稿 - Qiita devise導入後ログアウトできないエラーの解決 https://qiita.com/naomit/items/6612d0f405c3e58f5728 bletstringresetpasswor 2023-08-01 15:14:36
AWS AWSタグが付けられた新着投稿 - Qiita AWS WAF Classicをv2に移行した話(検討事項・Athenaの活用方法などなど) https://qiita.com/ti_aiuto/items/d49633bff94bb54e54fc athena 2023-08-01 15:43:01
golang Goタグが付けられた新着投稿 - Qiita Ebitenを使ってボールをランダムに動かすゲームを作成する https://qiita.com/Tester777/items/0d08efee9dd7b557daf2 imagec 2023-08-01 15:06:23
Azure Azureタグが付けられた新着投稿 - Qiita 【アジャイル社内開発】立ち上げ時のプロセス整備 https://qiita.com/hiroyuki-abe/items/b2eba7d426508687fcaf 開発 2023-08-01 15:54:38
Ruby Railsタグが付けられた新着投稿 - Qiita devise導入後ログアウトできないエラーの解決 https://qiita.com/naomit/items/6612d0f405c3e58f5728 bletstringresetpasswor 2023-08-01 15:14:36
技術ブログ Developers.IO クラスメソッドコリアにジョインしました中間想です! https://dev.classmethod.jp/articles/cmkr_joined_nakama_202308/ 韓国 2023-08-01 06:41:47
海外TECH DEV Community What are Sealed Classes in Java & Interfaces in JDK 17, and how to use them? https://dev.to/bindupatidar/what-are-sealed-classes-in-java-interfaces-in-jdk-17-and-how-to-use-them-n6h What are Sealed Classes in Java amp Interfaces in JDK and how to use them Sealed Classes in Java A sealed class is a class that restricts which other classes or interfaces can extend or implement it It allows you to define a closed set of subclasses that are allowed to extend the sealed class The sealed classes aim to provide more control over the inheritance hierarchy and ensure that certain classes have exclusive access to being subclasses To define a sealed class you can use the sealed modifier before the class keyword followed by the list of permitted subclasses javapublic sealed class Shape permits Circle Rectangle Triangle Common methods and properties for all shapes public final class Circle extends Shape Implementation of Circle class public final class Rectangle extends Shape Implementation of Rectangle class public final class Triangle extends Shape Implementation of Triangle class In the above example Shape is a sealed class and it permits only three subclasses Circle Rectangle and Triangle Any other attempt to create a new subclass of Shape outside of this file will result in a compilation error Interfaces in JDK if introduced in JDK or later Interfaces in Java are a way to define a contract that classes must adhere to by implementing the interface s methods In JDK interfaces were enhanced to support new features like private methods private static methods and default methods With private methods and private static methods you can add helper methods within an interface that are not accessible outside of the interface Default methods provide a way to add new methods to existing interfaces without breaking the classes that implement them Example usage of new features in interfaces Java or later javapublic interface Calculator Regular method int add int a int b Private method private int validateInput int number return number gt number Private static method private static void log String message System out println Log message Default method default int subtract int a int b return add a b Reusing the add method here public class BasicCalculator implements Calculator Override public int add int a int b return validateInput a validateInput b In the above example the Calculator interface includes regular methods add private methods validateInput and log and a default method subtract The BasicCalculator class implements the Calculator interface providing the implementation for the add method and it can use the default method subtract 2023-08-01 06:35:58
海外TECH DEV Community 🦊 GitLab Pages preview : the no-compromise hack to serve per-branch pages https://dev.to/zenika/gitlab-pages-preview-the-no-compromise-hack-to-serve-per-branch-pages-5599 GitLab Pages preview the no compromise hack to serve per branch pagesIntroductionPrerequisitesThe GitLab pipeline codeIntegrated featuresConclusion IntroductionWith GitLab Pages you can publish static websites directly from a repository in GitLab By default we cannot have preview pages if a job deploys the pages this overwrites previous content which disallows preview mode Some article on the internet show how to get around that with artifacts knowing that GitLab can display artifacts But this trick has disadvantages mainly highly technical links that have to be shared again after changes on the branch Some Github gist points into the right direction but in a complex way and with too few side features In this article we will get around the limitation by taking advantage of the cache mechanism and be able to display per branch content with the side benefit of obfuscating the path to ephemeral branches content if desired The solution can be broken down to these steps Generate files for current branchGet previous branches generation from GitLab cacheMerge and update cacheAuto delete obsolete cache on branch deletion using GitLab environments PrerequisitesWe assume you already have a way of generating your HTML static content and just want to serve the files using GitLab Pages For the code to work your cache must be centralized either by using gitlab com runners by having a single runner or by sharing caches between multiple private runners You need to accept a global cache by deactivating the GiLab option Use separate caches for protected branches in Settings gt CICD gt General Pipelines The GitLab pipeline codeworkflow rules disable tag pipelines and duplicate MR pipelines if CI COMMIT BRANCHvariables EPHEMERAL BRANCHES PATH preview subpath to ephemeral branches content for preview anything will workpages stage build image alpine cache key gitlab pages paths public before script default available tree app in alpine image does not work as intended apk add tree CURRENT CONTENT PATH is defined in rules different between main branch and ephemeral branches mkdir p public CURRENT CONTENT PATH amp amp ls public CURRENT CONTENT PATH avoid deleting main branch content when cache has been erased if CI COMMIT BRANCH CI DEFAULT BRANCH amp amp d public CI DEFAULT BRANCH then echo e e m Unable to retrieve CI DEFAULT BRANCH generated files from cache please regenerate CI DEFAULT BRANCH files first e m exit fi rm rf public CURRENT CONTENT PATH true remove last version of current branch script generate my html sh output build docs true insert here your code that generates documentation mv verbose build docs public CURRENT CONTENT PATH cd public EPHEMERAL BRANCHES PATH tree d H L noreport charset utf T Versions o index html generate a root HTML listing all previews for easier access environment name pages CI COMMIT BRANCH action start url CI PAGES URL CURRENT CONTENT PATH on stop pages clean preview rules main branch is exposed at GitLab Pages root if CI COMMIT BRANCH CI DEFAULT BRANCH variables CURRENT CONTENT PATH other short lived branches generation are exposed in EPHEMERAL BRANCHES PATH branch name sanitized sub path variables CURRENT CONTENT PATH EPHEMERAL BRANCHES PATH CI COMMIT REF SLUG artifacts paths public expire in hpages clean preview stage build image alpine cache key gitlab pages paths public variables GIT STRATEGY none git files not available after branch deletion FOLDER TO DELETE preview CI COMMIT BRANCH an indirection to allow arbirtraty deletion when launching this job script rm rf public FOLDER TO DELETE environment name pages CI COMMIT BRANCH action stop rules if CI COMMIT BRANCH CI DEFAULT BRANCH when manual allow failure true Integrated featuresThe above code has below features main content is exposed on CI PAGES URL and the path is configurable with CURRENT CONTENT PATHPer branch preview content is exposed on CI PAGES URL preview with a homepage to easily navigate to branchesPath to root preview folder is configurable with EPHEMERAL BRANCHES PATH variable to hide preview content by obfuscationGenerated pages are associated with environments to take advantage of auto cleaning on branch deletionTo avoid disturbing already existing environments pages environment are placed under a pages folderIf main content has not been generated in current cache or if the cache has been deleted an error is triggered to avoid accidental deletionDeletion job can be triggered manually with any cache path as input to clean outdated dataIt can safely be added to an existing project pipeline without causing trouble with already existing jobsThe workflow rules can be deleted if you already have your own or updated to match you flowThe job must be named pages and the artifact must be a public folder to be deployed to GitLab Pages or you can use the pages publish keyword ConclusionGiven the piece of yaml provided using it in your pipeline you should be able to share your GitLab Pages on a per branch basis on the path you want while serving the stable content from the root context For any question or remark please use below comment section If you need information to choose better runner architecture you can read GitLab Runners topologies pros and cons Images generated locally by Automatic using RevAnimated model with PiratePunkAI and Blindbox LoRA 2023-08-01 06:01:56
海外TECH Engadget Elon Musk's X Corp sues anti-hate group over its research https://www.engadget.com/elon-musks-x-corp-sues-anti-hate-group-over-its-research-060156126.html?src=rss Elon Musk x s X Corp sues anti hate group over its researchAfter threatening to do so X Corp aka Twitter has filed a lawsuit against The Center for Countering Digital Hate CCDH Bloomberg has reported It claimed that the anti hate group is illegally quot scraping quot its servers and cherry picking hateful posts as part of quot a scare campaign to drive away advertisers quot according to documents filed in San Francisco federal court X Corp is asking for unspecified monetary damages and an injunction barring the CCDH from accessing its data The Center published a research article in June asserting that X allowed explicitly racist and homophobic posts despite policies to the contrary even after they d been reported However X responded that the CCDH used poor methodology and failed to study all million posts on the service each day It also maintained that the Center was taking funding from competitors or foreign governments as part of an quot ulterior agenda quot according to The New York Times nbsp In a new blog post called quot Protecting the public s right to free expression quot Twitter X explained its reasoning for filing a legal claim against CCDH quot X is a free public service funded largely by advertisers Through the CCDH s scare campaign and its ongoing pressure on brands to prevent the public s access to free expression the CCDH is actively working to prevent public dialogue quot the post states It went on to note that the CCDH scraped its data accessing it without authorization from Brandwatch a Twitter partner that provides quot consumer amp market insights quot quot brand monitoring quot and more It added that CCDH s quot research cited in aBloomberg article contained metrics used out of context to make unsubstantiated assertions about X formerly Twitter quot quot That s why X has filed a legal claim against the CCDH and its backers quot it stated It also accused the CCDH of quot targeting people on all platforms who speak about issues the CCDH doesn t agree with quot quot attempting to coerce the deplatforming of users whose views do not conform to the CCDH s ideological agenda quot and more nbsp In a letter published earlier today the CCDH countered Twitter s earlier allegations It noted that it never claimed to be conducting a comprehensive study and documented the methodology it did use It wrote that X didn t provide any specific examples and said it doesn t accept funding from companies or governments It further stated that it quot will not be bullied quot will continue publishing its research and that a lawsuit with quot frivolous quot claims could prove risky quot The public has the right to know if and how ElonMusk s leadership has led to more hate speech on Twitter the nonprofit tweeted earlier quot By threatening us Musk is trying to hide the truth about his own failures Platforms must be held accountable for spreading hate amp lies quot This article originally appeared on Engadget at 2023-08-01 06:01:56
医療系 医療介護 CBnews 糖尿病薬「GLP-1」在庫が逼迫、厚労省が協力要請-「買い込み控えて」 https://www.cbnews.jp/news/entry/20230801145518 医療機関 2023-08-01 15:10:00
金融 JPX マーケットニュース [TOCOM]最終決済価格(2023年7月限):原油、電力 https://www.jpx.co.jp/markets/derivatives/special-quotation/index.html tocom 2023-08-01 15:15:00
ニュース BBC News - Home Renters on £30k shut out from affordable housing schemes https://www.bbc.co.uk/news/uk-66255727?at_medium=RSS&at_campaign=KARANGA london 2023-08-01 06:47:51
ニュース BBC News - Home Ukraine war: Same Moscow skyscraper hit in new drone attack https://www.bbc.co.uk/news/world-europe-66368016?at_medium=RSS&at_campaign=KARANGA attack 2023-08-01 06:47:48
ニュース BBC News - Home UK house prices fall at sharpest rate for 14 years, says Nationwide https://www.bbc.co.uk/news/business-66369695?at_medium=RSS&at_campaign=KARANGA annual 2023-08-01 06:54:02
ニュース BBC News - Home Tax jumps on wine and spirits but falls on fizz https://www.bbc.co.uk/news/business-66361232?at_medium=RSS&at_campaign=KARANGA alcoholic 2023-08-01 06:33:33
ニュース BBC News - Home Food prices rise at lowest pace this year, analysts say https://www.bbc.co.uk/news/business-66368155?at_medium=RSS&at_campaign=KARANGA trade 2023-08-01 06:17:58
ビジネス ダイヤモンド・オンライン - 新着記事 「バーベンハイマー」の波、米映画業界乗れるか - WSJ発 https://diamond.jp/articles/-/327083 業界 2023-08-01 15:10:00
ビジネス 不景気.com 23年6月の失業率は2.5%に改善、求人倍率は悪化 - 不景気com https://www.fukeiki.com/2023/08/unemployment-rate-23-06.html 労働力調査 2023-08-01 06:41:37
マーケティング MarkeZine 2023年夏の国内旅行予定者は約27%/予算は約6割がコロナ禍前と「同程度」と回答【プラネット調査】 http://markezine.jp/article/detail/42954 国内旅行 2023-08-01 15:30:00
マーケティング MarkeZine TOWとケシオンが業務提携 新たなプロモーションプロジェクト「TOOH」プロジェクトを立ち上げ http://markezine.jp/article/detail/42932 業務提携 2023-08-01 15:15:00
IT 週刊アスキー ニューヨークスタイルのチーズ菓子が福岡に上陸! NEWYORK PERFECT CHEESE、大丸福岡天神店 本館B2 菓子売場 イベントスペースに期間限定出店 https://weekly.ascii.jp/elem/000/004/147/4147781/ newyorkperfectcheese 2023-08-01 15:45:00
IT 週刊アスキー クリスタルソフトのRPG『ファンタジアン(PC-8801版)』が「プロジェクトEGG」で無料配信開始! https://weekly.ascii.jp/elem/000/004/147/4147782/ 無料配信 2023-08-01 15:35:00
IT 週刊アスキー みんなでウォールアートを創り上げる「みんなでペイント!“海とつながる”ウォールアート」 横浜ベイクォーター https://weekly.ascii.jp/elem/000/004/147/4147763/ 横浜ベイクォーター 2023-08-01 15:15:00
IT 週刊アスキー 『バーチャeスポーツ』が50%オフ!セガがPS Store&ニンテンドーeショップで「サマーセール Part2」を開催 https://weekly.ascii.jp/elem/000/004/147/4147767/ playstationstore 2023-08-01 15:15:00
IT 週刊アスキー どどんと値引き!スシロー「夏得祭」人気の“特ネタ中とろ”などお手頃価格 https://weekly.ascii.jp/elem/000/004/147/4147734/ 期間限定 2023-08-01 15:30:00
IT 週刊アスキー 名代富士そばと「パトレイバー」がコラボ!! “コロッケそば”をフィーチャー https://weekly.ascii.jp/elem/000/004/147/4147744/ 名代富士そば 2023-08-01 15:50:00
マーケティング AdverTimes 愛知県の優れたクリエイターを表彰 グランプリはAED救命サポート促す動画 https://www.advertimes.com/20230801/article429217/ aichiadawards 2023-08-01 06:07:01

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)