投稿時間:2023-07-27 07:15:14 RSSフィード2023-07-27 07:00 分まとめ(17件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia News] AIの4社(Anthropic、Google、Microsoft、OpenAI)、安全なAI目指すフォーラムFMF立ち上げ https://www.itmedia.co.jp/news/articles/2307/27/news087.html ITmediaNewsAIの社Anthropic、Google、Microsoft、OpenAI、安全なAI目指すフォーラムFMF立ち上げ米国のAI主要企業であるAnthropic、Google、Microsoft、OpenAIは、新フォーラム「FrontierModelForum」FMFを立ち上げた。 2023-07-27 06:34:00
AWS AWS Machine Learning Blog Use Stable Diffusion XL with Amazon SageMaker JumpStart in Amazon SageMaker Studio https://aws.amazon.com/blogs/machine-learning/use-stable-diffusion-xl-with-amazon-sagemaker-jumpstart-in-amazon-sagemaker-studio/ Use Stable Diffusion XL with Amazon SageMaker JumpStart in Amazon SageMaker StudioToday we are excited to announce that Stable Diffusion XL SDXL is available for customers through Amazon SageMaker JumpStart SDXL is the latest image generation model from Stability AI SDXL enhancements include native pixel image generation at a variety of aspect ratios It s designed for professional use and calibrated for high resolution … 2023-07-26 21:09:59
AWS AWS Management Tools Blog Use AWS Systems Manager for VMware Cloud on AWS (VMC) operations management https://aws.amazon.com/blogs/mt/use-aws-systems-manager-for-vmware-cloud-on-aws-vmc-operations-management/ Use AWS Systems Manager for VMware Cloud on AWS VMC operations managementA hybrid cloud strategy creates management and governance challenges for our customers These challenges include maintaining consistent cloud security and compliance policies across hybrid VMC and cloud environments providing a single pane of glass for visualizing and acting on operational data and providing deployment automation and control of cloud infrastructure across multiple cloud environments VMware … 2023-07-26 21:41:43
python Pythonタグが付けられた新着投稿 - Qiita 災害時に従業員ごとの避難情報(警戒レベル)を地図で可視化 https://qiita.com/ttsukagoshi/items/86e65099ae0f4a812703 pythonjupyternotebook 2023-07-27 06:53:05
海外TECH Ars Technica The US government is taking a serious step toward space-based nuclear propulsion https://arstechnica.com/?p=1956759 government 2023-07-26 21:01:56
海外TECH MakeUseOf Spotify Lyrics Not Working? 7 Ways to Fix It https://www.makeuseof.com/spotify-lyrics-not-working-how-to-fix/ artists 2023-07-26 21:15:24
海外TECH MakeUseOf How to Create 2D Animation in Godot Using AnimatedSprite https://www.makeuseof.com/2d-animation-godot-using-animatedsprite/ animations 2023-07-26 21:01:24
海外TECH DEV Community Mastering JavaScript Shorthands https://dev.to/leandro_nnz/mastering-javascript-shorthands-33mg Mastering JavaScript ShorthandsHey there fellow JavaScript enthusiasts Leandro Nuñez your trusty software engineer is back with some JavaScript magic Today we ll explore the art of JavaScript shorthands nifty techniques that make your code more concise and elegant We ll dive into real use case examples in both vanilla JavaScript and the shorthand form So buckle up and let s elevate your JavaScript skills to new heights The Ternary Operator Use Case Conditional AssignmentNormal JavaScript let isAdmin if user role admin isAdmin true else isAdmin false Shorthand const isAdmin user role admin true false Object Property Shorthand Use Case Creating Objects with Variables Normal JavaScript const name Leandro const age const person name name age age Shorthand const name Leandro const age const person name age Default Parameter Values Use Case Providing Default Values to Function Parameters Normal JavaScript function greet name name name Guest return Hello name Shorthand function greet name Guest return Hello name Short Circuit Evaluation Use Case Fallback for Undefined or Null Values Normal JavaScript const username getUsernameFromAPI const displayName username username Anonymous Shorthand const username getUsernameFromAPI const displayName username Anonymous Array Destructuring Use Case Swapping Variables Normal JavaScript let a let b const temp a a b b temp Shorthand let a let b a b b a Template Literals Use Case Dynamic String Concatenation Normal JavaScript const name Leandro const greeting Hello name Shorthand const name Leandro const greeting Hello name Arrow Functions Use Case Concise Function Definitions Normal JavaScript function add a b return a b Shorthand const add a b gt a b Nullish Coalescing Operator Use Case Providing Default Values for Null or Undefined Variables Normal JavaScript const data fetchUserData const username data null amp amp data undefined data username Guest Shorthand const data fetchUserData const username data Guest Object Destructuring Use Case Extracting Object Properties into Variables Normal JavaScript const user name Leandro age country USA const name user name const age user age const country user country Shorthand const user name Leandro age country USA const name age country user Spread Operator Use Case Merging Arrays or Objects Normal JavaScript const arr const arr const mergedArray arr concat arr Shorthand const arr const arr const mergedArray arr arr Logical OR Assignment Use Case Assigning a Default Value to a Variable Normal JavaScript let count if count count Shorthand let count count Short Circuit Evaluation for Function Call Use Case Avoiding Unnecessary Function Execution Normal JavaScript function fetchData if shouldFetchData return fetchDataFromAPI else return null Shorthand function fetchData return shouldFetchData amp amp fetchDataFromAPI There you have it JavaScript shorthands continue to impress with their elegance and efficiency Incorporate these concise examples into your codebase and watch your JavaScript skills soar to new heights Happy coding and enjoy unleashing the power of JavaScript shorthands in your projects 2023-07-26 21:19:29
海外TECH DEV Community Set up a Wire-Hole server on a free-tier Oracle Cloud instance https://dev.to/lucasplacentino/set-up-a-wire-hole-server-on-a-free-tier-oracle-cloud-instance-b69 Set up a Wire Hole server on a free tier Oracle Cloud instance How to create a Wireguard VPN PiHole ad blocking DNS instance on a forever free Oracle Cloud VMWant to get a forever free VPN at a single location including an ad blocking DNS server In this tutorial we will get advantage of Oracle Cloud s forever free tier to get a VM instance at your choice of a datacenter location Get your VM instanceOracle s Cloud Infrastructure OCI allows you to get access to multiple Virtual Machine VM instances for free for a lifetime as opposed to AWS or GCP only offering a single year for free this also includes IPv addresses for each instance To get your free tier OCI account go to You will also have access to some paid features for days but don t worry your free tier VM will remain forever free You have to choose which datacenter location you want your account to reside at where your free instances will be running In this tutorial I will be using Oracle s Amsterdam datacenter eu amsterdam In the OCI menu head to Compute gt InstancesClick on Create Instance Name your instance for example wirehole server Under Image and Shape click Edit Under Shape click Change Shape Two architectures are available x the AMD VM Standard E Micro shape instances with each vCPU and GB RAM ARM the ARM Ampere VM Standard A Flex shapeflexible multiple instances or bigger instance so vCPUs and GB RAM to share or in a single instance You can choose any one of the two you prefer Just be aware that they might require different versions of some software you might install later while experimenting on your own I personally used a single big ARM Ampere VM with the full vCPUs and GB of RAM on it because I also use this instance for other purposes while running Wire Hole Select your chosen shape configuration Next under Image select Change ImageUnder Image source select Platform imagesSelect Canonical Ubuntu or another OS of your choice though they are not guaranteed to work with this tutorial Then scroll down do Add SSH keysSelect Generate a key pair for me Or put your own public key if you already have an ssh key pair generated from your computer Save the private key the key file on your computer you WILL NEED it later and this is the ONLY time you will be able to download it so keep it safe and absolutely do not share it You can also download the public key but we won t need it here Then click on Create You will have to wait a couple of minutes to have your VM instance up and running Once the yellow square turns green it means everything is running Done Your VM instance is created and running Opening up portsIn order to get access to the Wireguard server that will be running on your VM you need to open up its port s in your OCI network In your instance page head to Attached VNIC or Primary VNIC gt Subnet gt Default Security ListClick Add Ingress Rules Then put Source CIDR IP Protocol UDPDestination Port Range Description WireGuard Port or whatever you prefer All done Your instance s ports that are needed are open Setting up the Wire Hole docker containerIn order to set Wire Hole up in your VM we need to access its Linux console To do that we will use SSH to connect to it SSHing with your computer is as simple as just going to your Terminal MacOS Linux or PowerShell Windows and put ssh i path to private key ubuntu IPADDRESSWhere path to private key is where you saved the SSH private key on your computer and IPADDRESS is the Public IP address of your instance you can find it at the instance s information under Instance access looking like Here ubuntu is the user When connecting to it for the first time your computer will ask to trust the fingerprint of the ssh server write yes to not get this message again on future ssh sessions You are now remotely connected to your instance s terminal We will be using docker compose to set up the Wire Hole docker container Create a directory to put our docker compose file and head into it mkdir wirehole docker amp amp cd wirehole dockerCreate a file named docker compose yml touch docker compose ymlTo edit the file you can use any in terminal editor like vim or nano Let s use nano nano docker compose ymlWhat you need to put into this YML file depends on what architecture you chose for your instance which shape you selected ARM Ampere or AMD x For ARM Ampere version networks private network ipam driver default config subnet services unbound image mvance unbound rpi latest or use pedantic unbound latest which supports arm container name unbound restart unless stopped or always hostname unbound volumes unbound opt unbound etc unbound networks private network ipv address wireguard depends on unbound pihole image linuxserver wireguard container name wireguard cap add NET ADMIN SYS MODULE environment PUID PGID TZ Europe Amsterdam change this to your VM Timezone SERVERPORT SERVERURL ddns example com optional For use with DDNS Uncomment to use PEERS How many peers to generate for you clients PEERDNS Set it to point to pihole INTERNAL SUBNET ALLOWEDIPS Split tunnel Remove comment if you want full tunnel or put volumes wireguard config lib modules lib modules ports udp dns Points to pihole Points to unbound sysctls net ipv conf all src valid mark restart unless stopped or always networks private network ipv address pihole depends on unbound container name pihole image pihole pihole latest restart unless stopped or always hostname pihole dns Points to unbound environment TZ Europe Amsterdam change this to your VM Timezone WEBPASSWORD Blank password Can be whatever you want ServerIP Internal IP of pihole DNS Unbound IP DNS If we don t specify two it will auto pick google Volumes store your data between container upgrades volumes etc pihole etc pihole etc dnsmasq d etc dnsmasq d Recommended but not required DHCP needs NET ADMIN note on capabilities cap add NET ADMIN networks private network ipv address For AMD x version networks private network ipam driver default config subnet services unbound image mvance unbound latest for x arch container name unbound restart unless stopped or always hostname unbound volumes unbound opt unbound etc unbound networks private network ipv address wireguard depends on unbound pihole image linuxserver wireguard container name wireguard cap add NET ADMIN SYS MODULE environment PUID PGID TZ Europe Amsterdam change this to your VM Timezone SERVERPORT SERVERURL ddns example com optional For use with DDNS Uncomment to use PEERS How many peers to generate for you clients PEERDNS Set it to point to pihole INTERNAL SUBNET ALLOWEDIPS Split tunnel Remove comment if you want full tunnel or put volumes wireguard config lib modules lib modules ports udp dns Points to pihole Points to unbound sysctls net ipv conf all src valid mark restart unless stopped or always networks private network ipv address pihole depends on unbound container name pihole image pihole pihole latest restart unless stopped or always hostname pihole dns Points to unbound environment TZ Europe Amsterdam change this to your VM Timezone WEBPASSWORD Blank password Can be whatever you want ServerIP Internal IP of pihole DNS Unbound IP DNS If we don t specify two it will auto pick google Volumes store your data between container upgrades volumes etc pihole etc pihole etc dnsmasq d etc dnsmasq d Recommended but not required DHCP needs NET ADMIN note on capabilities cap add NET ADMIN networks private network ipv address All you have to do is change TZ to your Time Zone You can then save the file Using nano used here to save the file you have to press CTRL X then press Y then press ENTER to confirm After this we need to create the unbound config file Go back to the previous directory wirehole docker cd Create an unbound directory and head into it mkdir unbound amp amp cd unboundCreate the file and edit it touch unbound conf amp amp nano unbound confPut this into the file server cache max ttl cache min ttl directory opt unbound etc unbound edns buffer size interface rrset roundrobin yes username unbound log local actions no log queries no log replies no log servfail no logfile dev null verbosity aggressive nsec yes delay close do daemonize no do not query localhost no neg cache size M qname minimisation yes access control allow access control allow access control allow access control allow auto trust anchor file var root key chroot opt unbound etc unbound harden algo downgrade yes harden below nxdomain yes harden dnssec stripped yes harden glue yes harden large queries yes harden referral path no harden short bufsize yes hide identity yes hide version yes identity DNS private address private address private address private address private address fd private address fe private address ffff tls cert bundle etc ssl certs ca certificates crt unwanted reply threshold val clean additional yes msg cache size num queries per thread outgoing range rrset cache size minimal responses yes prefetch yes prefetch key yes serve expired yes so reuseport yes so rcvbuf m remote control control enable noThen save it Using nano CTRL X then Y then ENTER Go back to the parent directory cd And voilà that s configured Running your Wire HoleTo start the Wire Hole docker container just run Make sure you are in the wirehole docker directory docker compose up dAll done Your Wire Hole should be running smoothly You will get in the console a QR code that you can use to set up the VPN connection on your phone using the Wireguard app available on Android and iOS Setting up your device to connect to your VPNFor a phone simply scan the QR code you saw with the Wireguard app iOS App Store Android Play Store to set up the device s VPN connection Accessing Pi Hole s interfaceWhile connected to the Wireguard VPN go to to access Pi Hole s web interface The password should be blank You can then change the password to the interface and configure your blocklist That s it You are using your very own VPN and ad blocking DNS server If you appreciated this tutorial please follow my Dev to to see other blog posts and my GitHub where I keep pretty much everything I do OPTIONAL Linking a domain to your instanceIf you own a domain you can configure a subdomain to use for your VPN Add a type “A entry to your domain s DNS management pointing to your VM instance s IPv address with any subdomain you want For example A wireguard yourdomain com gt You can now connect to your VPN via your domain rather than the public IP address OPTIONAL Setting up a half tunnel connection NOTE As of this is not working properly any suggestion for a fix is welcome Using a half tunnel connection to your VPN allows you to only pass your DNS request to your server thus only using Pi Hole ad blocking DNS and still route all other traffic without a VPN allowing for faster speeds You will get all the ad blocking you were getting with the full tunnel while retaining your full internet speed Note this does not encrypt your traffic and does not change your public IP so no security advantages from using a VPN In your docker compose yml uncomment ALLOWEDIPS to ALLOWEDIPS And in your device s Wireguard VPN configuration you need to changeAllowedIPs toAllowedIPs Save it and there is your half tunnel set up For more in depth informations and further configurations go to This tutorial is based on IAmStoxe s wirehole GitHub Repository I updated it to be compatible with ARM instances that can be found at my wirehole arm GitHub Repository 2023-07-26 21:05:03
海外TECH Engadget Waymo pushes back its self-driving truck efforts to focus on ride hailing https://www.engadget.com/waymo-pushes-back-its-self-driving-truck-efforts-to-focus-on-ride-hailing-211355559.html?src=rss Waymo pushes back its self driving truck efforts to focus on ride hailingDon t expect to see many Waymo powered autonomous big rigs in the near future Waymo now plans to quot push back quot its driverless trucking efforts and shift its attention toward its One ride hailing service The move will help the company concentrate on making these self driving taxis a quot commercial success quot according to co CEOs Dmitri Dolgov and Tekedra Mawakana Waymo justified the decision by pointing to quot significant quot growth in demand for its robotaxis in Los Angeles Phoenix and San Francisco It also noted rapid upgrades to Driver the AI system that handles its autonomous cars There s quot tremendous momentum quot in One the co chiefs say and the new strategy will help make the most of this trend The Alphabet owned brand still intends to work with Daimler on self driving semi trucks It s shifting most of its technical development toward Waymo One but believes work on Driver particularly for highway driving will indirectly benefit trucking There s no updated timeline for when trucks may reach the roads but TechCrunchunderstands only a handful of workers will lose jobs as a result of the transition Most have taken other positions at Waymo Waymo started testing autonomous big rig trucks in with rapid expansions in and that included the launch of its Via cargo transportation division The firm won the attention of major partners including UPS and former rival Uber Freight However there s no doubt that Waymo One was the star and won the most interest Uber even expects to offer Waymo rides and deliveries in Phoenix later this year The change isn t guaranteed to pan out While Waymo is closer to offering paid rides in multiple markets it s still facing opposition from officials who are concerned about safety issues Driverless cars have blocked traffic interfered with first responder vehicles and otherwise caused problems and there s a call for regulators to limit just where and when robotaxis can operate This article originally appeared on Engadget at 2023-07-26 21:13:55
海外科学 NYT > Science NASA Picks Lockheed Martin to Build a Nuclear-Powered Rocket https://www.nytimes.com/2023/07/26/science/nasa-nuclear-rocket-darpa.html propulsion 2023-07-26 21:56:02
海外科学 NYT > Science Avi Loeb’s Deep Dive for Alien Life Leaves His Peers Dubious https://www.nytimes.com/2023/07/24/science/avi-loeb-extraterrestrial-life.html Avi Loeb s Deep Dive for Alien Life Leaves His Peers DubiousAvi Loeb a Harvard astrophysicist says that material recovered from the seafloor could be from an extraterrestrial spacecraft His peers are skeptical 2023-07-26 21:42:06
ニュース BBC News - Home Sinéad O'Connor: Irish singer dies aged 56 https://www.bbc.co.uk/news/entertainment-arts-66318626?at_medium=RSS&at_campaign=KARANGA compares 2023-07-26 21:40:12
ニュース BBC News - Home Mediterranean fires: Evacuations as new blazes break out in Greece https://www.bbc.co.uk/news/world-europe-66319340?at_medium=RSS&at_campaign=KARANGA mediterranean 2023-07-26 21:10:18
ニュース BBC News - Home Police chief Will Kerr faces serious sexual offence allegations https://www.bbc.co.uk/news/uk-northern-ireland-66317717?at_medium=RSS&at_campaign=KARANGA cornwall 2023-07-26 21:02:44
ニュース BBC News - Home Fed raises interest rates to highest in 22 years https://www.bbc.co.uk/news/business-66316710?at_medium=RSS&at_campaign=KARANGA clues 2023-07-26 21:47:20
ビジネス ダイヤモンド・オンライン - 新着記事 お金が「紙くず」になっても資産を守る…超富裕層向けプライベートバンクの“最大の使命”とは?〈マンガで学ぶ経済教室〉 - インベスターZで学ぶ経済教室 https://diamond.jp/articles/-/326664 三田紀房 2023-07-27 06:50: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件)