投稿時間:2023-04-01 23:15:11 RSSフィード2023-04-01 23:00 分まとめ(19件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
Azure Azureタグが付けられた新着投稿 - Qiita Azure で ChatGPT × Cognitive Search を使ったエンタープライズサーチを実現(応用例) https://qiita.com/nohanaga/items/18baccb843b4148e6a77 https 2023-04-01 22:33:15
技術ブログ Developers.IO 入社 1 か月で私が感じたこと(本音)と、実際に私が 1 か月でやってきたこと https://dev.classmethod.jp/articles/joined-emi-1month/ 記載 2023-04-01 13:48:47
海外TECH Ars Technica Get used to disappointment: Why technology often doesn’t meet the hype https://arstechnica.com/?p=1928303 gadgets 2023-04-01 13:30:49
海外TECH MakeUseOf 8 Free Tools and Templates for Calculating Your Freelance Income https://www.makeuseof.com/tools-templates-calculating-freelance-income/ Free Tools and Templates for Calculating Your Freelance IncomeAre you a freelancer struggling to calculate your income Here are some free tools and templates that can help you accurately compute your earnings 2023-04-01 13:30:16
海外TECH MakeUseOf Varla Eagle One Pro Review: The Jeep of E-Scooters https://www.makeuseof.com/varla-eagle-one-pro/ impressive 2023-04-01 13:05:16
海外TECH DEV Community Ready Gladiator 2 https://dev.to/brunoblaise/ready-gladiator-2-1i4 Ready Gladiator Ready Gladiator pointsDescriptionCan you make a CoreWars warrior that wins every single round Your opponent is the Imp The source is available here If you wanted to pit the Imp against himself you could download the Imp and connect to the CoreWars server like this nc saturn picoctf net lt imp redTo get the flag you must beat the Imp all rounds Note This challenge launches an instance on demand So this is the final challenge in the series we need to find the ultimate strategy to defeat the imp once and for all and constantly After numerous google searches I stumbled upon this reddit thread and yeah one of the comments literally says Good luck in picoCTF So google searching for the answer brought me to link which states The best passive defense against an imp is known as an imp gate The imp gate is an instruction that decrements some static location prior to the first code instruction of the warrior E g warrior some attack code herejmp warrior lt decrement relative position redcode name imp assert warrior some attack code herejmp warrior lt decrement relative position endcopying the code and sending it to the server wins the game and get us picoCTF your flag 2023-04-01 13:54:59
海外TECH DEV Community 🤯Twitter Recommendation Algorithm is now open sourced https://dev.to/hunghvu/twitter-recommendation-algorithm-is-now-open-sourced-3p4m Twitter Recommendation Algorithm is now open sourcedThis requires a recommendation algorithm to distill the roughly million Tweets posted daily down to a handful of top Tweets that ultimately show up on your device s For You timeline The pipeline above runs approximately billion times per day and completes in under seconds on average A single pipeline execution requires seconds of CPU time nearly x the latency you perceive on the app Along side with OpenAI I personally think this is one of an important moment in the computing community as no one would ever guess a global scale algorithm such as Twitter s Recommendation becomes open sourced Based on their engineer blog post it is not out of reach to say the code base literally costs hundred thousands if not millions a day to run How do you feel about this moment Twitter s engineer blog Twitter s Recommendation Algorithm Twitter Apache Thrift is an open source standalone lightweight data encoding library In this blog post we share the library we built so iOS developers outside Twitter can start using Thrift data blog twitter com GitHub repository twitter the algorithm Source code for Twitter s Recommendation Algorithm Twitter Recommendation AlgorithmThe Twitter Recommendation Algorithm is a set of services and jobs that are responsible for constructing and serving theHome Timeline For an introduction to how the algorithm works please refer to our engineering blog Thediagram below illustrates how major services and jobs interconnect These are the main components of the Recommendation Algorithm included in this repository TypeComponentDescriptionFeatureSimClustersCommunity detection and sparse embeddings into those communities TwHINDense knowledge graph embeddings for Users and Tweets trust and safety modelsModels for detecting NSFW or abusive content real graphModel to predict likelihood of a Twitter User interacting with another User tweepcredPage Rank algorithm for calculating Twitter User reputation recos injectorStreaming event processor for building input streams for GraphJet based services graph feature serviceServes graph features for a directed pair of Users e g how many of User A s following liked Tweets from User B Candidate Sourcesearch index… View on GitHub 2023-04-01 13:51:51
海外TECH DEV Community Ready Gladiator 1 https://dev.to/brunoblaise/ready-gladiator-1-2k21 Ready Gladiator Ready Gladiator pointsDescriptionCan you make a CoreWars warrior that wins Your opponent is the Imp The source is available here If you wanted to pit the Imp against himself you could download the Imp and connect to the CoreWars server like this nc saturn picoctf net port number lt imp redTo get the flag you must beat the Imp at least once out of the many rounds Note This challenge launches an instance on demand I tried asking chatGPT to help me understand the syntax and what to do but it gave me programs that just lost with a weird syntax So the next thing I did is google a reddit thread where someone asks how to beat the Imp gave the instructions sub jmp redcode name Paper Scissors Rock assert sub jmp endand this code won out of a wins and got me the flag still don t understand the game mostly picoCTF your flag 2023-04-01 13:50:52
海外TECH DEV Community No way out picoCTF https://dev.to/brunoblaise/no-way-out-picoctf-6nb No way out picoCTF No way out pointsAUTHOR KRISDescriptionPut this flag in standard picoCTF format before submitting If the flag was h m h fg submit picoCTF h m h fg to the platform Windows game Mac gameMy very first introduction to unity hacking In the game you re spawned inside an area with a ladder but you can escape because of an invisible border After trying to look for the flag inside the files of the compiled game I searched on google and was probably put in a watchlist on how to hack a unity game Ctf writeups pointed me to dnSpy a C decompiling program that can be used to hack mod unity games Using it and opening the games Assembly CSharp dll I could look inside the code In there I looked at the PlayerController class to see if I could make it so that I could jump infinitely to bypass the border I found this line of code that operates jumping if Input GetButton Jump amp amp this canMove amp amp this characterController isGrounded amp amp this isClimbing this moveDirection y this jumpSpeed and I removed the condition where it checks if the player is grounded from the if statement Compiling and exporting and opening the game once again I could jump in the air to bypass the border and get outside the region where when I went far enough gave the flag string in the middle of the string welcome to unity So the flag was picoCTF welcome to unity 2023-04-01 13:26:25
海外TECH DEV Community Git: the basic commands every developer should know https://dev.to/swordheath/git-the-basic-commands-every-developer-should-know-2m1e Git the basic commands every developer should knowGit is useful for anyone who writes code or tracks changes to files from web developers to app developers So what exactly is it and why should you start using it What is Git Git is a version control system that tracks file changes Using Git allows you to keep a record of all changes and return to specific versions as needed It is simple to use takes up little space and is extremely productive Its branching model distinguishes it from nearly every other SCM available The ability to merge changes from multiple people into a single source is what makes Git so simple You can use GitHub or other online hosts to store backups of your files as well as their revision history Git s main components To me Git is a wonderful tool to use in team projects because it helps to avoid confusion in code and brings a simple yet effective system to work Here I d like to cover up the main components of Git RepositoryA Git repository or simply repo contains all of the project files as well as the entire revision history You ll take an ordinary folder of files such as the root folder of a website and tell Git to turn it into a repository This creates a git subfolder in which all of the Git metadata for tracking changes is stored Simply put a repository is a place where you keep your code Commit To add new code to the repository you need to make acommit which is a snapshot of your repository at a particular point in time commits a specific change or series of changes to a file in the repository Git s history is made up of successive commits Branch A branch is used to store your changes until they are ready While the main branch master remains stable you can work on a branch When you re finished you can merge it with the master The great advantage is that you can have a few branches in one repository and merge them whenever you need Pull requests This is a technique used in Git for discussing changes before they are merged into your codebase A pull request is more than just a notification it s a dedicated discussion forum for the proposed feature This is especially convenient when several people are working on the same code allowing developers to check each other s work Now that we have briefly discussed the main theoretical Git components I want to list basic Git commands that every developer must know before starting to work with Git Starting a new repositorygit init Setting the author name and email address respectively to be used with your commitsgit config global user name “ name git config global user email “ email address Downloading existing source code from a remote repositorygit clone lt https name of the repository link gt Creating a new branchgit branch lt branch name gt Merging branch in mastergit merge lt branch name gt Getting updates from the remote repositorygit pull lt remote gt Adding files into the staging area for Gitgit add lt file or directory name gt The current state of the repositorygit status Sending the changes made on the master branch to your remote repositorygit push  variable name  master   Changing the head records or snapshots the file permanently in the version history git commit  m   Commit Message So far these are the main commands that everyone who works with Git must know In fact Git is extremely easy to use and the number of commands is quite large But to remember these commands is not a tough taskーyou simply need to start working with Git and most of the commands will be remembered intuitively 2023-04-01 13:08:02
Apple AppleInsider - Frontpage News Daily deals April 1: $60 off 9th-gen 10.2 iPad, 20% off 2021 iPad mini, $90 AirTag 4-pack, more https://appleinsider.com/articles/23/04/01/daily-deals-april-1-60-off-9th-gen-102-ipad-20-off-2021-ipad-mini-90-airtag-4-pack-more?utm_medium=rss Daily deals April off th gen iPad off iPad mini AirTag pack moreToday s top deals include off TurboTax Deluxe off a Samsung inch QLED K Smart TV off a Robosen Transformers Optimus Prim Elite G and moreDiscounts on the iPad Mini Ninth gen iPad and AirTags are in Saturday s deals The AppleInsider deals crew scours the internet for massive deals at online retailers to compile a list of bargains for you to enjoy including discounts on Apple products storage devices accessories TVs and other gadgets We share the best offers in our Daily Deals list to help save you money Read more 2023-04-01 13:08:43
Apple AppleInsider - Frontpage News VOCOlinc Smart Plug review: Powerful HomeKit control at a fair price https://appleinsider.com/articles/23/04/01/vocolinc-smart-plug-review-powerful-control-at-a-fair-price?utm_medium=rss VOCOlinc Smart Plug review Powerful HomeKit control at a fair priceThe VOCOlinc Smart Plug is a tiny device that can take any ordinary household item and make it controllable through HomeKit from your iPhone VOCOlinc Smart PlugUtilizing smart plugs is easy to do because all it takes to use them is to plug them in connect them to one of your devices and then start controlling them The level of customization expands in the app they are connected to Read more 2023-04-01 13:02:51
海外科学 BBC News - Science & Environment Unlimited sewage-dump fines for England water companies https://www.bbc.co.uk/news/science-environment-65145953?at_medium=RSS&at_campaign=KARANGA companiesministers 2023-04-01 13:02:23
ニュース BBC News - Home Dover delays as ferry passengers wait for hours https://www.bbc.co.uk/news/uk-65143093?at_medium=RSS&at_campaign=KARANGA border 2023-04-01 13:34:55
ニュース BBC News - Home Ken Buchanan: Scottish boxing great dies at 77 https://www.bbc.co.uk/sport/boxing/65149207?at_medium=RSS&at_campaign=KARANGA buchanan 2023-04-01 13:26:08
ニュース BBC News - Home Nottingham: 'White collar' boxer injured in charity bout dies https://www.bbc.co.uk/news/uk-england-nottinghamshire-65147562?at_medium=RSS&at_campaign=KARANGA nottingham 2023-04-01 13:46:17
ニュース BBC News - Home Unlimited sewage-dump fines for England water companies https://www.bbc.co.uk/news/science-environment-65145953?at_medium=RSS&at_campaign=KARANGA companiesministers 2023-04-01 13:02:23
ニュース BBC News - Home Manchester City 4-1 Liverpool: Pep Guardiola's side overcome Erling Haaland's absence to sink Reds https://www.bbc.co.uk/sport/football/65073200?at_medium=RSS&at_campaign=KARANGA Manchester City Liverpool Pep Guardiola x s side overcome Erling Haaland x s absence to sink RedsManchester City overcome the absence of leading scorer Erling Haaland to hammer Liverpool and cut Arsenal s lead at the top to five points 2023-04-01 13:49:35
IT 週刊アスキー ASUSがROG初のゲーム機型PC「ROG ALLY」を公式動画などで公開! https://weekly.ascii.jp/elem/000/004/131/4131128/ amdapu 2023-04-01 22:35: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件)