投稿時間:2022-12-28 11:17:52 RSSフィード2022-12-28 11:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] CDNエッジでJS/TS/WASMを実行できる「Vercel Edge Functions」正式リリース Node.jsサブセットを目指す https://www.itmedia.co.jp/news/articles/2212/28/news085.html ITmediaNewsCDNエッジでJSTSWASMを実行できる「VercelEdgeFunctions」正式リリースNodejsサブセットを目指す米Vercelが、CDNエッジでJavaScriptTypeScriptWebAssemblyを実行できるサーバレス基盤「VercelEdgeFunctions」を正式リリース。 2022-12-28 10:04:00
TECH Techable(テッカブル) お前はもう痩せている。AI食事管理アプリが北斗の拳のエクササイズゲームと連携 https://techable.jp/archives/187885 asken 2022-12-28 01:39:23
python Pythonタグが付けられた新着投稿 - Qiita Netlify で No such file or directory となって困ったら https://qiita.com/ganessa/items/5ce4e1a26b18c916d4ef amoptbu 2022-12-28 10:56:31
技術ブログ Developers.IO [Amazon FSx for NetApp ONTAP] ボリュームのバックアップとリストアの裏側の処理を確認してみた https://dev.classmethod.jp/articles/amazon-fsx-for-netapp-ontap-volume-backup-and-restore-background-processing/ amazonfsxfornetappontap 2022-12-28 01:40:59
技術ブログ Developers.IO 良きインタビュアーになりたいので5つのポイントに気をつけたい https://dev.classmethod.jp/articles/goodinterview/ 課題解決 2022-12-28 01:00:35
海外TECH DEV Community Slack Next-gen Platform - Built-in Forms https://dev.to/seratch/slack-next-gen-platform-built-in-forms-eo3 Slack Next gen Platform Built in FormsIn this tutorial you ll learn how to use the built in forms in your Slack s next generation platform apps The next gen platform offers a simple form feature which is available as a built in Schema slack functions OpenForm function After reading this tutorial you will become a master of the built in forms PrerequisitesIf you re new to the platform please read my The Simplest Hello World tutorial first In a nutshell you ll need a paid Slack workspace and permission to use the beta feature in the workspace And then you can connect your Slack CLI with the workspace If all the above are already done you re ready to build your first app Let s get started Create a Blank ProjectWhen you start a new project you can run slack create command In this tutorial you will build an app from scratch So select Blank project from the list slack create Select a template to build from Hello World A simple workflow that sends a greeting Scaffolded project A solid foundational project that uses a Slack datastore gt Blank project A well blank project To see all available samples visit github com slack samples Once the project is generated let s check if slack run command works without any issues This command installs a dev version of your new app into your connected Slack workspace Now your app s bot user is in the workspace and your app has its bot token for API calls cd frosty mink slack run Choose a workspace seratch TEMJU App is not installed to this workspaceUpdating dev app install for workspace Acme Corp ️Outgoing domains No allowed outgoing domains are configured If your function makes network requests you will need to allow the outgoing domains Learn more about upcoming changes to outgoing domains seratch of Acme CorpConnected awaiting eventsIf you see Connected awaiting events log message the app is successfully connected to Slack You can hit Ctrl C to terminate the local app process Define Workflow and TriggerLet s start with defining a simple demo workflow and its link trigger To use the built in forms in a simple way you must use a link trigger The OpenForm function needs the interactivity Schema slack types interactivity input parameter to continue direct interactions with the end user As of this writing only link triggers supply this input value to a workflow and its functions Alternatively you can use buttons select menus in a channel message to generate interactivity in the middle of a workflow In this case you can use OpenForm as the succeeding function I won t cover this topic here but I will publish a different tutorial on the topic soon Let s define an empty workflow and its link trigger as below As always save the source code as workflow and trigger ts Workflow Definition import DefineWorkflow Schema from deno slack sdk mod ts export const workflow DefineWorkflow callback id form demo workflow title OpenForm Demo Workflow input parameters properties interactivity type Schema slack types interactivity user id type Schema slack types user id channel id type Schema slack types channel id required interactivity user id channel id TODO Add a step using the built in form here TODO Confirm the outputs from the above OpenForm function Trigger Definition import Trigger from deno slack api types ts const trigger Trigger lt typeof workflow definition gt type shortcut name Form Demo Trigger workflow workflows workflow definition callback id inputs interactivity is necessary for using OpenForm function interactivity value data interactivity The following inputs are not necessary for OpenForm You ll use this just for the succeeding functions which confirm the outputs of OpenForm user id value data user id channel id value data channel id export default trigger And then add the workflow to manifest ts import Manifest from deno slack sdk mod ts Add thisimport workflow as DemoWorkflow from workflow and trigger ts export default Manifest name frosty mink description Demo workflow icon assets default new app icon png workflows DemoWorkflow Add this outgoingDomains botScopes commands chat write chat write public Create a Link TriggerNext you ll use two terminal windows One for slack run command and another for slack triggers create command To register the workflow run slack run command on the first terminal window And then run slack triggers create trigger def workflow and trigger ts on another one You will see the following outputs slack triggers create trigger def workflow and trigger ts Choose an app seratch dev TEMJU frosty mink dev AGSGKTrigger created Trigger ID FtHGLHL Trigger Type shortcut Trigger Name Form Demo Trigger URL As we learned in the first tutorial share the link trigger URL in a public channel in the connected Slack workspace OK the trigger is ready to use Let s go back to coding Add OpenForm Function to the WorkflowAdd the following two function steps to the workflow you just defined Step using the built in formconst formStep workflow addStep Schema slack functions OpenForm title Send a greeting interactivity workflow inputs interactivity submit label Send greeting fields fields elements will be converted to Block Kit components under the hood elements name recipient title Recipient type Schema slack types user id gt users select default workflow inputs user id name channel title Channel to send message to type Schema slack types channel id gt channels select default workflow inputs channel id name message title Message to recipient type Schema types string gt plain text input long true gt multiline true required recipient channel message Confirm the outputs from the above OpenForm functionworkflow addStep Schema slack functions SendEphemeralMessage The name of the element will be the key to access the value user id formStep outputs fields recipient channel id formStep outputs fields channel message OpenForm s outputs fields formStep outputs fields You may not be familiar with Block Kit Slack s UI framework With Block Kit you can build a rich user interface just by defining the UI in pre defined JSON data format The same Block Kit UI works nicely for desktop apps web browsers and mobile apps iOS iPadOS Android The OpenForm function offers a much simpler version of the UI definition When you define the modal UI the OpenForm function generates equivalent Block Kit components under the hood If you re interested in using Block Kit directly I will publish a different tutorial on it Stay tuned Run The WorkflowLet s run the workflow When you run the workflow the app opens a popup modal dialog to receive your inputs and then posts an ephemeral message a message visible only to you with the outputs of OpenForm More Form OptionsAs you can see in the document the basic properties of each element in the form are name title type description and default Usually the minimum set of properties would be name title and type Let me share as many examples as possible below Required InputsIn the above example the required list is recipient channel message This means that these three inputs must be provided when submitting the form You can add any of the names of fields elements to the list Text Input ElementThe simple text input form element looks like the below The type must be Schema types string With this type OpenForm generates a plain text input block element for you name message unique key for this element title Message to recipient Label on the UI type Schema types string gt plain text input To allow multi line inputs you can add long true property Also to set input validations on the input lengths you can use minLength and maxLength name message title Message to recipient type Schema types string long true gt multiline true minLength inclusive maxLength inclusive Another option to validate the text input is format To verify the format you can set either email or url name contact title Your Email Address type Schema types string format email Static Select MenuWith Schema types string type you can use a select menu with static option items name favorite title Favorite type Schema types string choices value dog title Dog value cat title Cat enum dog cat default cat The above example can look like the following Since the enum property is not used for the UI representation you may wonder if it can be omitted But it s still required If you remove it the element falls back to the simple text input element and the choices won t be used at all Channel User Select MenuWhen you set user id to the type of an element the element will be a users select select menu element name recipient title Recipient type Schema slack types user id gt users select Similarly when setting channel id the element will be a channels select select menu element name channel title Channel to send message to type Schema slack types channel id gt channels select Multi select MenuBlock Kit supports multi select menu elements To add such elements you can use Schema types array for type along with the supported type e g Schema slack types user id for items type The following example will be a multi users select select menu element name people title People type Schema types array gt multi select The type of the array item items type Schema slack types user id gt multi users select default U U Full Example FormThere are so many options So instead of writing a lengthy tutorial I ve built a form with all the possible elements name recipient title Recipient type Schema slack types user id gt users select default workflow inputs user id name channel title Channel to send message to type Schema slack types channel id gt channels select default workflow inputs channel id name message title Message to recipient type Schema types string gt plain text input long true gt multiline true minLength inclusive maxLength inclusive name favorite animal title Favorite Animal type Schema types string gt static select choices value dog title Dog value cat title Cat enum dog cat default cat name favorite animals title Favorite Animals type Schema types array gt mutli static select items type Schema types string choices value dog title Dog value cat title Cat enum dog cat maxItems default cat name contact title Your Email Address type Schema types string format email gt email text input name channels title Favorite Channels type Schema types array gt multi channels select items type Schema slack types channel id name team members title Team Members type Schema types array gt multi users select items type Schema slack types user id name approved title Already Approved by My Manager type Schema types boolean gt checkboxes name count title Count type Schema types integer gt number input with is decimal allowed false name amount title Amount type Schema types number gt number input name due date title Due Date type Schema slack types date gt datepicker name due time title Due Date Time type Schema slack types timestamp gt datepicker timepicker name rich text title Rich Text Input type Schema slack types rich text The very long form looks like the below Wrapping UpYou ve learned the following points with this hands on tutorial Define a built in form with various elementsThe complete project is available at I hope you enjoy this tutorial As always if you have any comments or feedback please feel free to let me know on Twitter seratch or elsewhere I can check out Happy hacking with Slack s next generation platform 2022-12-28 01:33:57
海外TECH DEV Community Ways to make Android Emulator run faster https://dev.to/bimochanshrest1/ways-to-make-android-emulator-run-faster-16dm Ways to make Android Emulator run fasterThere are several steps you can take to make an Android emulator run faster in a computer system Use a hardware accelerator Many Android emulators support the use of hardware acceleration which allows the emulator to take advantage of specialized hardware components in your computers such as the GPU or CPU to improve performance Make sure that hardware acceleration is enabled in your emulator s settings to take advantage of this feature Allocate more RAM and CPU resources By default an Android emulator is allocated a certain amount of RAM and CPU resources on your computer You can increase the amount of RAM and CPU resources that are allocated to the emulator by adjusting the emulator s settings This can help to improve the emulator s performance especially if you are running multiple applications or if you are using a resource intensive application Use a faster computer The performance of an Android emulator is also largely dependent on your computer s hardware If you have an older or slower computer you may experience the slower performance from the emulator In this case upgrading to a faster or more powerful computer can help to improve the emulator s performance Use a newer version of the emulator If you are using an older version of the Android emulator upgrading to a newer version can also help to improve performance Newer versions of the emulator are typically optimized to take advantage of the latest hardware and software features which can result in improved performance Use a lightweight Android version Some Android emulators allow you to choose which version of Android you want to run on the emulator Using a lightweight version of Android such as Android Go or Android One can help improve the emulator s performance especially if you run the emulator on a slower or older computer By following these steps you should be able to make your Android emulator run faster on your computer system Keep in mind that the actual performance improvements you see will depend on your specific hardware and software setup the emulator s requirements and the applications you are running on it 2022-12-28 01:05:38
金融 ニッセイ基礎研究所 VTuberの魅力をわかりやすく解説してみた-VTuberを構成する2つの魅力 https://www.nli-research.co.jp/topics_detail1/id=73382?site=nli 数あるVTuberの中から視聴対象になるためには、キャラクターデザインの差や話題性ももちろんあるが、投稿される動画のクォリティも重要な構成要素である。 2022-12-28 10:57:03
金融 ニッセイ基礎研究所 鉱工業生産22年11月-生産は3ヵ月連続の低下、先行きも弱い動きが続く見通し https://www.nli-research.co.jp/topics_detail1/id=73383?site=nli 消費財出荷指数は年月期の前期比の後、月が前月比、月が同となった。 2022-12-28 10:16:13
北海道 北海道新聞 東京円、133円台後半 https://www.hokkaido-np.co.jp/article/781588/ 東京外国為替市場 2022-12-28 10:39:00
北海道 北海道新聞 ボルソナロ氏欠席へ、米国で新年 1日の新大統領就任式 https://www.hokkaido-np.co.jp/article/781579/ 大統領就任式 2022-12-28 10:39:00
北海道 北海道新聞 <釧根ビジネス探訪>飲食店や観光船、多角経営 アイコム=釧路市 https://www.hokkaido-np.co.jp/article/781585/ 多角経営 2022-12-28 10:35:00
北海道 北海道新聞 <帯広>詐欺は卑劣な犯罪、被害をなくすため頑張る 三浦有敬係長(32) https://www.hokkaido-np.co.jp/article/781584/ 人生設計 2022-12-28 10:33:00
北海道 北海道新聞 ずっしり18キロの特大鏡餅 上川の農協が振興局へ寄贈 https://www.hokkaido-np.co.jp/article/781473/ 上川管内 2022-12-28 10:28:18
北海道 北海道新聞 ウクライナ東部都市奪還へ前進か 激戦続くルガンスク州 https://www.hokkaido-np.co.jp/article/781578/ 都市 2022-12-28 10:26:00
北海道 北海道新聞 年末年始は断続的に雪 上川管内の週間予報、初日の出は難しく https://www.hokkaido-np.co.jp/article/781474/ 上川管内 2022-12-28 10:25:31
北海道 北海道新聞 FTXの500億円流出を捜査 米当局、破産申請の数時間後 https://www.hokkaido-np.co.jp/article/781576/ 破産申請 2022-12-28 10:20:00
北海道 北海道新聞 JR宗谷線再開 石北線や釧網線、特急含む40本運休 https://www.hokkaido-np.co.jp/article/781553/ 釧網線 2022-12-28 10:15:07
北海道 北海道新聞 コロナに追われ、仕事納め 保健所悲鳴「ギリギリ」 https://www.hokkaido-np.co.jp/article/781572/ 仕事納め 2022-12-28 10:06:00
ビジネス 東洋経済オンライン 「そうめんゆでるな」バズ動画を生んだ発想の正体 小さな会社や田舎の会社もYouTubeを活用できる | 消費・マーケティング | 東洋経済オンライン https://toyokeizai.net/articles/-/641012?utm_source=rss&utm_medium=http&utm_campaign=link_back youtube 2022-12-28 10:30:00
マーケティング AdverTimes SNS駆使して効率よく友達づくり コロナ禍の大学生の行動が明らかに https://www.advertimes.com/20221228/article408084/ 調査結果 2022-12-28 01:57:17
マーケティング AdverTimes ADKマーケティング・ソリューションズ人事(2023年1月1日付) https://www.advertimes.com/20221228/article408076/ 人事異動 2022-12-28 01:56:54
マーケティング AdverTimes 岸谷五朗と堺雅人がサムライマックCMで初共演、大人の背中を押すメッセージに共感の声集まる https://www.advertimes.com/20221228/article408059/ 岸谷五朗 2022-12-28 01:48:34
マーケティング AdverTimes 村田製作所と錦市場商店街、混雑度と換気の可視化で利便性向上へ https://www.advertimes.com/20221228/article408037/ 京都錦市場商店街 2022-12-28 01:44:04

コメント

このブログの人気の投稿

投稿時間: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件)