投稿時間:2021-12-29 11:25:38 RSSフィード2021-12-29 11:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Apple、新型コロナのオミクロン株の感染拡大により米国やイギリスで一部直営店の営業制限を開始 https://taisy0.com/2021/12/29/150225.html apple 2021-12-29 01:03:01
TECH Engadget Japanese 2021年に読まれた「レビュー記事」TOP10。格安モバイルPCからソニーのイヤホンまで https://japanese.engadget.com/2021-reviews-top-10-013006358.html 記事 2021-12-29 01:35:06
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 楽天銀行と楽天証券のマネーブリッジ、優遇金利を0.04%に縮小 https://www.itmedia.co.jp/business/articles/2112/29/news036.html itmedia 2021-12-29 10:08:00
python Pythonタグが付けられた新着投稿 - Qiita PrefixSpanでバズったツイートの頻出表現を見つける https://qiita.com/kyata_01/items/baf0530cb736fcba0af9 リツイート数だとバズったといえるかは微妙ですが、ある程度のデータ量確保のためこの閾値にしています。 2021-12-29 10:13:53
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) エラー(Database is uninitialized and superuser password is not specified)が解決できない。 https://teratail.com/questions/375937?rss=all エラーDatabaseisuninitializedandsuperuserpasswordisnotspecifiedが解決できない。 2021-12-29 10:37:55
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) window.openをモーダルぽくしたときの問題 https://teratail.com/questions/375936?rss=all windowopenをモーダルぽくしたときの問題windowopenをモーダルぽくしたいです。 2021-12-29 10:07:12
海外TECH DEV Community How to emulate iOS on Linux with Docker https://dev.to/ianito/how-to-emulate-ios-on-linux-with-docker-4gj3 How to emulate iOS on Linux with DockerAfter several unsuccessful attempts I was finally able to virtualize a macOS to run tests on an iOS app I was working on But before proceeding it is necessary to know that this is not a stable solution and has several performance issues however for my purpose I managed to do what I wanted We ll use QEMU to emulate a mac and inside it we ll use xCode to emulate an iOS That process not will be lightweight The repository on github of Docker OSX has an explanation of how to use an iPhone via usb instead of emulating but I don t have iPhone xD SummaryWhat is Docker OSXHardware SpecificationsInstallationRunning a app with React NativeRunning a app with CordovaCreating a connection of folders over SSHFinal considerations What is Docker OSXThe Docker OSX is a docker image that uses QEMU so that we can emulate an operating system Read more What is Docker Hardware SpecificationsMy computer s specs are considered OK to do this however I still managed to notice some lags while using Docker OSX xCode Visual Studio Code Dev Server I was even able to heat my room with that much stuff OS Manjaro Linux x Kernel MANJARO Shell zsh Resolution xDE GNOME WM Mutter WM Theme Orchis orange compact Icons Win purple dark GTK Terminal gnome terminal CPU Intel i GHz GPU NVIDIA GeForce GTX Ti Memory MiB MiB SSD Crucial BX gb Highly recommended SSD InstallationFirst is necessary have docker installed on your computer I use Manajaro so I just opened the terminal and type Installation Dockerpacman S dockerStart docker servicessystemctl start docker serviceEnable docker services to boot with systemsystemctl enable docker serviceTesting docker docker run hello worldAlright now we ll download the docker osx and run using the command below docker run it device dev kvm p e DEVICE MODEL iMacPro e WIDTH e HEIGHT e RAM e INTERNAL SSH PORT e AUDIO DRIVER alsa e CORES v tmp X unix tmp X unix e DISPLAY DISPLAY e GENERATE UNIQUE true e MASTER PLIST URL sickcodes docker osx big surYou can check what each flag means at github of docker osx but briefly i specified the resolution memory cores of processor version and others things Then the docker osx will downloaded and initialized When the emulator opens select option macOS Base SystemWhen system be booted select Disk UtilityNow we ll search the partition that be with most storage space and select the option Erase To format the chosen options must be strictly equal to this Click on Erase wait process finish and then you can close the Disk Utility window Next select the option Reinstall macOS Big Sur accept the terms and select the partition we just created macOS and start installation This process can take min hour So the system must restart or not in my case I had to do it manually because it didn t restart In that case close the QEMU window In terminal we ll type docker ps aTo know what is ID of our container and next we ll start typing the command below docker start IDSelect macOS Installer and the installation will continue Then the system will restart automatically or not so close again the QUEMU and start again the container When the system boot select option macOS Installer and wait the process finish At end the system will restart Now it s true Well macOS was installed successfully Select the option macOS Once that s done it will restart again and you select the same macOS option Well done welcome screen appeared This configuration part is quite slow but after this process finished the system will work very well Configure the system but don t login your AppleID at this moment When that process done our desktop will appears and we ll wait until the dock appear because after this the system will be most stable Now we ll use the brew for install the packages more fast Open terminal in macOS and install brew with the command below bin bash c curl fsSL Insert your password and wait the process finish Now we ll install xcode on Apple Store So now we can login on AppleID After that wait for the installation Then open xcode and accept the terms and wait install the dependencies So now go at Preferences gt Locations gt Command Line Tools it will be blank select the option with the xCode version When the installation done we ll open the terminal again and install cocoapods with command below It serve as packager manager of xCode brew install cocoapodsDone that our macOS will be installed and configured to run the projects Running a app with React NativeOkay let s start with a hello world of React Native to check if everything we ve done before will work I ll only check iOS Open the terminal and type Install node brew install nodeInstall yarn optional npm install g yarnCreating a project with RN npx react native init testeIf ask you to install cocoapods again select the option with brew Enter at the project directory cd testeEnter at ios directory cd iosInstall dependencies pod installBack to root directory cd List all simulate availaibles Optional xcrun simctl list devicesRun the project with xcode npx react native run ios simulator iPhone To a better experience see section Creating a connection of folders over SSH Running a app with CordovaOkay let s start with a hello world of Quasar to check if everything we ve done before will work I ll only check iOS Quasar uses Cordova Capacitor for iOS and Android Install node brew install nodeInstall yarn opcional npm install g yarnInstall quasar yarn global add quasar cliInstall cordova yarn global add cordova Creating a project with Quasar quasar create testeEnter in project directory cd testeAdd cordova in your project quasar mode add cordovaEnter in cordova directory cd src cordovaAdd iOS in project cordova platform add iosVerify if everything is okay cordova requirementsList all simulate availables Opcional cordova emulate iOS listInstall dependencies yarnBack to root directory cd Install dependencies yarnRun quasar with development mode on iOS quasar dev m iOS e iPhone To a better experience see section Creating a connection of folders over SSH Creating a connection of folders over SSHNow our app is already running on macOS we have a problem Opening our code editor or IDE inside macOS is a very bad experience because of slowdowns crashes keyboard mapping and so on So I researched a solution to create a file connection using SSH Also I can open the development server inside macOS and create a connection where I can change files directly from my linux or macOS so that it updates on both sides like a two way This guarantees us to take advantage of some things that exist in development mode like fast refresh Connection from linux to macFirst we need to allow connection via ssh via mac login To do this we will open the terminal and type Command to open edit ssh configuration file sudo nano etc ssh sshd configSearch for PasswordAuthentication and put yes and remove at beginning line Save file Go to System Preferences gt Sharing gt Remote Login and active for all users Command to restart ssh sudo launchctl stop com openssh sshd amp amp sudo launchctl start com openssh sshdNow in linux terminal Install sshfs sudo pacman S sshfsGet container IPdocker inspect f range NetworkSettings Networks IPAddress end ID CONTAINERCreate a folder mkdir projetoCommand to open a new connection with mac sudo sshfs USER MAC IP CONTAINER PATH OF PROJECT ON MAC PATH ON LINUX p Example Alright now we can open the VSCode on linux and update the files updating directly on mac If you have another computer you can do this connection and let your computer with emulator just emulating Connection from Mac to LinuxSame process previously but the sshfs package on mac can be installed using the command below Install sshfsbrew install cask macfuse amp amp brew install gromgit fuse sshfs macOn Linux Command to edit ssh configuration file sudo nano etc ssh sshd configSearch for PasswordAuthentication and put yes and remove at beginning line Save the file Command to restart SHH on Manjaro sudo systemctl restart sshd serviceOn Mac we ll create a folder to open connection Create a folder mkdir projetoCommand to open a new connection with linuxsudo sshfs USER LINUX IP HOST PATH LINUX PATH MAC p When we type the command an error will occur Open the preferences and click AllowRestart your mac Now we can open the connection My SSH is opened in a different port but the default is Once that s done we can update from either side which will also reflect on both Final considerationsThank you very much for reading this tutorial by the way it s the first one I ve published in years Any questions or suggestions mostly my english are always welcome Oh never update your mac 2021-12-29 01:06:06
Apple AppleInsider - Frontpage News Apple's May 2021 in review - Lossless Apple Music, Apple Silicon iMac, and new Apple TV 4K https://appleinsider.com/articles/21/05/31/lossless-apple-music-and-no-winner-in-epic-trial---apples-may-2021-in-review?utm_medium=rss Apple x s May in review Lossless Apple Music Apple Silicon iMac and new Apple TV KIn May Epic Games versus Apple may have taken some of our attention but we gave most of it to the new Apple Silicon M iMac iPad Pro and Apple TV K ーand on top of all that we got news of Lossless Apple Music The new inch iMac didn t arrive in users hands until the second half of May but it already looks like a hitWhile we were hearing about the new AirTags in April Apple s lawyers were hunkered down over the court case that s either going to be totally forgotten next year or may lead to huge changes in the App Store Read more 2021-12-29 01:39:41
海外科学 NYT > Science Will Shortened Isolation Periods Without Testing Spread the Virus? https://www.nytimes.com/2021/12/28/health/covid-isolation-period-omicron.html Will Shortened Isolation Periods Without Testing Spread the Virus Without rapid testing some experts fear new U S guidelines may mean infected people leave isolation while still contagious The C D C director said masking was a better option 2021-12-29 01:12:31
海外科学 BBC News - Science & Environment Biodiversity: The tale of the 'un-extinct' fish https://www.bbc.co.uk/news/science-environment-59760356?at_medium=RSS&at_campaign=KARANGA mission 2021-12-29 01:04:57
海外科学 BBC News - Science & Environment Appeal to identify scientific curiosities of the past https://www.bbc.co.uk/news/science-environment-59562636?at_medium=RSS&at_campaign=KARANGA historic 2021-12-29 01:15:59
海外ニュース Japan Times latest articles ‘Erasing history’: Russia closes top rights group, capping year of crackdowns https://www.japantimes.co.jp/news/2021/12/29/world/russia-rights-group-crackdowns/ Erasing history Russia closes top rights group capping year of crackdownsThe closure of Memorial International bookmarks a year in which Alexei Navalny the Kremlin s top critic was jailed his movement banned and many of his 2021-12-29 10:19:20
海外ニュース Japan Times latest articles Legendary coach and broadcaster John Madden dies at 85 https://www.japantimes.co.jp/sports/2021/12/29/more-sports/football/john-madden-obituary/ legendary 2021-12-29 10:14:40
ニュース BBC News - Home Children's care system putting vulnerable teens at risk - report https://www.bbc.co.uk/news/uk-59812719?at_medium=RSS&at_campaign=KARANGA places 2021-12-29 01:44:05
ニュース BBC News - Home John Madden: Legendary NFL coach and commentator dies at 85 https://www.bbc.co.uk/news/world-us-canada-59814542?at_medium=RSS&at_campaign=KARANGA american 2021-12-29 01:19:26
ニュース BBC News - Home Biodiversity: The tale of the 'un-extinct' fish https://www.bbc.co.uk/news/science-environment-59760356?at_medium=RSS&at_campaign=KARANGA mission 2021-12-29 01:04:57
ニュース BBC News - Home Insulate Britain protests cost police more than £4m https://www.bbc.co.uk/news/uk-england-london-59808873?at_medium=RSS&at_campaign=KARANGA surrey 2021-12-29 01:14:44
ニュース BBC News - Home Appeal to identify scientific curiosities of the past https://www.bbc.co.uk/news/science-environment-59562636?at_medium=RSS&at_campaign=KARANGA historic 2021-12-29 01:15:59
ビジネス ダイヤモンド・オンライン - 新着記事 全米で大麻合法化の道、2022年も険しい - WSJ発 https://diamond.jp/articles/-/292219 大麻合法化 2021-12-29 10:13:00
北海道 北海道新聞 「悩み抱えず相談を」若い女性に声掛け 札幌市、ススキノで夜回り https://www.hokkaido-np.co.jp/article/628525/ 窓口 2021-12-29 10:19:19
北海道 北海道新聞 金正恩氏が連日報告と報道 北朝鮮、党中央委総会 https://www.hokkaido-np.co.jp/article/628613/ 朝鮮中央通信 2021-12-29 10:08:00
ビジネス プレジデントオンライン 「同じことの繰り返しで一日が終わる」メンタルダウンしている人に僧侶が提案する"ある新習慣" - 生活が退屈な人が忘れている事実 https://president.jp/articles/-/53359 払しょく 2021-12-29 11:00:00
ビジネス プレジデントオンライン マイナンバーカードがないと使えない…「ワクチン接種証明書アプリ」が不便すぎる根本原因 - デジタル庁の"初仕事"のはずが… https://president.jp/articles/-/53320 運用 2021-12-29 11:00:00
ビジネス プレジデントオンライン 「国の低所得者イジメだ」法改正で老親の介護コスト急増に激怒する人に教える"負担回避のウルトラC" - 葬儀代の"先払い"で預貯金を減額 https://president.jp/articles/-/53256 cquot 2021-12-29 11:00:00
ビジネス プレジデントオンライン 「理想は、ビジネスマン大谷翔平」"みじめ体験"を買って出る人にこそ稼ぐ力はついてくる - 若手トップ人材の脱日本が進行中 https://president.jp/articles/-/53161 大リーグ 2021-12-29 11:00:00
ビジネス プレジデントオンライン 「言葉よりも気持ちが伝わる」お客の心を一発で掴んでしまう銀座ママの"ある仕草" - 大切なのはメリハリをつけること https://president.jp/articles/-/53159 伊藤由美 2021-12-29 11:00:00
ビジネス プレジデントオンライン 「同じことの繰り返しで一日が終わる」メンタルダウンしている人に僧侶が提案する"ある新習慣" - 生活が退屈な人が忘れている事実 https://president.jp/articles/-/53126 払しょく 2021-12-29 11:00:00
ビジネス プレジデントオンライン 憧れのAV女優と付き合い始めた僕の1日――『GIGANT』第2巻 第13話「将来」 - 「コミック『GIGANT』」 https://president.jp/articles/-/53024 gantz 2021-12-29 11:00: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件)