投稿時間:2022-01-17 17:23:09 RSSフィード2022-01-17 17:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese 対象のKindle本3点まとめて買うと40%ポイント還元キャンペーン実施中 https://japanese.engadget.com/amazon-kindle-073020726.html amazon 2022-01-17 07:30:20
TECH Engadget Japanese 最新版Safariに深刻なバグ、Googleアカウント情報やブラウズ履歴が漏えいするおそれ https://japanese.engadget.com/safari-bug-leak-google-account-info-070045062.html google 2022-01-17 07:00:45
ROBOT ロボスタ 裸眼で浮き出る空中3Dディスプレイで「チョコレートパラダイス」の商品を立体ホログラム展示 西武池袋本店地下1階で https://robotstart.info/2022/01/17/chocolate-paradise-holovase-m.html holovasem 2022-01-17 07:15:03
IT ITmedia 総合記事一覧 [ITmedia PC USER] サイコム、第12世代Coreを搭載した発光パーツ採用ゲーミングデスクトップ https://www.itmedia.co.jp/pcuser/articles/2201/17/news138.html gmasterluminous 2022-01-17 16:11:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders NRIセキュア、コア機能に絞った特権IDアクセスゲートウェイ「Access Check Essential」 | IT Leaders https://it.impress.co.jp/articles/-/22581 NRIセキュア、コア機能に絞った特権IDアクセスゲートウェイ「AccessCheckEssential」ITLeadersNRIセキュアテクノロジーズは年月日、特権IDアクセス制御ゲートウェイ「SecureCubeAccessCheck」の機能下位版「AccessCheckEssential」を発表した。 2022-01-17 16:05:00
Git Gitタグが付けられた新着投稿 - Qiita オンプレで使うgit操作方法まとめ https://qiita.com/kidenkadenyorozuya/items/bc6d4884310ccc3eaffe オンプレで使うgit操作方法まとめはじめにgitすら使わなかった人が今更になりますが、githubに接続せず、自分のPCだけでgitをつかう方法をまとめました。 2022-01-17 16:09:54
技術ブログ Developers.IO 【2/8(火)】AWSマルチアカウント一元管理〜ログ分析で始めるCCoE〜 https://dev.classmethod.jp/news/220208_sumologic/ 一元管理 2022-01-17 07:48:19
技術ブログ Developers.IO 非同期脳内シェア。同僚に仕事の進め方を文書共有した話 https://dev.classmethod.jp/articles/asynchronous-brain-sharing/ 非同期 2022-01-17 07:27:11
海外TECH DEV Community React js CURD WebApp https://dev.to/mishabka/react-js-curd-webapp-5a1n React js CURD WebApp Getting Started with CURD applicationmeans create update read deleteThis is a contacts sharing webapp you can perform the CURD oparetions with firebase database check this now Contacts Available Live Now Click Here Contacts Preview Photos adding contacts update contacts Deleteing contacts we can create update read delete contacts 2022-01-17 07:48:41
海外TECH DEV Community How to make full stack social media website using HTML, CSS and JS | Part 01 https://dev.to/kunaal438/how-to-make-full-stack-social-media-website-using-html-css-and-js-part-01-46f1 How to make full stack social media website using HTML CSS and JS Part Hello In today s article we ll learn to create a social media website basically an Instagram clone I ll make it full stack from front end to backend This is the first part of it And in this part we ll learn to create Home Page Post page and user profile page All the pages are amazing but not responsive well we ll make them responsive in next article So without wasting more time let s start Video TutorialYou can watch the video tutorial for demo amp step by step guide If you do like the tutorial make sure you subscribe my channel It will really motivate me CodeLet s start So first let s see what files and folders we have in our project Well we have a CSS folder for styles and JS folder for scripts And also you can download the images here If you want to get its source code Click Here Home page Let s begin with our home page In home page we have main elements A navbar a post section and a suggestion section So let s make them step by step NavbarFirst write basic HTML Template inside index html file and link style css file to it Also I am using GOOGLE POPPINS FONTS So if you want to use it make sure you link it Okay once you are done with linking all style files and fonts Let s move on to our navbar For navbar make a nav element inside body and make the below elements Index html lt navbar gt lt nav class navbar gt lt img src img logo png class logo alt gt lt form class search box gt lt input type text placeholder search name search query id search input gt lt button class search btn type submit gt lt img src img icon search png class search icon alt gt lt button gt lt form gt lt div class nav links gt lt a href class nav links gt lt img src img icon home fill png class nav icon alt gt lt a gt lt div class activity log gt lt img src img icon heart nofill png class nav icon alt gt lt div class activity container hide gt lt div class activity card gt lt img src img user png class user img alt gt lt p class activity gt lt b gt siri lt b gt liked your post lt p gt lt img src img posts post png class activity post alt gt lt div gt lt div class activity card gt lt img src img user png class user img alt gt lt p class activity gt lt b gt siri lt b gt liked your post lt p gt lt img src img posts post png class activity post alt gt lt div gt lt div class activity card gt lt img src img user png class user img alt gt lt p class activity gt lt b gt siri lt b gt liked your post lt p gt lt img src img posts post png class activity post alt gt lt div gt lt div class activity card gt lt img src img user png class user img alt gt lt p class activity gt lt b gt siri lt b gt liked your post lt p gt lt img src img posts post png class activity post alt gt lt div gt lt div gt lt div gt lt a href class nav links gt lt img src img icon add nofill png class nav icon alt gt lt a gt lt a href class nav links gt lt img src img profile img png class nav icon user profile alt gt lt a gt lt div gt lt nav gt Well the above HTML code is a lot Isn t it if you do understand it well you are amazing but if don t get it I suggest you watch the video tutorial there you ll make the navbar and all the elements step by step Anyway let s add some CSS to it Style css margin padding box sizing border box body width position relative font family poppins sans serif background fafafa navbar width height px position fixed top left z index background fff border bottom px solid padding px vw display flex align items center justify content space between logo height px search box width px height px display flex search input width px height background fafafa border px solid padding px text transform capitalize search btn background fff cursor pointer border px solid border left none padding px search icon width px height px nav links display flex align items center gap px nav icon width px height px cursor pointer user profile width px height px border radius activity log position relative height px activity container width px height auto max height px position absolute top right background fff border px solid activity card width display flex justify content space between align items center padding px padding bottom margin bottom px cursor pointer activity card hover background fafafa activity container hide pointer events none opacity user img width px height px border radius activity width px font size rem activity post width px height px object fit cover OutputWell its looking amazing If you notice our nav HTML you ll see activity log element This element we ll use to make an activity pop up Well in CSS part we are done styling that activity popup so we just need to add JS to make it work post jsMake sure you link post js file to index html using lt script src path gt Once you are done with that let s write JS let heartIcon document querySelector activity log nav icon let activityContainer document querySelector activity container heartIcon addEventListener click gt activityContainer classList toggle hide changeIcon heartIcon const changeIcon icon gt let src icon src split if icon src includes nofill icon src src fill png else icon src src nofill png In the above code I am first selecting the heartIcon which is our heart icon And then I am selecting activityContainer which it the activity box using querySelector And then I am adding click event to heartIcon using addEventListener inside it I am just toggling the class of activityContainer using classlist toggle and the calling a changeIcon function Well changeIcon function we made to change the icon image from fill to nofill to fill The code is simple but if you don t get it let me know in the discussion After this if I click on the heart icon on the navbar I should see the activity popup Output On Click PostsSo we are done with our navbar and after that we have posts in our home pageLet s create posts now for that you can code the below HTML code after nav element Index html lt main section gt lt section class main gt lt post section gt lt div class post container gt lt div class post gt lt div class post header gt lt img src img user png class user icon alt gt lt p class username gt modernweb lt p gt lt div gt lt div class post feed gt lt div class post overlays gt lt img src img icon red heart png class like icon alt gt lt div class share window gt lt h class title gt share the post with others lt h gt lt div class share link container gt lt input type text id share link value disabled gt lt button class copy btn gt copy lt button gt lt div gt lt div gt lt div gt lt div class post img container gt lt img src img posts post png alt gt lt img src img posts post png alt gt lt img src img posts post png alt gt lt img src img posts post png alt gt lt img src img posts post png alt gt lt div gt lt div gt lt div class post detail gt lt div class detail intracables gt lt img src img icon heart nofill png class like btn alt gt lt img src img icon send nofill png class send btn alt gt lt img src img icon comment nofill png class comment btn alt gt lt div gt lt span class likes gt k likes lt span gt lt p class username gt modernweb lt p gt lt p class post des gt Lorem ipsum dolor sit amet consectetur adipisicing elit Dolores ipsa incidunt obcaecati esse illo voluptates libero debitis nisi Id tempora vel illum vitae temporibus commodi non cupiditate atque voluptas Ipsam lt p gt lt div class comment box gt lt input type text id comment input placeholder Add a comment gt lt button class add comment btn gt lt img src img icon comment nofill png alt gt lt button gt lt div gt lt span class comment count gt comments lt span gt lt div gt lt div gt more posts lt div gt lt section gt To be honest in our home page the most difficult thing is the post itself I almost lost in code like twice when coding the post section I will recommend you to watch the tutorial if you really want to learn something from it Okay moving on let s style it Style css main section main width position relative margin top px display flex padding vw px gap px post section post container width post width border px solid background fff margin bottom px post header display flex align items center padding rem gap px post header user icon width px height px border radius post header username font size rem font weight post feed width height px position relative post img container width height display flex overflow hidden post img container img min width height object fit cover transition s post detail padding rem detail intracables display flex gap px detail intracables img width px height px cursor pointer likes color aaa display flex margin px post username font weight post des margin px font size rem line height rem opacity comment box width height px display flex border px solid comment input width height px background fafafa border none padding px line height px z index font size rem comment input placeholder color bbb comment input focus outline px solid fff add comment btn display flex justify content center align items center width px height px cursor pointer border none outline none background fff add comment btn img width px height px comment count font weight color aaa font size rem display flex margin top px opacity post overlays position absolute width height display flex justify content center align items center pointer events none like icon width px opacity transition s like icon show opacity animation popup s forwards keyframes popup transform scale transform scale transform scale transform scale transform scale share window position absolute top left transform translate background fff padding px width transition s opacity share window active opacity pointer events all share window title font size rem font weight text transform capitalize margin bottom px share link container width display flex border px solid share link height px padding px background fafafa border none color width copy btn background cff border none outline none cursor pointer color cff text transform capitalize width px OutputNow if you see the HTML code we have post overlay element This element is for like and share window elements We already styled those elements in CSS we just have to add JS now Post jsconst addInterationsToPost post gt post like let likeBtn post querySelector like btn let likeImg post querySelector like icon likeBtn addEventListener click gt if likeBtn src includes nofill likeImg classList add show if shareBtn src includes fill shareBtn click changeIcon likeBtn setTimeout gt likeImg classList remove show post share let shareBtn post querySelector send btn let shareWindow post querySelector share window shareBtn addEventListener click gt shareWindow classList toggle active changeIcon shareBtn let postLink post querySelector share link value let copyLinkBtn post querySelector copy btn copyLinkBtn addEventListener click gt navigator clipboard writeText postLink then gt shareBtn click postlet posts document querySelectorAll post posts map post gt addInterationsToPost post The above code is pretty easy we just selecting each post card and passing it to the addInteractionToPost function Inside that function we are adding click event to like and share button And inside the click events just toggling the desired classes of specific elements Output Clicked on like button Clicked on share button That was a lot SuggestionNow its time for the last section of our HOME PAGE Yeah right let s make user suggestions section Make to code this inside main section after post container element Index html lt right section gt lt div class user about section gt lt div class user info gt lt img src img profile img png class user dp alt gt lt div class info container gt lt h class name gt Kunaal Kumar lt h gt lt p gt Lorem ipsum dolor sit amet consectetur adipisicing elit Consectetur eius animi non commodi lt p gt lt div gt lt div gt lt h class suggestion heading gt suggestions lt h gt lt div class suggestion container gt lt div class user card gt lt img src img user png class user dp alt gt lt p class username gt john lt p gt lt button class follow btn gt follow lt button gt lt div gt more user cards lt div gt lt div gt Okay se let s style it and finish the home page Style css right section user about section width height position relative user info width display flex align items center gap px user dp width px height px border radius name font size rem font weight margin bottom px info container p font size rem line height rem opacity suggestion heading font weight font size rem margin px text transform capitalize suggestion container width display flex flex wrap wrap gap px user card min width px background fff padding px border px solid user card user dp width px height px display block margin auto user card username text align center font size rem font weight margin px text transform capitalize follow btn display block margin auto width height px background afff color fff font size rem text transform capitalize border px solid d cursor pointer OutputSo I guess that was a lot for today guys to I am wrapping this here We are done with our Home page but if you wist to create post page and user profile page you can checkout the video tutorial Also if you want you can get its source from here Great work If you stuck somewhere or you have any doubt feel free to ask me in discussions Also if you don t want to miss this Full Stack Social Media Website make sure to subscribe my channel right now I am also making a Full stack Ecom WebsiteI really appreciate if you can subscribe my youtube channel I create awesome web contents Articles you may find UsefulBest CSS EffectInfinte CSS loaderDisney CloneYoutube API Youtube CloneTMDB Netflix CloneBuy me a coffeeYour donation really motivates me to do more amazing Thanks for watching 2022-01-17 07:48:02
海外TECH DEV Community Tips: One important question you may want to ask during interviews https://dev.to/anxiny/tips-one-important-question-you-may-want-to-ask-during-interviews-40d Tips One important question you may want to ask during interviews How long have you been working for this company If most answers are less than one year and it s not a new company or team think twice before you join this company Please feel free to leave your comment Thanks 2022-01-17 07:41:31
海外TECH DEV Community Urge to build CLIs : Gamechanger 🚀 https://dev.to/aniket762/urge-to-build-clis-gamechanger-448c Urge to build CLIs Gamechanger I will first take you to the reason and urge I have for building CLI tools and then make your hands dirty by building a CLI based calculator with Cobra In case you are well motivated to build CLIs I would suggest you directly jump to the code valley The urge to build CLIs ‍I find it very difficult to install or run an application while switching between various GUI components in the OS be it Windows Mac or Unix The commands always follow a particular logic be it any OS for example using sudo gives us admin privileges using v gives us the version of the application and so on Moreover GUI does not have the same level of functionality and granular control as a command line interface So the CLI provides greater flexibility of use A GUI needs to use additional system resources to load the graphical part thus it is going to be slower than using the command line With a CLI users have all the control over the file system and operating system and the tasks become simple You can create a script that contains a few lines of command and it will do the work for you Although learning bash has a steep curve because of its ugly syntax the only datatype is a string but the automation it provides is worth it Relating Web with CLI tools Having experience in building backend applications for years I feel the way CLI works is very similar to that of building full stack web applications For instance a simple CLI tool to generate Temperature at a location requires just passing the location as a prop and then doing API calls to fetch the data and display it on the CLI Building Simple CLIs Initially I started creating simple CLI tools such as joke generator fuzzy calculator code compiler reminder CLI tools and some more The one CLI tool which particularly made me learn a lot of tools was while developing a network CLI tool for Domain migrations within various hosting providers In the particular CLI I used Urfave CLI to get started with the CLI structure which made naming labels easier and generating new commands simpler Urfave also has various classes within it which make overriding functions easier for example creating CLI flags or creating commands The network CLI had basic functionalities such as when hostname is passed as a parameter it returns name servers IP address and CName for that particular host when passed with a particular hostname A simple but according to me effective CLI tool Comparing Urfave and Cobra Cobra uses more template code which makes execution of the programs slower Although a novice in building CLI applications I am highly enthusiastic about learning and exploring more and more in this field While going through the web I created a repo to learn Go lang and build CLIs I suggest you look into the Code Valley If you want me to write a blog on how to build a CLI tool with proper explanation let me know in the comments 2022-01-17 07:28:13
金融 RSS FILE - 日本証券業協会 個人情報の苦情処理に関する実績報告 https://www.jsda.or.jp/shiryoshitsu/toukei/kojn_kujyou.html 個人情報 2022-01-17 09:00:00
金融 日本銀行:RSS 業態別の日銀当座預金残高(12月) http://www.boj.or.jp/statistics/boj/other/cabs/cabs.xlsx 日銀当座預金残高 2022-01-17 17:00:00
ニュース ジェトロ ビジネスニュース(通商弘報) WILLER、オンデマンド型バスシェアをシンガポールで本格始動、国内外で展開拡大 https://www.jetro.go.jp/biznews/2022/01/2ba52c9b78f9c871.html willer 2022-01-17 07:15:00
海外ニュース Japan Times latest articles Kishida vows to lay out road map for a new capitalism in the spring https://www.japantimes.co.jp/news/2022/01/17/national/politics-diplomacy/kishida-new-diet-session-speech/ Kishida vows to lay out road map for a new capitalism in the springCovering topics ranging from COVID to climate change and diplomacy the prime minister offered a comprehensive wrap up of his policy agenda at the start of 2022-01-17 16:38:40
ニュース BBC News - Home Credit Suisse boss resigns over Covid breaches https://www.bbc.co.uk/news/business-60019735?at_medium=RSS&at_campaign=KARANGA quarantine 2022-01-17 07:21:44
ニュース BBC News - Home Covid: Banking boss resigns and self-isolation rule changes https://www.bbc.co.uk/news/uk-60018100?at_medium=RSS&at_campaign=KARANGA coronavirus 2022-01-17 07:48:23
ニュース BBC News - Home Covid in Scotland: Crowd restrictions lifted for outdoor events https://www.bbc.co.uk/news/uk-scotland-60014556?at_medium=RSS&at_campaign=KARANGA football 2022-01-17 07:40:24
北海道 北海道新聞 <横田教授の「コロナ」チェック> 全道、第6波に突入 「緊急事態」の認識で行動を https://www.hokkaido-np.co.jp/article/634322/ 新型コロナウイルス 2022-01-17 16:14:00
北海道 北海道新聞 道内643人感染 8カ月ぶり3日連続600人超 新型コロナ https://www.hokkaido-np.co.jp/article/634298/ 道内 2022-01-17 16:18:11
北海道 北海道新聞 NHLライトニングなど首位争う 第14週が終了 https://www.hokkaido-np.co.jp/article/634319/ 首位 2022-01-17 16:10:00
北海道 北海道新聞 中国で春節旅行シーズン始まる コロナで移動自粛の要請も https://www.hokkaido-np.co.jp/article/634318/ 大型連休 2022-01-17 16:06:00
北海道 北海道新聞 <Fノート>育成拠点、鎌ケ谷で広がる「ハムカツ」 https://www.hokkaido-np.co.jp/article/634265/ 千葉県鎌ケ谷市 2022-01-17 16:04:02
ビジネス プレジデントオンライン 「メスは硬くて大きなオスを選ぶ」ズワイガニの40分間の交尾は、ほかのエビカニとはひと味違う - 胸脚の裏側には「交尾の痕跡」がある https://president.jp/articles/-/53779 冬の味覚 2022-01-17 17:00:00
IT 週刊アスキー 誕生から36年――新たな「大戦略」となるPC版『大戦略SSB』が2月3日に発売決定! https://weekly.ascii.jp/elem/000/004/080/4080500/ windows 2022-01-17 16:55:00
IT 週刊アスキー スマホRPG『ゲートオブナイトメア』新たなナイトウォーカー・王宮騎士「クイン」が登場! https://weekly.ascii.jp/elem/000/004/080/4080498/ 騎士 2022-01-17 16: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件)