投稿時間:2023-05-02 21:25:23 RSSフィード2023-05-02 21:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Techable(テッカブル) Instagram分析ツール「Pegasus」にアンケート機能が新たに追加 https://techable.jp/archives/204457 instagram 2023-05-02 11:30:22
TECH Techable(テッカブル) 手軽にバーチャルイベントを開催!仮想空間内に3Dオブジェクトを配置できるCMSサービス https://techable.jp/archives/205188 iishina 2023-05-02 11:30:18
python Pythonタグが付けられた新着投稿 - Qiita DollyV2にインストラクションを提示して使ってみる(3) https://qiita.com/tomofu74/items/a422ed7c2d4e4676713d dolly 2023-05-02 20:48:19
js JavaScriptタグが付けられた新着投稿 - Qiita 年齢認証なしでLINEアカウント共有アプリ🌾 https://qiita.com/7mpy/items/2396b9dccdc72759349e ltusepr 2023-05-02 20:54:00
js JavaScriptタグが付けられた新着投稿 - Qiita Deno KVで短縮URL【Deno URL Shortener】 https://qiita.com/7mpy/items/8e65c7cee9b0fea70316 sconstkvawaitdenoopenkv 2023-05-02 20:04:30
Ruby Railsタグが付けられた新着投稿 - Qiita Rspecでモデルテストを書く https://qiita.com/Bjp8kHYYPFq8MrI/items/bca934045113239680b8 groupdevelop 2023-05-02 20:05:59
技術ブログ Developers.IO OpenAIのEmbeddings APIのベクトルを使って検索を行う https://dev.classmethod.jp/articles/search-with-openai-embeddings/ embedding 2023-05-02 11:45:18
技術ブログ Developers.IO HCX による SDDC 間のL2延伸および仮想マシンの移行を試してみた https://dev.classmethod.jp/articles/network-extension-between-sddcs-by-hcx/ networkextension 2023-05-02 11:40:42
技術ブログ Developers.IO 「30秒で伝える全技術」から学ぶオンライン コミュニケーション術 https://dev.classmethod.jp/articles/communication_method_from_30byou/ 一冊の本 2023-05-02 11:06:17
海外TECH DEV Community AWS VPC Explained with Terraform https://dev.to/jhooq/aws-vpc-explained-with-terraform-362a AWS VPC Explained with TerraformAmazon Web Services AWS lets you build and run Virtual Private Clouds VPCs with different parts VPCs are virtual networks that are separate from each other in the AWS cloud They let you start resources like EC servers RDS databases and more In this lab session we are gonna take a look on setting up following using Terraform How to setup VPC How to setup Subnet How to setup Internet Gateway How to setup NAT gateway How to setup Route TableHow to setup Elastic IP VPSVPC or Virtual Private Cloud is a virtual network that is specific to your AWS account and keeps your resources separate and under your control It is conceptually different from other VPCs so you can set up your own IP address ranges subnets and routing tables Subnet Subnet is a part of the IP address range for your VPC Subnets can cross multiple Availability Zones AZs so you can spread out your resources to make sure they are always available and can handle problems Internet GatewayInternet Gateway A gateway that connects your VPC to the internet and can be scaled horizontally and used more than once NAT GatewayNAT Gateway is a controlled network address translation NAT service that lets instances in a private area connect to the internet or other AWS services but stops the internet from connecting to those instances Route Table Route Table A set of rules called routes that tells your VPC where to send network data Elastic IP Elastic IP A public IPv address that is always the same and that you can link to an instance a network device or a NAT gateway Elastic IPs help you keep track of your resources that are available to the public and let you remap numbers to other resources in case something goes wrong After making and setting these parts your VPC will have public and private subnets an Internet gateway for public access a NAT gateway for private access custom route tables and Elastic IPs for static public addresses ️Follow me ️ Linkedin Twitter To learn more on DevOps visit 2023-05-02 11:44:06
海外TECH DEV Community Using Webpack with Spring Boot https://dev.to/tleipzig/using-webpack-with-spring-boot-b24 Using Webpack with Spring BootWebpack is a powerful tool for frontend development It allows us to improve the structure of our JavaScript CSS SCSS code and to prepare it for production usage How can we integrate Webpack into our Spring Boot application Spoiler in Bootify s Free plan Spring Boot applications can be initialized with their custom database schema and frontend stack This includes Webpack with Bootstrap or Tailwind CSS for the frontend so you get the whole following configuration including DevServer and build integration exactly matching your individual setup Open your project without registration directly in the browser Prepare Node jsThe starting point for working with Webpack is Node js which uses npm to manage the external dependencies for the frontend For this we first need to create the package json in the top folder of our Spring Boot project name my app frontend author Bootify io scripts devserver webpack serve mode development build webpack mode production dependencies popperjs core bootstrap devDependencies babel core babel preset env autoprefixer babel loader css loader css minimizer webpack plugin mini css extract plugin postcss loader postcss preset env sass sass loader style loader warnings to errors webpack plugin webpack webpack cli webpack dev server  Our package json with Webpack and Bootstrap dependenciesIn the scripts section we can define our own commands that can be executed with npm run lt script name gt Here we are already preparing to start the DevServer we will use during development as well as building our JS CSS files for their usage in the final jar of our Spring Boot app The background on this follows later on In the dependencies section are the libraries that will be available in the browser in the actually delivered frontend In our example we include Bootstrap in the current version and the required Popper In devDependencies are the packages that are relevant for development and will not be available in the browser Especially Webpack is included here as well as other dependencies for processing our JS CSS files After the package json is created and Node js is installed on the system we can initialize the project once with npm install All defined dependencies will be automatically downloaded to the node modules folder New required libraries can be added later on with npm install lt package name gt The save dev parameter would put them in the devDependencies area Configure WebpackThe central file for managing Webpack is webpack config js module exports env argv gt entry src main resources js app js output path path resolve dirname target classes static filename js bundle js devtool argv mode production false eval source map optimization minimize true minimizer new TerserPlugin new CssMinimizerPlugin plugins new MiniCssExtractPlugin filename css bundle css new WarningsToErrorsPlugin module rules test js include path resolve dirname src main resources js use loader babel loader options presets babel preset env test scss include path resolve dirname src main resources scss use argv mode production MiniCssExtractPlugin loader style loader loader css loader options importLoaders sourceMap true loader postcss loader options postcssOptions plugins require autoprefixer sourceMap true loader sass loader options sourceMap true resolve modules path resolve dirname src main resources node modules  Webpack configuration for creating bundle js and bundle cssThe entry and output sections define the entry and output points for processing our JS CSS files Entry point is exclusively the resources js app js file but it references other SCSS files and will automatically split them up for the build With the configuration of the devtool parameter source maps are available during development to see our actual written sources in the browser s DevTools In the optimization and module sections we define the processing rules By using Babel we can write modern ES JavaScript which will be transformed for maximum compatibility We write our styles with SCSS but it is transformed and minimized to CSS for later delivery Setting up DevServer for developmentThe DevServer is recommended during development to be able to track all changes directly in the browser Otherwise the build would have to be run after each change The DevServer can be configured with the following extension to our webpack config js devServer port compress true watchFiles src main resources templates html src main resources js js src main resources scss scss proxy target http localhost secure false prependPath false headers X Devserver  Extension to configure the DevServerWith this setup the DevServer runs on port and forwards all requests that it cannot answer itself to our Spring Boot app on port So during development we should access our running application via localhost By defining watchFiles the browser will reload automatically after every file change here the HTML extension also includes our Thymeleaf templates This works best by setting up hot reload for Thymeleaf The integration of our JS and CSS scripts is now done with the following extension in the lt head gt area of our HTML lt link th if T io bootify WebUtils getRequest getHeader X Devserver th href css bundle css rel stylesheet gt lt script th src js bundle js defer gt lt script gt  Integrating JS CSS filesBy using the DevServer we can include the files like normal static resources However during development the DevServer always delivers the JavaScript along with the CSS so in this case we don t need to include the styles separately and disable them via th if Build integration with Maven or GradleIn webpack config js we have defined that the processed files are written to target classes static So they will be included in our final jar and can be accessed as a static resource For the integration with Maven the frontend maven plugin is required This runs as an additional step within mvnw package downloads Node js independently and executes npm install and npm run build lt plugin gt lt groupId gt com github eirslett lt groupId gt lt artifactId gt frontend maven plugin lt artifactId gt lt version gt lt version gt lt executions gt lt execution gt lt id gt nodeAndNpmSetup lt id gt lt goals gt lt goal gt install node and npm lt goal gt lt goals gt lt execution gt lt execution gt lt id gt npmInstall lt id gt lt goals gt lt goal gt npm lt goal gt lt goals gt lt configuration gt lt arguments gt install lt arguments gt lt configuration gt lt execution gt lt execution gt lt id gt npmRunBuild lt id gt lt goals gt lt goal gt npm lt goal gt lt goals gt lt configuration gt lt arguments gt run build lt arguments gt lt configuration gt lt execution gt lt executions gt lt configuration gt lt nodeVersion gt v lt nodeVersion gt lt configuration gt lt plugin gt  Configuration of the frontend maven plugin for WebpackFor Gradle the Node plugin is used which also executes npm run build By configuring inputs and outputs we enable caching and the steps are skipped during gradlew build if there have been no changes to the source files plugins id com github node gradle node version node download set true version set task npmRunBuild type NpmTask args run build dependsOn npmInstall inputs files fileTree node modules inputs files fileTree src main resources inputs file package json inputs file webpack config js outputs dir buildDir resources main static processResources dependsOn npmRunBuild  Integration of the frontend build into the Gradle buildWith this we have configured Webpack for its usage in our Spring Boot app The DevServer supports us during development and with the right plugin the JS CSS files are prepared and integrated into our fat jar Bootify can be used to initialize Spring Boot applications with their own database schema and frontend Here Webpack can be chosen with Bootstrap or Tailwind CSS In the Professional Plan advanced features like multi module projects and Spring Security are available »Start Project on Bootify io  Further readingsInstall Node jsFrontend Maven PluginGradle Plugin for Node 2023-05-02 11:36:27
海外TECH DEV Community Introduction to Traceo with NodeJS https://dev.to/satorugojo/introduction-to-traceo-40d Introduction to Traceo with NodeJSHey guys Traceo is a self hosted bug tracking and performance monitoring system that can help you catch incidents and performance issues before they become major problems With Traceo you can easily track errors and exceptions monitor server and application metrics and get insights into web vitals data How to start Due to fact that Traceo is currently not available online you need to install your own Traceo instance on your machine The fastest way to do this is to use docker compose Full installation instructions can be found here Once the installation is complete we can move on Traceo works by implementing an SDK in your application Currently Traceo provides SDKs for NodeJS React and Vue In this article we will focus on installing the SDK for NodeJS application To get started you need to install package from npm npm i traceo sdk nodeOnce you have installed the SDK you can start using it in your application To use the SDK you first need to initialize it with your API key generated in project created in Traceo Instance You can do this using the following code new TraceoClient lt api key gt host http localhost depend on your installation Once you initialize SDK in your application the easiest way to start tracking errors is to use ExceptionsHandlers catchException in try catch clause like below import ExceptionHandlers from traceo sdk node try your code catch error ExceptionHandlers catchException error If you use NestJS then you can also create Interceptor to catch exceptions like below traceo interceptor tsimport ExceptionHandlers from traceo sdk node other imports Injectable export class TraceoInterceptor implements NestInterceptor intercept context ExecutionContext next CallHandler Observable lt any gt return next handle pipe tap null exception gt ExceptionHandlers catchException exception main ts app useGlobalInterceptors new TraceoInterceptor And that s all When an error occurs in your software it will be caught by the SDK and sent to the Traceo platform Your error will be available in the Incidents section What s next Once you have data flowing into Traceo you can start using the platform to track incidents and performance issues Traceo provides a dashboard where you can view and analyze your data The dashboard provides a variety of charts and graphs that allow you to visualize trends and identify issues Traceo also provides detailed performance monitoring capabilities You can track server and application metrics such as CPU usage memory usage and network traffic You can also track web vitals data such as page load times user interactions and browser performance ConclusionIf you re looking for a self hosted monitoring solution for your application give Traceo a try and remember to leave a on Github 2023-05-02 11:01:11
Apple AppleInsider - Frontpage News Early Apple check signed by Steve Jobs could sell for big money https://appleinsider.com/articles/23/05/02/early-apple-check-signed-by-steve-jobs-could-sell-for-big-money?utm_medium=rss Early Apple check signed by Steve Jobs could sell for big moneyA check signed by Steve Jobs may be worth thousands more at auction than what s written on it Steve Jobs signed check RR Auctions Lot of RR Auctions Fine Autograph and Artifacts Featuring Major Figures of Science and Technology will be of interest to collectors of items from Apple s history The lot consists of a check from the Apple Computer Company signed by co founder Steve Jobs Read more 2023-05-02 11:46:20
Apple AppleInsider - Frontpage News Apple manufacturer Wistron said to be closing down in India https://appleinsider.com/articles/23/05/02/apple-manufacturer-wistron-said-to-be-closing-down-in-india?utm_medium=rss Apple manufacturer Wistron said to be closing down in IndiaWistron Apple s assembly partner for the iPhone SE is allegedly preparing to wind down most of its operations in India with the company rumored to withdraw most of itself from the country over the next year WistronAs an Apple supplier Wistron has been working within India for over years but that is apparently soon to change Rather than continue to build out business in India like Foxconn is doing the Taiwanese firm is said to be moving out Read more 2023-05-02 11:21:19
海外TECH Engadget Samsung tells employees not to use AI tools like ChatGPT and Google Bard https://www.engadget.com/samsung-tells-employees-not-to-use-ai-tools-like-chatgpt-and-google-bard-114004180.html?src=rss Samsung tells employees not to use AI tools like ChatGPT and Google BardWhile many workers worry AI bots will take their jobs Samsung employees are no longer allowed to use them The company banned generative AI tools like ChatGPT and Google Bard after discovering staff had added sensitive code to them Bloomberg reported This revelation followed last month s incident in which Samsung engineers uploaded internal source code and meeting notes to ChatGPT and accidentally leaked it Samsung isn t waiting for another mishap to take action quot HQ is reviewing security measures to create a secure environment for safely using generative AI to enhance employees productivity and efficiency quot the company said in a memo to staff quot However until these measures are prepared we are temporarily restricting the use of generative AI quot Samsung further expressed concern that data sent to generative AI tools is stored on external servers potentially creating difficulties around access removal and unintentional sharing ChatGPT for instance uses data for training unless users specifically opt out Though many companies are encouraging employees to embrace the likes of ChatGPT and Google Bard Samsung isn t alone in taking the opposite approach Bans are particularly popular amongst banks clear hubs of sensitive information with JP Morgan Chase Bank of America and Citi Group all restricting employee access Beyond reducing worries about being let go in favor of an inanimate tool most of Samsung s staff likely agree with the policy sharing similar concerns to their employer In April an internal survey by Samsung found percent of respondents believed AI tools came with security risks With this said Samsung is still working on its own AI tools for employees to use for tasks like software development and translation Employees can still use any AI tools on personal devices strictly for non work related matters ーviolating this rule is a quick path to termination The new corporate policy won t impact consumers with generative AI tools still available across Samsung devices This article originally appeared on Engadget at 2023-05-02 11:40:04
海外TECH Engadget The Morning After: The Godfather of AI leaves Google amid ethical concerns https://www.engadget.com/the-morning-after-the-godfather-of-ai-leaves-google-amid-ethical-concerns-111514764.html?src=rss The Morning After The Godfather of AI leaves Google amid ethical concernsGeoffrey Hinton nicknamed the Godfather of AI told The New York Times he resigned as Google VP and engineering fellow in April to freely warn of the risks associated with the technology The researcher is concerned Google is giving up its previous restraint on public AI releases to compete with ChatGPT Bing Chat and similar models In the near term Hinton says he s worried that generative AI could lead to a wave of misinformation You might quot not be able to know what is true anymore quot he says He s also concerned it might not just eliminate quot drudge work quot but outright replace some jobs which I think is a valid worry already turning into a reality Mat SmithThe Morning After isn t just a newsletter it s also a daily podcast Get our daily audio briefings Monday through Friday by subscribing right here The biggest stories you might have missed The Legend of Zelda Tears of the Kingdom spoilers flood the internet Redfall review Good enough for Game PassLogitech made Google s Project Starline video conferencing booth ーminus holograms The best Apple Watch accessories Ninja s updated DualZone air fryer is off right now The best gifts for the new grads in your lifeUS political parties views on Twitter have changed dramatically in two yearsSomeone posted the entire Super Mario Bros Movie on TwitterAnother nine million views but no box office takings Over nine million people watched The Super Mario Bros Movie over the weekend ーon Twitter A Twitter user uploaded the entire movie to the platform and kept it there for the weekend A handful of copyrighted movies have repeatedly spent a few days on Twitter since Elon Musk took over but Blue subscribers have also gained the ability to upload videos that are minutes long making it an easier task Scrutinizing copyright for the team at Twitter is also a challenge when the company s fired most of your safety and compliance staff…Continue reading Apple releases its first rapid fire security updates for iPhone iPad and MacThe rollout hasn t been completely smooth however EngadgetApple promised faster turnaround times for security patches with iOS and macOS Ventura and it s now delivering on that claim The company has released its first Rapid Security Response updates for devices running iOS iPadOS and macOS As usual they re available through Software Update but are small downloads that don t require much time to install Engadget and others have received an error warning that iOS can t verify the update as the device is quot no longer connected to the internet so you may have to check for the patch at another time Continue reading SpaceX s Starship didn t immediately respond to a self destruct commandIt finally exploded after a second delay SpaceXSpaceX s founder Elon Musk shared more details about what went awry during the first fully integrated Starship rocket and Super Heavy booster launch in April In a Twitter audio chat on Saturday he revealed the self destruct setting took seconds to work It should have been relatively instantaneous The FAA has already announced it s investigating the events and will ground Starship until quot determining that any system process or procedure related to the mishap does not affect public safety quot Even with all of that Musk called the launch quot successful quot and quot maybe slightly exceeding my expectations quot Continue reading This article originally appeared on Engadget at 2023-05-02 11:15:14
ニュース BBC News - Home Sudan crisis: Civilians facing 'catastrophe' as 100,000 flee fighting - UN https://www.bbc.co.uk/news/world-africa-65448691?at_medium=RSS&at_campaign=KARANGA peace 2023-05-02 11:34:42
ニュース BBC News - Home Man dies after being stuck inside Keswick indoor cave https://www.bbc.co.uk/news/uk-england-cumbria-65453874?at_medium=RSS&at_campaign=KARANGA keeffe 2023-05-02 11:23:26
ニュース BBC News - Home Family says murdered Marelle Sturrock was expecting baby boy https://www.bbc.co.uk/news/uk-scotland-glasgow-west-65457231?at_medium=RSS&at_campaign=KARANGA pregnant 2023-05-02 11:36:18
ニュース BBC News - Home Labour set to ditch pledge for free university tuition, Starmer says https://www.bbc.co.uk/news/uk-politics-65454944?at_medium=RSS&at_campaign=KARANGA policy 2023-05-02 11:27:17
ニュース BBC News - Home UK's Sudan evacuations nearly over, says Cleverly https://www.bbc.co.uk/news/uk-65455218?at_medium=RSS&at_campaign=KARANGA humanitarian 2023-05-02 11:56:26
ニュース BBC News - Home Tinder owner to quit Russia more than a year after invasion began https://www.bbc.co.uk/news/business-65457098?at_medium=RSS&at_campaign=KARANGA brands 2023-05-02 11:36:01
ニュース BBC News - Home Lucy Letby: Baby murders accused nurse 'wanted to work with children' https://www.bbc.co.uk/news/uk-england-merseyside-65454700?at_medium=RSS&at_campaign=KARANGA letby 2023-05-02 11:38:00
ニュース BBC News - Home Women's World Cup: Fifa president Gianni Infantino threatens tournament blackout in Europe https://www.bbc.co.uk/sport/football/65453756?at_medium=RSS&at_campaign=KARANGA Women x s World Cup Fifa president Gianni Infantino threatens tournament blackout in EuropeFifa president Gianni Infantino threatens a broadcast blackout for the Women s World Cup in Europe unless TV companies improve their rights offers 2023-05-02 11:55:39
ニュース BBC News - Home Leeds set to sack Javi Gracia and in talks with Sam Allardyce https://www.bbc.co.uk/sport/football/65453934?at_medium=RSS&at_campaign=KARANGA allardyce 2023-05-02 11:04:24
ニュース BBC News - Home Women's Nations League: England to face Scotland in inaugural tournament https://www.bbc.co.uk/sport/football/65456941?at_medium=RSS&at_campaign=KARANGA Women x s Nations League England to face Scotland in inaugural tournamentEngland and Scotland are drawn together in the inaugural Women s Nations League while Wales face Germany and Northern Ireland play the Republic of Ireland 2023-05-02 11:41:43
ニュース Newsweek EV世界一の中国で、時速60キロを出す「自転車」が走り回っている理由 https://www.newsweekjapan.jp/stories/world/2023/05/post-101513.php 2023-05-02 20:30:00
海外TECH reddit For sevens sake. Surely nobody believes that fake draft? https://www.reddit.com/r/NightRavenCollege/comments/135i2af/for_sevens_sake_surely_nobody_believes_that_fake/ For sevens sake Surely nobody believes that fake draft I promise that “escape plan isn t mine This seems to be causing discourse……Trulyーit s all fine Now…where is Kalim And I believe…I ve used quite a lot of magic now Is there a leak where I am I m…hearing dripping… post of Jammys Breakdowns️ check NRCOOCGC for the planned posts submitted by u painedeyes to r NightRavenCollege link comments 2023-05-02 11:13:52

コメント

このブログの人気の投稿

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