投稿時間:2022-02-02 22:22:40 RSSフィード2022-02-02 22:00 分まとめ(24件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Japan Blog Red Hat OpenShift Service on AWS (ROSA) の年間契約 https://aws.amazon.com/jp/blogs/news/red-hat-openshift-service-on-aws-rosa-annual-contracts/ RedHatOpenShiftServiceonAWSROSAの年間契約この記事はRedHatOpenShiftServiceonAWSROSAannualcontracts記事公開日年月日を翻訳したものです。 2022-02-02 12:42:38
AWS AWSタグが付けられた新着投稿 - Qiita Node.jsでS3に画像をアップロードする。 https://qiita.com/kouji0705/items/fae73f913de70482fe2f NodejsでSに画像をアップロードする。 2022-02-02 21:42:59
技術ブログ Developers.IO 人やプロセスの改善につながる建設的フィードバックの方法 https://dev.classmethod.jp/articles/tips-for-constructive-feedback/ 統括 2022-02-02 12:34:24
技術ブログ Developers.IO AWS Lambda の arm64 アーキテクチャで Go を実行するためのカスタムランタイムを使った SAMテンプレートの紹介 https://dev.classmethod.jp/articles/execute-golang-on-lambda-arm64/ awslambda 2022-02-02 12:14:50
海外TECH MakeUseOf What Are Virtual Influencers and How Do They Work? https://www.makeuseof.com/what-are-virtual-influencers/ What Are Virtual Influencers and How Do They Work As we inch towards the metaverse virtual influencers could slowly replace your favorite celebrities and creators Here s everything you need to know 2022-02-02 12:31:57
海外TECH MakeUseOf How to Log In to a Mac Without Using the Keyboard https://www.makeuseof.com/log-in-mac-without-using-keyboard/ keyboardyou 2022-02-02 12:02:01
海外TECH DEV Community Jenkins GitHub Integration | Jenkins Tutorial | Part IV https://dev.to/lambdatest/jenkins-github-integration-jenkins-tutorial-part-iv-56e0 Jenkins GitHub Integration Jenkins Tutorial Part IVThis video is a part of our Jenkins Tutorial series In this video Moss tech with moss explains how you can create a Jenkins job for a Maven project through Jenkins and Maven integration The video also walks through the steps to do so Jenkins build triggers Jenkins test reports and other details in the process By the end of this video you will learn How to create a local Maven project in Jenkins How do I set test results in Jenkins How do I run a Jenkins performance test How do I integrate Jenkins webhook with Github 2022-02-02 12:31:41
海外TECH DEV Community How to use Feature Flags in an iOS App [with code examples] https://dev.to/ilya_azovtsev/how-to-use-feature-flags-in-an-ios-app-with-code-examples-511p How to use Feature Flags in an iOS App with code examples If you ask yourself How to test amp deploy new features in your app without sending ap App Store update orHow to release your new version to only or or of the userbase You definitely need to read this article Today we ll talk about Feature Flagging for IOS apps A feature flag helps you to enable or disable functionality remotely without deploying code This is extremely helpful if you want to test and deploy new features without sending an App Store update This enables you to decouple deployment from release and you can experiment over the entire lifecycle of features Why you should use Feature Flags aka feature toggles for IOS appHere is the list of main benefits Deploy features without riskEven if something goes wrong you can always rollback update easily Maintain release cycle easierEven if some part of your code are unfinished you still can release it and once everything ready just switch toggle and new feature will be in your app without sending an App Store update A B n test amp Canary deploymentWith just feature flagging you can release your new features amp updates to only a group of people It might be your beta testers who can use new updates in production or you can simply A B n test everything and check the impact on your metrics This article will explore how to use the iOS feature flag It contains the following Creating Feature Flag on Flagsmith Sign up for free and use feature flags Installing the Flagsmith iOS SDKWorking with the Flagsmith iOS SDKTesting the Feature FlagTesting Different EnvironmentsSo let s get started Getting Started with iOS Feature FlagFlagsmith has a sample project to showcase a demo feature flag and you can download the starter project from here This article assumes you know the basics of iOS development Head over to Flagsmith and click Sign In on the top right corner If you re new to Flagsmith you can start on the free trial You can sign up via GitHub Google or email Then create an organization to house all your projects After creating the organization create the project that will contain the iOS feature flag When you create a project Flagsmith also generates a development and production environment for you You can create features for your project then enable and configure them per environment You ll be redirected to your project s homepage that will contain all the information about your features Now that you ve set up the project it s time to create your first feature flag Creating a Feature Flag on Flagsmith gt gt Sing up for free and use feature flags To create your first feature head over to the Features tab from the sidebar You ll be taken to the Features main page There are two types of features that you can create for your project Feature Flags This allows you to toggle features on and off For example a messaging feature on your app that you only want to show and test in Development Remote configuration This allows you to provide configuration for a particular feature For example anything from font size for a website mobile app or an environment variable for a server In this article we ll focus on adding a feature flag Every feature comes with two default environments DevelopmentProductionWhen you create a new feature Flagsmith makes copies of it for each environment allowing you to edit the values in the feature separately Also you can create more environments if you want The Flagsmith SDK also provides you with the ability to identify your user when they log in to your app It adds them to the user s page You can then configure the features per user For example while working on a new messaging feature you can show it to only a particular identified user or set of users On the Features page click on the Create Your First Feature button It slides a New Feature page where you can fill in the details There are five options for every feature ID Name of the feature For example header size Enabled by default A switch to enable the feature by default Value providing an optional value with the feature in the form of txt json xml toml and yaml Description Provide an optional note that explains the feature For example “This determines what size the header is Archived A switch to archive a feature It helps you filter a feature from the Flagsmith dashboard to determine the ones that are not relevant anymore For example you can name the ID as show onboarding for a feature flag to enable the onboarding screen It will be disabled by default Let s leave the Value field empty as it will act as a feature flag with only a boolean value Then add the description as This enables the onboarding screen As you re going to use it leave the Archived option off Note that this creates the feature for all environments and you can edit this feature for every environment after the feature is created After you re done filling in the information click the Create Feature button And that s it you ve created your first feature flag within a few minutes Installing the Flagsmith iOS SDKFlagsmith iOS SDK can be installed via two ways CocoaPodsSwift Package Manager SPM To install via CocoaPods add the following line to your pod file pod FlagsmithClient gt To install via SPM add the following to your Package swift file dependencies package url from If your project doesn t contain a Package swift file go to the Menu bar in Xcode select File and then Add Packages Then in the search field add the following URL Click Next The current version at the time of writing is Click Next again and then checkmark the SDK to add to your project s target Finally click Finish to add the iOS SDK to your project Working with the Flagsmith iOS SDKIf you re using AppDelegate you can initialize the SDK in application didFinishLaunchingWithOptions method import FlagsmithClientfunc application application UIApplication didFinishLaunchingWithOptions launchOptions UIApplication LaunchOptionsKey Any gt Bool Flagsmith shared apiKey lt YOUR API KEY gt If you re using SwiftUI s new lifecycle it can be initialized by setting the API key inside the init method in the App In the sample project it can be initialized as follows import FlagsmithClientextension FlagsmithExampleApp private func initializeFlagsmith Flagsmith shared apiKey lt YOUR API KEY gt Now in the FlagsmithExampleApp struct you call this method in the init mainstruct FlagsmithExampleApp App init initializeFlagsmith var body some Scene WindowGroup MainView By setting up your API key and initializing the SDK at launch you can fetch the feature flags from Flagsmith The SDK offers two methods to retrieve the flags you can either fetch all the flags or retrieve the flag by its name For the former one you then loop over the flags and save them accordingly Flagsmith shared getFeatureFlags result in switch result case success let flags for flag in flags let name flag feature name let value flag value stringValue let enabled flag enabled print name enabled enabled value value nil case failure let error print error In the sample project you can create an enum for the feature flags enum FeatureFlags String case showOnboarding show onboarding var id String self rawValue Use the case to get the desired feature flag Then put this piece of code in the initialization method to retrieve the flags at launch private func initializeFlagsmith Flagsmith shared apiKey lt YOUR API KEY gt Flagsmith shared getFeatureFlags result in switch result case success let flags for flag in flags Comparing the feature flag s name to the particular ID if flag feature name FeatureFlags showOnboarding id DispatchQueue main async viewModel showOnboarding flag enabled case failure let error print error Alternatively you can search for feature flag by its name It returns a Result Flagsmith shared hasFeatureFlag withID FeatureFlags showOnboarding id forIdentity nil result in switch result case success let value DispatchQueue main async viewModel showOnboarding value case failure let error print error In the beginning the value of the flag show onboarding was set to false by default Run the app and you ll see that it opens to the main screen instead of the onboarding screen In the next section you re going to test the feature by toggling the value of the feature flag and running the app accordingly Testing the iOS Feature FlagGo to the Flagsmith project and toggle the feature flag show onboarding by switching the OFF button to ON It will show an alert that will turn show onboarding “On for Development Click on Confirm Changes You ve successfully changed the value of the feature flag Now head over to Xcode and rerun the project You ll see that the onboarding screen is being displayed as the first screen Testing Different Environments gt gt Sign up for free and use feature flags Flagsmith also provides you with different environments per feature You can find the different environment on the main page of the project Each environment has its own specific API key So from the sidebar select Settings under the Production heading and copy the API key from here show onboarding is disabled by default in Production while in the previous section you enabled it in Development To differentiate between the two go back to Xcode and FlagsmithExampleApp swift Replace the following code where you set the API key with if DEBUG Flagsmith shared apiKey lt YOUR DEVELOPMENT API KEY gt else Flagsmith shared apiKey lt YOUR PRODUCTION API KEY gt endif Now click on the current scheme and then edit the scheme From the sidebar select Run Under the Info tab change the build configuration to Release Run the app and you ll see that the onboarding is disabled If you run the app in Debug configuration you will see the onboarding screen again You can create a custom build configuration on Xcode as well For example you can create an Environment Test Flight in Flagsmith and create a similar one in Xcode ConclusionYou can download the final project from here Using Flagsmith you can release features with confidence and manage feature flags across web mobile and server side applications This article helps you get started with using Feature Flags in your iOS app so that you have more control over your features without worrying about sending updates You can use the best open source feature flag for your next Xcode project Flagsmith also has on premises and cloud hosted solutions with great pricing plans gt gt Sign up for free and use feature flags Flagsmith also offers a more robust feature called Remote Configuration where you can send the values over the feature and retrieve them in your app You can learn more about Remote Config in this post Do let us know if you ve any suggestions feedback Btw the original article was posted here 2022-02-02 12:24:58
Apple AppleInsider - Frontpage News Apple tops 'most admired companies' list for 15th year in a row https://appleinsider.com/articles/22/02/02/apple-tops-most-admired-companies-list-for-15th-year-in-a-row?utm_medium=rss Apple tops x most admired companies x list for th year in a row Fortune magazine s survey of the most admired companies in the world has again placed Apple in first position ahead of Amazon and Microsoft As it did last year and repeatedly before that Apple s pole position is across all industries not just technology Fortune calls this the all stars list but notes that Apple also topped the computer industry ranking for the th time in the past years According to the publication Apple s position on this all stars list reveals how even competitors see the firm Read more 2022-02-02 12:53:55
Apple AppleInsider - Frontpage News Google's parent company Alphabet announces 20-for-1 stock split https://appleinsider.com/articles/22/02/02/googles-parent-company-alphabet-announces-20-for-1-stock-split?utm_medium=rss Google x s parent company Alphabet announces for stock splitIn its quarterly earnings report Alphabet the owner of Google has announced a for stock split designed to make buying shares more affordable Google rebranded to create the parent company Alphabet in and in the last two years its stock has doubled Now according to CNBC it is to split its stock to make it affordable for more people to buy shares There are three types of Alphabet shares called Class A Class B and Class C In ahead of the creation of Alphabet Google created Class C which gives owners no voting rights Read more 2022-02-02 12:16:17
海外TECH Engadget The Morning After: Wordle finds a new home https://www.engadget.com/the-morning-after-wordle-finds-a-new-home-121614736.html?src=rss The Morning After Wordle finds a new homeWordle the once a day word game without ads subscriptions or even a mobile app has been purchased by The New York Times If you haven t played it you have six chances to guess a five letter word with clues offered for correct letter guesses In an interview with The Times earlier this month creator Josh Wardle admitted the project was inspired in part by Spelling Bee one of the paper s subscription games which Wordle will likely appear alongside shortly The Times didn t disclose the exact terms of the Wordle acquisition though the press release says it paid quot in the low seven figures quot Play it while you can ーor find a workaround like this spotted by Vice ーMat SmithThe biggest stories you might have missedTesla recalls Full Self Driving feature that lets cars roll through stop signsThe FTC is set to review Microsoft s billion Activision takeover Bloodborne PC demake reimagines the game as a PS titleGoogle s Pixel phones had their best quarter everYou can finally delete things from your Netflix quot continue watching quot queueGM s Cruise now offers public driverless taxi rides in San Francisco Engadget Deals Bose s QuietComfort ANC headphones return to an all time low of DICE delays Battlefield season one to fix Battlefield The core game part Battlefield is rough To address some of those shortcomings DICE and EA have officially delayed the game s first season to early summer and will use the extra time to fix the core experience The next BF update will bring a revamped easier to digest scoreboard while better player profiles and long awaited voice chat functionality are coming quot as soon as possible quot Continue reading Google Messages begins displaying iMessage reactions as emojiBut only for beta users Google has started rolling out a feature for Messages that translates iMessaging Tapbacks as emoji according to toGoogle The publication first discovered the experimental feature in a deep dive of the Google Messages beta app last year It s unclear whether the feature will come out for the stable version that most of us use but if you re using the beta app you ll get the update that enables it soon enough Continue reading Peloton s armband offers more comfortable heart rate trackingIt costs a little more though PelotonPeloton is once again expanding its fitness equipment range with a new heart rate tracker Its Heart Rate Band straps to your arm which could make it more comfortable and easier to use than a chest strap which normally needs to be placed in a specific location and often needs moistened contacts to work properly The Heart Rate Band works with Peloton s app and devices including all Bike and Tread models as well as the Guide camera The armband should work with other products that recognize common Bluetooth heart rate monitors but there s no ANT support ーa standard in many gyms and fitness studios Continue reading Spotify s Science VS podcast will only fact check misinformation spread on SpotifyThe creators said Spotify s support of Joe Rogan felt like a slap in the face The host and editor of Science VS a podcast owned by Spotify are no longer making episodes of the show ーsave for those quot intended to counteract misinformation being spread on Spotify quot In a letter to Spotify CEO Daniel Ek Wendy Zukerman and Blythe Terrell said their policy would remain in place until quot Spotify implements stronger methods to stop the spread of misinformation on the platform quot Continue reading Meta is winding down its low cost Wi Fi program for developing countriesExpress Wi Fi launched five years ago and is available in countries Meta is ending its Express Wi Fi program designed to provide low cost internet in developing countries through partnerships with local communities mobile operators and businesses Designed to be inexpensive starting at around cents for MB or for GB Facebook partnered with satellite companies ISPs and others in places like India South Africa and the Philippines nbsp Recently The Wall Street Journal reported glitches in Meta s free internet services were creating unwanted charges for users in Pakistan Meta also reportedly favored its own content on its free data Discover service to the detriment of other sites Meta said it plans to focus on other projects around internet access Continue reading 2022-02-02 12:16:14
Linux OMG! Ubuntu! LibreOffice 7.3 Released, This is What’s New https://www.omgubuntu.co.uk/2022/02/libreoffice-7-3-released-this-is-whats-new LibreOffice Released This is What s NewA major update to the LibreOffice office suite is available to download LibreOffice touts speed boosts and better support for Microsoft Office files This post LibreOffice Released This is What s New is from OMG Ubuntu Do not reproduce elsewhere without permission 2022-02-02 12:07:01
海外TECH WIRED Pokémon Legends: Arceus Isn’t Great. It Doesn’t Matter https://www.wired.com/story/pokemon-legends-arceus-review-nintendo arceus 2022-02-02 12:41:00
ニュース BBC News - Home Ukraine tensions: US trying to draw Russia into war, Putin says https://www.bbc.co.uk/news/world-europe-60220702?at_medium=RSS&at_campaign=KARANGA ukraine 2022-02-02 12:06:41
ニュース BBC News - Home Kate takes over from Harry as royal rugby patron https://www.bbc.co.uk/news/uk-60218576?at_medium=RSS&at_campaign=KARANGA patron 2022-02-02 12:19:53
ニュース BBC News - Home Priti Patel 'sickened' by Charing Cross police behaviour https://www.bbc.co.uk/news/uk-politics-60229869?at_medium=RSS&at_campaign=KARANGA behaviourthe 2022-02-02 12:15:07
ニュース BBC News - Home Households to get £200 help to ease energy bill rise https://www.bbc.co.uk/news/business-60228235?at_medium=RSS&at_campaign=KARANGA bills 2022-02-02 12:56:03
ニュース BBC News - Home Pierre-Emerick Aubameyang: Barcelona confirm signing on free transfer https://www.bbc.co.uk/sport/football/60212512?at_medium=RSS&at_campaign=KARANGA aubameyang 2022-02-02 12:22:53
ビジネス 不景気.com 学生寮経営の「橘・学生会館」に破産開始決定、負債7億円 - 不景気.com https://www.fukeiki.com/2022/02/tachibana-dormitory.html 信用調査会社 2022-02-02 12:14:20
北海道 北海道新聞 一部のガソリン事業者、抑制策受け店頭価格値下げ 道内、激しい競争も一因 https://www.hokkaido-np.co.jp/article/641016/ 店頭価格 2022-02-02 21:18:16
北海道 北海道新聞 「ドライブ・マイ・カー」が1位 キネマ旬報、2021年映画表彰 https://www.hokkaido-np.co.jp/article/641020/ 外国映画 2022-02-02 21:17:00
北海道 北海道新聞 関脇隆の勝ら関取6人感染 新型コロナ、小結大栄翔も https://www.hokkaido-np.co.jp/article/640970/ 日本相撲協会 2022-02-02 21:02:11
北海道 北海道新聞 日本ハムの堀、新庄監督から笑顔指令 ブルペンで投球練習 https://www.hokkaido-np.co.jp/article/640846/ 投球練習 2022-02-02 21:13:18
北海道 北海道新聞 高齢者のDV被害、道内で増加 「我慢するしか」悲痛の声 https://www.hokkaido-np.co.jp/article/640943/ 高齢者 2022-02-02 21:09:49

コメント

このブログの人気の投稿

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