IT |
気になる、記になる… |
Nothing、「Phone (1)」向けに「Nothing OS 1.5.3」を配信開始 |
https://taisy0.com/2023/03/15/169594.html
|
android |
2023-03-14 15:47:19 |
IT |
気になる、記になる… |
「Google Pixel 7a」は6月発売か ー カラーラインナップも明らかに |
https://taisy0.com/2023/03/15/169592.html
|
google |
2023-03-14 15:39:58 |
IT |
気になる、記になる… |
Googleの折りたたみ式スマホ「Pixel Fold」は6月発売との情報 ー ストレージ容量は256GBでカラーラインナップは2色 |
https://taisy0.com/2023/03/15/169590.html
|
google |
2023-03-14 15:33:37 |
AWS |
AWS Open Source Blog |
Building Automation for Fraud Detection Using OpenSearch and Terraform |
https://aws.amazon.com/blogs/opensource/building-automation-for-opensearch-for-fraud-detection-using-opensearch-and-terraform/
|
Building Automation for Fraud Detection Using OpenSearch and TerraformCustomers can reduce the time it takes to detect and prevent fraud with this solution which allows financial analysts faster access to transactional data by automating data ingestion and replication |
2023-03-14 15:11:00 |
Linux |
Ubuntuタグが付けられた新着投稿 - Qiita |
Ubuntu 22.10でノートパソコンの天板を閉じても動作するようにする |
https://qiita.com/7mpy/items/ae1fba735dc0e96b38f7
|
csystemdlogindconfsudosys |
2023-03-15 00:52:12 |
AWS |
AWSタグが付けられた新着投稿 - Qiita |
Aurora(MySQL互換)とRDS ProxyのCA証明書/TLS接続/IAM認証について整理する |
https://qiita.com/itsuki3/items/eb36b6df99b26974fc66
|
aurora |
2023-03-15 00:44:37 |
技術ブログ |
Developers.IO |
AWS Trusted Advisorで2023年10月10日に延長サポートが終了するWindows Server 2012 R2のEC2を検知できるか試してみた |
https://dev.classmethod.jp/articles/trusted-advisor-windows-old-version-check/
|
awstrustedadvisor |
2023-03-14 15:07:41 |
海外TECH |
DEV Community |
Responsive Navbar |
https://dev.to/awaismehnga/responsive-navbar-12ab
|
devices |
2023-03-14 15:47:25 |
海外TECH |
DEV Community |
CSS card |
https://dev.to/awaismehnga/css-card-27pn
|
css |
2023-03-14 15:45:44 |
海外TECH |
DEV Community |
Jenkins 101 - Beginner to Advanced 🚀🚀 (PART -1/2) |
https://dev.to/tanmaygi/jenkins-101-beginner-to-advanced-part-12-5h25
|
Jenkins Beginner to Advanced PART IntroductionJenkins is a free and open source automation server It helps automate the parts of software development related to building testing and deploying facilitating continuous integration and continuous delivery Installation of JenkinsThere are multiple ways to install jenkins Jenkins On Ubuntu First install java sudo apt get updatesudo apt get y upgradesudo apt search openjdksudo apt install openjdk jdkjava versionNow go to Jenkins download and follow instructions Then run sudo systemctl status jenkinssudo systemctl enable jenkinssudo systemctl start jenkinsFinally go to http ip address or domain Run this to get initial passwordsudo cat var lib jenkins secrets initialAdminPasswordSelect like below Create a first admin userNow your jenkins is ready to use Welcome to the world of jenkins Note Make sure you have enabled port by enabling custom tcp udp as inside inbound rules in your security group if using EC On Docker container Install docker sudo apt get updatesudo apt get y upgradesudo install docker ioNow to download an jenkins image and run it as docker command we need to run the following commanddocker run p p d v jenkins home var jenkins home gt specify the port bind the host server port to jenkins port gt port where jenkins master and slave will communicate as jenkins can be build and started as a cluster If we have large workloads that you are running with the jenkins so this port is where communication between master and worker node is happening d To run container in detached mode background v To mount the volumes jenkins homejenkins jenkins lts Official docker image for jenkinsNow Check our jenkins container with docker ps Finally please go to http ip address or domain After opening the Jenkins dashboard follow the above steps Run docker exec it bash gt To run a command in a running container i e login as jenkins user Run docker volume inspect jenkins home gt To get info about our created volume On Amazon Linux CentOS First install java sudo yum update ysudo yum install java openjdkNow download latest jenkins package sudo wget O etc yum repos d jenkins repo Import a key file from Jenkins CI to enable installation from the package sudo rpm import Install Jenkinssudo yum install jenkins yEnable the Jenkins service to start at boot sudo systemctl enable jenkinssudo systemctl start jenkinssudo systemctl status jenkins Note For CentOS make sure to configure firewall as Jenkins service uses port to communicate If you re using the default firewalld service enter the following commands to allow access sudo firewall cmd permanent zone public add port tcpsudo firewall cmd reloadOpen a web browser and enter the following URL http ip address or domain Jenkins on Windows While it is recommended that you install jenkins controller on linux based server as windows has some complication like locking file sysytem semantics but we can also install it on our local Windows machine also Just Go through these videos to get up amp running Install jenkins on Windows server Install jenkins on local windows Blog on jenkins on Windows Running jenkins as a WAR Web Application Resource or Archive fileBefore installing jenkins make sure you have followingRunning jenkins using war file is platform OS independent Only requires that JRE or JDK be insatlled on target Java and are supported only Go to jenkins download page and copy the link of Generic Java package war file Then use wget lt jenkins war link gt to download the war file inside your home directory Now all you need to run jenkins is invoke java by running java jar jenkins warFinally go tolocalhost or lt your ip address gt as jenkins by default runs on port Hence your jenkins is up and running Note We can do this other way also by installing tomcat and then deploy the war file As eventually when we run java application on our servers We require tomcat Apache Tomcat is a web server and servlet container that is used to deploy and serve Java web applications sudo apt install openjdk jdksudo apt install wgetInstall tomcat withwget Extract the files tar xzf apache tomat M tar gzTo make it simple we will move this extracted file to a new directory Tomcat using the mv command and to do that I will execute the following command mv apache tomcat M tomcatOur next step is to provide a username and password for Apache Tomcat gt vim home edureka tomcat conf tomcat users xmlNow replace the tomcat users xml content with following This is to create tomcat users lt xml version encoding utf gt lt tomcat users gt lt role rolename manager gui gt lt role rolename manager script gt lt role rolename manager jmx gt lt role rolename manager jmx gt lt role rolename admin gui gt lt role rolename admin script gt lt user username user password password roles manager gui manager script manager jmx manager status admin gui admin script gt lt tomcat users gt In the above code as you can see that I have defined several roles and for all these roles I have given one single username called user and password i e password If you want to assign different username and password for different roles you can do that as well Now save it and close the file to go back to the terminal We need to start Apache Tomcat now but before that I will change my directory to Tomcat by executing the below command cd tomcatTo start Tomcat use the below command bin startup shNow we need to download Jenkins war File JENKINS FUNDAMENTALSRoles in jenkins In Jenkins we have two kinds of Roles We create jobs in jenkins to Automate app workflowBuild Tools Maven java app Gradle NPM nodejs app Install Nodejs and NPM on ubuntu Create simple freestyle jobs and Configure Git Repository Run Tests and build java application |
2023-03-14 15:41:03 |
海外TECH |
DEV Community |
WeCoded 2023 |
https://dev.to/madelene/wecoded-2023-42m7
|
WeCoded I pledge to embrace equality in tech by continuing to pay it forward In I started and organized a PyLadies chapter in Miami because none existed at the time Now we have joined chapters with PyLadies SWFL to make one PyLadies SoFlo Now that I live in Bristol England I plan on doing the same paying my knowledge forward Diversity and inclusion initiatives have positively impacted my workplace by showing that diverse viewpoints are what make problem solving effective I believe that approaching a problem in a unique way together helps solve that problem in the best possible way |
2023-03-14 15:33:17 |
海外TECH |
DEV Community |
Operators and true folse . |
https://dev.to/shoxjaxon2008/operators-and-true-folse--3075
|
Operators and true folse Salom dasturchi bugun siz bilan operatorslardan eng qiyini hisoblangan va operatorlari bilan tanishamiz va yana true folse nima ekanligi va qanday ishlashini ham tushuntirib o taman Operators va bu songa qiyat qo shadi bu sondan qiymat ayiradi TushuntirishMasalan n son bor deylik Agar ishorasi n sondan oldin kelsa u birinchi hisoblanadi n kabi Agar ishorasi n sonidan keyin kelsa u barcha amallardan keyin bajariladi n kabi Tushuntirish Masalan a son bor deylik Agar ishorasi a sondan oldin kelsa u birinchi hisoblanadi a kabi Agar ishorasi a sonidan keyin kelsa u barcha amallar bajarilgandan keyin bajariladi n kabi ESLATMA O zgaruvchidan keyin kelgan ishoralar faqat qolib ketgan o zgaruvchisi bilan qiymat o zgartiradi Bu operatorslarni kod orqali tushunib olishingiz mumkin int main int a a cout lt lt a lt lt endl cout lt lt a lt lt endl cout lt lt a lt lt lt lt a lt lt endl cout lt lt a lt lt lt lt a lt lt endl cout lt lt a lt lt lt lt a lt lt endl cout lt lt a lt lt lt lt a lt lt endl cout lt lt a lt lt lt lt a sonlari chiqadi return True va Folse True va Folse tarjimasi to g ri va hato C dasturlash tilida true bo lsa ekranga soni chiqadi Folse bo lsa ekranga soni chiqadi buni hozir o zingiz ko dda tushunib olishingiz mumkin Description Nsonini o qing AgarNsoni va orasida va ham kiradi bo lsa ni chop eting Aks holdani chop eting include lt iostream gt using namespace std int main int n cin gt gt n cout lt lt n gt amp amp n lt Maqolamdan ko p narsa bilib oldingiz degan umiddaman keyingi maqolamgacha hayr salomat bo ling |
2023-03-14 15:28:02 |
Apple |
AppleInsider - Frontpage News |
Apple pushes tech careers for women in developer interview feature |
https://appleinsider.com/articles/23/03/14/apple-pushes-tech-careers-for-women-in-developer-interview-feature?utm_medium=rss
|
Apple pushes tech careers for women in developer interview featureApple is attempting to encourage more women into a career in technology by publishing a feature on four women who are attempting to create change and drive culture via the App Store Apple Tuesday s feature piece arriving one week after International Women s Day discusses the backgrounds and work of four prominent female developers The quartet have worked on a number of well known titles in the App Store Read more |
2023-03-14 15:44:44 |
海外TECH |
Engadget |
Amazon’s satellite internet antennas can double as picnic tables for dolls |
https://www.engadget.com/amazons-satellite-internet-antennas-can-double-as-picnic-tables-for-dolls-153450879.html?src=rss
|
Amazon s satellite internet antennas can double as picnic tables for dollsAmazon has pulled back the curtain on its first slate of Project Kuiper antennas The terminals which will transmit data to and from Amazon s Low Earth Orbit internet satellites resemble furniture The largest of the bunch is even the size of a full blown patio table ーit measures inches by inches That model is intended for enterprise government and telecommunications operations Amazon said it will deliver internet speeds of up to Gbps The standard terminal for consumers has a smaller footprint measuring inches square with a thickness of one inch Without its mounting bracket it weighs less than five pounds This antenna should be able to deliver speeds up to Mbps Amazon says The company hasn t revealed how much the terminals will cost but says it should be able to build the standard model for less than per unit SpaceX s Starlink charges for a terminal That said there will be a more compact and wallet friendly terminal available from Amazon too A seven inch square antenna will weigh one pound and offer speeds of up to Mbps AmazonAmazon designed its own baseband chip for the terminals It says the chip which has the code name Prometheus has quot the processing power of a G modem chip found in modern smartphones the capability of a cellular base station to handle traffic from thousands of customers at once and the ability of a microwave backhaul antenna to support powerful point to point connections quot The same chip is being used in Project Kuiper satellites and ground gateway antennas Amazon says the chip will enable each satellite to process up to one terabit of traffic per second Project Kuiper is set to deploy two prototype satellites on the maiden flight of United Launch Alliance s Vulcan Centaur rocket That launch is scheduled for May Amazon expects to begin mass production of satellites by the end of this year and to commence launching them in the first half of It plans to start offering Project Kuiper service to customers later next year Earlier this month Amazon received conditional FCC approval to launch thousands of Low Earth Orbit satellites This article originally appeared on Engadget at |
2023-03-14 15:34:50 |
海外TECH |
Engadget |
TikTok now offers a feed dedicated to science and tech |
https://www.engadget.com/tiktok-now-offers-a-feed-dedicated-to-science-and-tech-150120046.html?src=rss
|
TikTok now offers a feed dedicated to science and techTikTok has a large science community and the social network wants everyone to know it on Pi Day The company is launching a dedicated STEM science technology engineering and math feed that shows only these more educational videos You may learn to code or discuss experiments without having to wade through TikTok s usual entertainment focused content Not surprisingly TikTok is taking steps to block misinformation in this new section Curator Common Sense Networks will study content to make sure it s relevant to the STEM feed while the fact checkers at Poynter will gauge the accuracy Any videos that don t pass both inspections won t reach the new feed Users in the US will start seeing the STEM feed in the quot coming weeks quot TikTok says The social media giant has already been experimenting with a quot Topic Feed quot in some regions to court fans of gaming sports and other common subjects The science oriented feed is considered an expansion of this initiative The launch isn t surprising Governments and schools are concerned TikTok may harm children and teens to the point where schools are suing the company over alleged mental health problems A STEM feed creates a positive space for quot co learning inspiration and enrichment quot as TikTok claims It s also potentially lucrative as TikTok claims that STEM linked hashtags have received more than billion views so far Whether or not this helps with TikTok s survival in the US is another matter Some politicians want to ban TikTok outright over fears it s a national security threat Officials are concerned China may collect data about key Americans or spread propaganda CEO Shou Zi Chew is set to testify before a House committee next week on privacy security and child safety issues A STEM feed won t necessarily address those worries This article originally appeared on Engadget at |
2023-03-14 15:01:20 |
海外TECH |
Engadget |
Google's health updates include an easier way to see if a clinic offers free or low-cost care |
https://www.engadget.com/googles-health-updates-include-an-easier-way-to-see-if-a-clinic-offers-free-or-low-cost-care-150036431.html?src=rss
|
Google x s health updates include an easier way to see if a clinic offers free or low cost careAt its annual health event The Check Up Google announced a slew of updates for Search Fitbit and developers On the Search front the company says it will soon identify community health centers and make it clear whether those facilities have free or low cost care options It seems there will be a label that reads quot offers free or low cost care based on individual circumstances quot In addition Google says it has employed Duplex to call hundreds of thousands of US healthcare providers and verify their information The conversational AI has also been used to check whether providers accept various state Medicaid plans After several pauses due to the COVID pandemic Medicaid will have a re enrollment deadline this year If folks in the US who are currently enrolled in the program fail to sign back up by March st they ll lose their healthcare coverage To help ensure people maintain their coverage Google says it will make it easier for everyone to find re enrollment information on Search GoogleTo assist those seeking help in a crisis Google has teamed up with ThroughLine which it says is the quot largest verified network of mental health and crisis helplines around the world quot As a result of the partnership Google will expand the number of crisis helplines it displays at the top of Search results in more languages and countries for queries related to personal crisis situations such as suicide and domestic violence GoogleAs for Fitbit Google is opening up more of the Health Metrics Dashboard features to users who don t have a subscription The company says that for instance users will be able to view trends for metrics such as breathing rate skin temperature and blood oxygen levels over longer periods of time Meanwhile Google touched on some health focused updates for developers It discussed a suite of development tools called Open Health Stack which it described as quot open source building blocks built on an interoperable data standard quot In other words Open Health Stack is designed to help developers build apps for healthcare workers to access key data and insights such as population health data Google says the suite is based on Fast Healthcare Interoperability Standards and can be used to build apps that keep data secure for offline use in areas without internet connectivity or cell coverage For instance a developer in Kenya called Intellisoft Consulting is building a maternal health app designed to help community health volunteers and pregnant women in rural communities This article originally appeared on Engadget at |
2023-03-14 15:00:36 |
海外科学 |
NYT > Science |
Guidelines Warn Against Racial Categories in Genetic Research |
https://www.nytimes.com/2023/03/14/science/race-genetics-research-national-academies.html
|
diversity |
2023-03-14 15:51:11 |
海外科学 |
NYT > Science |
EPA to Restrict Toxic ‘Forever Chemicals’ in Drinking Water |
https://www.nytimes.com/2023/03/14/climate/epa-water-pfas-chemicals.html
|
EPA to Restrict Toxic Forever Chemicals in Drinking WaterThe government will strictly limit in drinking water two chemicals that are ubiquitous in modern society but are linked to a range of health effects |
2023-03-14 15:39:40 |
海外科学 |
NYT > Science |
Jiang Yanyong, Who Helped Expose China’s SARS Crisis, Dies at 91 |
https://www.nytimes.com/2023/03/14/world/asia/jiang-yanyong-dead.html
|
Jiang Yanyong Who Helped Expose China s SARS Crisis Dies at A retired military surgeon he blew the whistle in on Beijing s cover up of the epidemic He was later punished for denouncing the Tiananmen Square crackdown |
2023-03-14 15:37:58 |
海外科学 |
NYT > Science |
A Giant Blob of Seaweed is Heading to Florida |
https://www.nytimes.com/2023/03/14/us/seaweed-blob-florida-mexico.html
|
A Giant Blob of Seaweed is Heading to FloridaThe mass known as the great Atlantic Sargassum belt is drifting toward the Gulf of Mexico Scientists say seaweed is likely to come ashore by summer to create a rotting stinking scourge |
2023-03-14 15:59:44 |
金融 |
金融庁ホームページ |
第211回国会に提出した金融庁関連法律案を公表しました。 |
https://www.fsa.go.jp/common/diet/211/index.html
|
関連 |
2023-03-14 17:00:00 |
金融 |
金融庁ホームページ |
国際会計基準(IFRS)財団モニタリング・ボード東京会合及び議長選出の公表について掲載しました。 |
https://www.fsa.go.jp/inter/etc/20230314/20230314.html
|
国際会計基準 |
2023-03-14 17:00:00 |
ニュース |
BBC News - Home |
'Landmark' ban for fan who racially abused striker |
https://www.bbc.co.uk/sport/football/64949252?at_medium=RSS&at_campaign=KARANGA
|
x Landmark x ban for fan who racially abused strikerA man who racially abused Brentford striker Ivan Toney on social media is banned from every football ground in the United Kingdom for three years |
2023-03-14 15:50:07 |
ニュース |
BBC News - Home |
Boris Johnson to give evidence to Partygate inquiry next week |
https://www.bbc.co.uk/news/uk-politics-64954751?at_medium=RSS&at_campaign=KARANGA
|
boris |
2023-03-14 15:03:31 |
ニュース |
BBC News - Home |
Meta layoffs: Facebook owner to cut 10,000 staff |
https://www.bbc.co.uk/news/technology-64954124?at_medium=RSS&at_campaign=KARANGA
|
roles |
2023-03-14 15:14:18 |
ニュース |
BBC News - Home |
Over 1,500 police accused of violence against women and girls |
https://www.bbc.co.uk/news/uk-64915126?at_medium=RSS&at_campaign=KARANGA
|
council |
2023-03-14 15:52:12 |
ニュース |
BBC News - Home |
Cheltenham Festival 2023: Constitution Hill wins Champion Hurdle |
https://www.bbc.co.uk/sport/horse-racing/64953649?at_medium=RSS&at_campaign=KARANGA
|
cheltenham |
2023-03-14 15:42:58 |
ビジネス |
ダイヤモンド・オンライン - 新着記事 |
SVB破綻、米司法省とSECが調査=関係筋 - WSJ発 |
https://diamond.jp/articles/-/319504
|
関係筋 |
2023-03-15 00:15:00 |
コメント
コメントを投稿