投稿時間:2022-02-12 18:19:01 RSSフィード2022-02-12 18:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
ROBOT ロボスタ 「AIは全体最適化へ向かう」東京大学×ソフトバンク「Beyond AI 国際シンポジウム」AIの今後、エネルギー問題、量子技術等を語る https://robotstart.info/2022/02/12/beyond-ai-2nd-symposium.html 2022-02-12 08:50:21
python Pythonタグが付けられた新着投稿 - Qiita 【初心者向け】ユニットテストの導入 https://qiita.com/RhT/items/581af6eab6cc08f501a4 ユニットテストのメリット上述のようにユニットテストは、全体の関数が正しく動作するのか調べるのではなく、関数ごとに動作をテストする手法である。 2022-02-12 17:57:03
python Pythonタグが付けられた新着投稿 - Qiita Kaggle Tabular Playground Series - Feb 2022に取り組んでみる https://qiita.com/miso_taku/items/f853a6a18c733794e598 TabularPlaygroundSeriesFebの概要CompetitionsのDescriptionの内容を見ると今回のコンペはどうやらゲノム解析技術のデータを使って、種類の細菌を分類することが課題のようです。 2022-02-12 17:52:54
python Pythonタグが付けられた新着投稿 - Qiita 「新・明解Pythonで学ぶアルゴリズムとデータ構造」で勉強日記#6 https://qiita.com/kato_squalldeka/items/c908ff1266486e45353c タプルの最大値文字列の最大値文字列のリストの最大値を求めるlistはタプルの最大値、文字列内の文字の最大値文字列のリストの最大値を求めるプログラムlist配列の要素の最大値を求めて表示タプル文字列文字列のリストfrommaximportmaxoftsstringaDTSAACFLACprintftの最大値はmaxoftです。 2022-02-12 17:30:28
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Rails 6】simple_calendar でシンプルなカレンダー機能を作ってみる https://qiita.com/kazama1209/items/3379cf2db9981f617791 本実装準備ができたので、本格的な実装に入りましょう。 2022-02-12 17:15:38
Azure Azureタグが付けられた新着投稿 - Qiita Az-104 まとめ1(Azure AD 周り) https://qiita.com/takechiyosw/items/dbfbb6fa96609a9a8a5e ActiveDirectoryDomainServiceオンプレミスのユーザー管理サービス。 2022-02-12 17:55:46
Ruby Railsタグが付けられた新着投稿 - Qiita Rails ルーティングの設定方法 https://qiita.com/yoshi-sho-0606/items/579beecef00be1653bec resourcesusersdocollectiondogetspecialofferある条件に合致した特定のユーザーを抜き出して処理をしたいときendendusersspecialofferと言うURLが作成されるmembercollectionと似た機能、こちらは「ID」を伴う個別のリソースに対してルーティングを新たに追加したいときの書き方。 2022-02-12 17:58:36
Ruby Railsタグが付けられた新着投稿 - Qiita [jQuery]プルダウンで選んだ値をform_withのparamsにブチ込む方法 https://qiita.com/hryau6/items/837deb28c42e5870b397 jQueryプルダウンで選んだ値をformwithのparamsにブチ込む方法経緯formwith内にselectを書くことができないけど、選択された値をparamsとしてsubmitさせたい。 2022-02-12 17:31:33
Ruby Railsタグが付けられた新着投稿 - Qiita 【Rails 6】simple_calendar でシンプルなカレンダー機能を作ってみる https://qiita.com/kazama1209/items/3379cf2db9981f617791 本実装準備ができたので、本格的な実装に入りましょう。 2022-02-12 17:15:38
技術ブログ Developers.IO Security Hub でメンバーアカウントを間違ったメールアドレスで追加してしまったのですが、招待が完了してしまうのはなぜでしょうか? https://dev.classmethod.jp/articles/securityhub_wrong-address_success/ securityhub 2022-02-12 08:29:35
技術ブログ Developers.IO AWS ParallelCluster v3.1.1 のアップデート情報紹介 https://dev.classmethod.jp/articles/aws-parallelcluster-v311-released/ awsparallelclusterv 2022-02-12 08:02:31
海外TECH DEV Community Firewall: Egress Filtering with ufw https://dev.to/dogealgo/firewall-egress-filtering-with-ufw-2038 Firewall Egress Filtering with ufw What is about Firewalls with Egress filtering Egress filtering is when we control the traffic leaving our network Egress filtering limits our outbound traffic flow to a reduced subset by introducing Firewall rules Which tool we are going to use for implementing Egress Filtering We are going to use the ufw tool which defaults in Ubuntu distros You can also install ufw for other Linux distros Lets go root firstsudo suWe are assuming here that we have a system with Ubuntu lets start by enabling ufwufw enable Why is there a need for Egress Filtering Egress filtering restricts the information that you don t want to leak into internet Whether an internal system is compromised and it shares information to some remote hosts that can we avoided an information leak may happen due to misconfigurations or network mapping attempts and that can also we avoided Now we are going to block some TCP UDP ports and IP from establishing outbound connections Trivial File Transfer Protocol TFTP UDP TFTP helps to move files between remote hosts thus it will be a doorway for the attacker to move their payloads to the compromised system an unsual connection between your system and a remote host through tftp is an indication of a compromised systemYou can find if any connection established through this port by using the following commandnetstat anu grep its better to block its port so that it wont do any outbound communications for that try the following commandufw deny out udpNow your firewall is updated with blocking the TFTP on UDP at port Syslog UDP Syslog operating on UDP at port helps to send logs to a server Log files may contain sensitive or private information anytime if you are not sure of any system you can block syslog from making any oubound connection Try ufw deny out udp Simple Network Management Protocol SNMP UDP SNMP on UDP at port range to is capable of collecting organizing informations monitor the network detect network faults and sometimes even used to configure remote devices To block SNMP Tryufw deny out udp SMTP mail server TCP Many systems are compromised for to be used as SPAM relays for sending emails To avoid this we can block all the IPs from accessing TCP port execpt our mail server ipufw allow from lt our mail server ip gt to any proto tcp port ufw deny from any to any proto tcp port Internet Relay Chat IRC TCP IRC is a network for text based messaging An attacker can communicate with the compromised system throuh IRC eventhough IRC can connect with any port the most common port ranges are to Try ufw deny out tcp The Internet Control Message Protocol ICMPICMP is a network layer protocol used by network devices to diagnose network communication issues ICMP is mainly used to determine whether or not data is reaching its intended destination in a timely manner Using ICMP can lead to three differnt scenarios of vulnerablityEcho reply packets type code are returned by a system in response to receiving Echo Request packets This is when someone pings our system replies back An attacker can use this for secret communication channel An attacker can ping a network with its connected hosts and look for host unreachable type code reply from the network to identify which hosts are offline and which are online which in turn becomes a network mapping tool for the attacker Time Exceeded in Transit type code Network mapping tools like traceroute tracert Firewalk and tcptraceroute map all of the routers between a source and a target host by creating modified packets with having abnormal low Time To Live TTL So the routing devices in its path return ICMP time exceeded As usual got root with sudo suLets take a back up of our firewall rulescp etc ufw before rules etc ufw before rules backupvi etc ufw before ruleswhich will output as below ok icmp codes for INPUT A ufw before input p icmp icmp type destination unreachable j ACCEPT A ufw before input p icmp icmp type source quench j ACCEPT A ufw before input p icmp icmp type time exceeded j ACCEPT A ufw before input p icmp icmp type parameter problem j ACCEPT A ufw before input p icmp icmp type echo request j ACCEPTtry changing like below ok icmp codes for INPUT A ufw before input p icmp icmp type destination unreachable j DROP A ufw before input p icmp icmp type source quench j ACCEPT A ufw before input p icmp icmp type time exceeded j DROP A ufw before input p icmp icmp type parameter problem j ACCEPT A ufw before input p icmp icmp type echo request j DROPthen reload the firewallufw reloadHope you guys find usefull Support us by Buying us some Cookies 2022-02-12 08:45:15
海外TECH DEV Community TRUE WAY OF LEARNING TO CODE https://dev.to/jagannathkrishna/true-way-of-learning-to-code-2c4p TRUE WAY OF LEARNING TO CODEMany Beginner programmers learn code in the wrong way They learn to code like this Write all the information they learn in a notebook Learn all the syntax Learn some theories Learn all definitions etc You may know some other points if you are like this But after all these if someone told them to code a project the can t They tell so many definition theories etc but they can t code They don t know how to So we can understand this is not the true way of learning code The true way of learning code is is by Googling Yah You read that right Googling is the key If you forget a syntax just google it If you caught an error just google if you forget something else just google So when there is google you don t need to learn all things thoroughly Just understand the concept But the thing is if you forget some syntax you can google But you need to know where to put that in code That is the key No matter you copy amp pasted from stack overflow or from somewhere else you need to know where to paste it So Just understand the concept I hope you understood my message Also Share this message to beginner programmers This might help them Thank You For Reading Have a Nice day And comment is open for you valuable replies 2022-02-12 08:22:13
海外TECH DEV Community How to install an SSL certificate on a Bitnami stack hosted on Amazon Lightsail? https://dev.to/thesameeric/how-to-install-an-ssl-certificate-on-a-bitnami-stack-hosted-on-amazon-lightsail-2jc5 How to install an SSL certificate on a Bitnami stack hosted on Amazon Lightsail In this note I ll be writing about how to install an SSL certificate on a Bitnami stack hosted on Amazon Lightsail For the purpose of this tutorial we ll be using WordPress installation on AWS Lightsail After days of figuring out the installation I finally got a short and quick way of doing it Let us get started Setting up Wordpress on AWS LightsailLog in to your AWS console In the search box inside the header search for Lightsail Click on it to go to the Lightsail console Once you re inside the Lightsail console Click on create instance button In the create instance screen you can choose your preferred instance location Under the instance image for the platform choose Linux Unix and App OS WordPress for Select a blueprint Scroll down to select your instance plan and pick a plan that supports your budget Under identify your instance give the instance a unique and descriptive name Click on create instance You ll wait a while for AWS to perform its magic Once the instance is created we can install the SSL certificate Linking your domain to your Lightsail instanceAfter the setup is complete the next step is to create a static IP address assign it to your new instance and link it to a domain The domain can either be on AWS or on any other domain registry The following steps will guide you through the process In your Lightsail console click on the networking tabClick on create static IP Choose the instance you want to add the static IP to Then give it a unique name to identify it Click on create and it will generate a new static IP and attach it to your instance Add the static IP to your DNS server Installing SSL certificateWe ll need to ssh into the instance to add the SSL certificate We will be using the Lightsail web terminal for this To begin click on the terminal icon on the instance card If it launches successfully you ll see a screen like the one below If you ve reached this point the next thing we ll do is to run the command sudo opt bitnami bncert tool You ll get a prompt that an update for the tool is available Enter Y Yes to update the tool It is best to use the most recent version of the tool The tool will exit and run the update After the update has run successfully run the command sudo opt bitnami bncert tool again This time you will get a prompt to enter the domain names separated by space you then enter your domain name i e somethingfishy com www somethingfishy comNOTE make sure to add only domain names that have been added to your DNS server to avoid an error After entering the domain names hit enter and allow the tool to work After a few seconds another prompt will appear to enable redirection from HTTP to HTTPS enter Y and continue If you added a www domain to your list in the previous step you would also get a prompt to redirect www or t non www domain Yet another prompt will appear a few seconds after you hit enter from the previous step This time it will list about changes it wants to perform on your Binami instance Enter Y and hit enter You ll get another one to accept the LetsEncrypt subscriber s agreement Enter Y and click on continue After this you should get a success message with the directories where the certs are click on continue and close the terminal You can visit your site now Extra to get your Wordpress admin password use the command cat HOME bitnami application passwordPlease Like Share and Subscribe 2022-02-12 08:07:27
海外TECH DEV Community Calling All Africa Flutter Developers & Figma Designers! https://dev.to/parabeac/calling-all-africa-flutter-developers-figma-designers-4i5o Calling All Africa Flutter Developers amp Figma Designers In partnership with our Parabeac Africa Chapter led by Will Odia we are throwing our first challenge where you can win up to USD by building an app prototype or component package using Figma Flutter amp Parabeac You can use parabeac core which is our open source tool that converts Figma files into Flutter code or Parabeac Nest which is a web app that enables you to take the design file generate code and merge it into a Github repo To participate in the challenge create an app prototype or a component package using Parabeac and submit your video s here There are two challenges available Video Submission Judged by Parabeac team members We will select st nd amp rd place winners based on the video submitted and a review of the codebase min max TikTok Submission The video with the most views highlighting the prototype package built with Parabeac will be the winner Be sure to use the parabeac hashtag Be sure to watch this video to help give you ideas on submissions t Good luck 2022-02-12 08:06:57
Apple AppleInsider - Frontpage News Zoom users report Mac microphone staying on after calls https://appleinsider.com/articles/22/02/11/zoom-users-report-mac-microphone-staying-on-after-calls?utm_medium=rss Zoom users report Mac microphone staying on after callsAn apparent bug in the Zoom video conference app was reportedly seeing Mac users on macOS Monterey spotting that their microphones do not switch off Zoom s enormous growth during the coronavirus pandemic has previously uncovered problems that were only noticeable when the app was used at scale Following the company s efforts and Apple s intervention those issues appeared to be resolved Now however The Register reports that an unknown number of users are finding their microphone stay on after a Zoom call It is being spotted because of Apple s controversial orange dot icon that means a microphone is in use Read more 2022-02-12 08:19:24
海外ニュース Japan Times latest articles The era of pandemic restrictions is fast coming to an end https://www.japantimes.co.jp/news/2022/02/12/world/science-health-world/covid-restriction-era/ The era of pandemic restrictions is fast coming to an endWhile the world has changed since early and new approaches to restrictions are justified health officials warn that the coronavirus remains part of our 2022-02-12 17:40:30
ニュース BBC News - Home Ukraine tensions: Russia invasion could begin any day, US warns https://www.bbc.co.uk/news/world-europe-60355295?at_medium=RSS&at_campaign=KARANGA ukraine 2022-02-12 08:29:34
ニュース BBC News - Home Russia-Ukraine crisis: UK nationals told to leave Ukraine https://www.bbc.co.uk/news/uk-60355311?at_medium=RSS&at_campaign=KARANGA russia 2022-02-12 08:22:15
ニュース BBC News - Home Valieva 'entourage' investigation would be welcome - IOC https://www.bbc.co.uk/sport/winter-olympics/60358382?at_medium=RSS&at_campaign=KARANGA Valieva x entourage x investigation would be welcome IOCThe IOC says it would welcome an anti doping investigation into Kamila Valieva s entourage after the year old positive drugs test 2022-02-12 08:50:07
北海道 北海道新聞 千歳の滑落 女性の身元判明 https://www.hokkaido-np.co.jp/article/644959/ 千歳市奥潭 2022-02-12 17:09:00
北海道 北海道新聞 ミャンマー、連邦合意75年 少数民族に和平呼び掛け https://www.hokkaido-np.co.jp/article/644958/ 少数民族 2022-02-12 17:03:00
北海道 北海道新聞 金正日氏生誕80年で芸術祭 北朝鮮、連日行事開催 https://www.hokkaido-np.co.jp/article/644957/ 開催 2022-02-12 17:02:00

コメント

このブログの人気の投稿

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