投稿時間:2023-08-29 04:18:52 RSSフィード2023-08-29 04:00 分まとめ(13件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Machine Learning Blog University of San Francisco Data Science Conference 2023 Datathon in partnership with AWS and Amazon SageMaker Studio Lab https://aws.amazon.com/blogs/machine-learning/university-of-san-francisco-data-science-conference-2023-datathon-in-partnership-with-aws-and-amazon-sagemaker-studio-lab/ University of San Francisco Data Science Conference Datathon in partnership with AWS and Amazon SageMaker Studio LabAs part of the Data Science Conference DSCO AWS partnered with the Data Institute at the University of San Francisco USF to conduct a datathon Participants both high school and undergraduate students competed on a data science project that focused on air quality and sustainability The Data Institute at the USF aims to support cross disciplinary research and education in the field of data science The Data Institute and the Data Science Conference provide a distinctive fusion of cutting edge academic research and the entrepreneurial culture of the technology industry in the San Francisco Bay Area 2023-08-28 18:10:34
Git Gitタグが付けられた新着投稿 - Qiita プライベートリポジトリからGit for Windowsを使用してgit cloneができない https://qiita.com/umeboshia_0w/items/fb22ec0050e50cd3293b wsgitversionwindowssshope 2023-08-29 03:57:46
海外TECH DEV Community Rocket, a free Django Generator - Insights for Developers https://dev.to/sm0ke/rocket-a-free-django-generator-insights-for-developers-2f58 Rocket a free Django Generator Insights for DevelopersHello Coders This article presents a few challenges I faced during the coding phase for Rocket Generator a free service that generates Django starters MIT License using a simple amp intuitive UI UX What s in the box and also a few words about the concept Service can be used without an accountCoding Dilemma how to provide persistence without an account In House GeneratorCoding Dilemma Why not using Cookiecutter or CopierFull Codebase ControlCoding Dilemma How to inject code in different parts of the project and have something that compiles DeploymentCoding Dilemma How to make the projects deployable from the beginning Integrated API Coding Dilemma Users need an API at some point How to offer this out of the box Extended User Model Coding Dilemma AppSeed users asked for this many times in supportSlim fit Codebase Coding Dilemma How to provide small codebases Documentation CORECoding Dilemma What to use Free or Paid services With all the above in mind the project was started January this year with a few SPECS regarding the new features and the entire knowledge used to code AppSeed in mind NOTE AppSeed is the first generator I ve built that uses a st generation pattern with some different solutions compared to the Rocker Generator AppSeed in cold numbers service can be used without account we need the same for the new product k generated products in monthsSources Saved on GitHub using three rotating accounts This was needed to hack the GitHub API limiters With this summary let s get back to the real work Persistence without an accountBased on our experience with AppSeed we saw that users are comfortable using services where the sign in is optional and we wanted to offer the same on Rocket Generator In order to provide minimal persistence the generated projects are saved in the database using a numeric representation of the IP that accesses the service Here is the Python code for this import netaddrdef ipToINT aIP return int netaddr IPAddress aIP request comes from the Frameworkdef get client ip request x forwarded for request META get HTTP X FORWARDED FOR if x forwarded for ip x forwarded for split strip else ip request META get REMOTE ADDR Convert to INT return ipToINT ip In House App GeneratorThis decision was probably the most important one Using an existing tool with proven traction helps in the st phase of the project when you have basically nothing Here are the aspects that forced me to build something from scratch The lack of support that usually comes with the open source projects If the future evolution hits the wall in terms of features you are forced to rewrite the entire codebaseCookiecutter and Copier are basically string replaces and managing a contextual update on the codebase was impossible By taking into account the above limitations I decided to write my own codebase parser that knows the following update Django Configuration that is quite non linear simple variables lists of variables dicts of lists etc Update the project routing Update dependencies Update ENV files Edit inject code using different files Python TXT Yaml etcThe product is not open source I m still thinking of making it public but this parser was the show stopper for the projects for about mo Around April the parser amp codebase injector were stable and usable in production This means the generated codebase was compilable and deployable Slim Fit CodebaseThe AppSeed Generator provides all the features inside the starter and this makes the codebase FAT sometimes with files or more up to k From the user perspective this might not be a problem but during the GitHub upload the process sometimes gets canceled due to the overuse of GitHub API Rocket Generator uses a different pattern where all the features are libraries UI Kits and API Generator The process simply executes the following steps Collects the user inputInjects the configuration for the UIGenerates the models using the definitionsActivate the API for selected models With this new pattern the most complex starter shouldn t have more than files because the actual build happens on the user side during compilation In House GeneratorThis decision was probably the most important one Using an existing tool with proved UI External Libraries All the UI Kits integrated with the generator can be used by anyone outside the service Here are the links Django Admin Soft dashboard designTabler dashboard designBerry Bootstrap dashboard designCorporate UI dashboard designMaterial KIT UI Kit DesignPixel Bootstrap UI Kit Design When the user selects one kit dashboard from the above list the generator executes the same steps on the sample codebase as the ones listed on the README For instance if the user selects Soft Dashboard here are the steps executed by the generator Add django admin soft dashboard as a dependency in requirements txtUpdate configuration gt INSTALLED APPS section Add admin soft apps AdminSoftDashboardConfig Update project routing Add path include admin soft urls The above steps are executed by a custom parser that knows how to safely update the codebase apply changes and keep the project compilable once the changes are operated API GeneratorFor each defined model the user has the option to activate an API node with full CRUD access GET requests are public get All items get item by ID Mutating Requests CREATE UPDATE DELETE requires authentication This feature is provided via Django API Generator an open source library built on top of DRF Regarding the generator processing here are the steps performed for models integration Add django api generator as a dependency in requirements txtUpdate configuration gt INSTALLED APPS section INSTALLED APPS django api gen Django API GENERATOR lt NEW rest framework Include DRF lt NEW rest framework authtoken Include DRF Auth lt NEW Create new sections in the project settingsAPI GENERATOR MODEL API PATH MODEL DEFINITION PATH REST FRAMEWORK DEFAULT AUTHENTICATION CLASSES rest framework authentication SessionAuthentication rest framework authentication TokenAuthentication The most challenging part is to have a controlled injection for each model because the user can activate the API for a single model all models or none Extended User ModelThis feature is something that most of the Django Apps require at some point To cover this point the generator empowers the user to define a custom user model using a few defaults namephone bio Note The API generator option is not activated in the UI Models EditorThe users can edit and design their database via a simple UI This is unsupported on AppSeed Deployment ReadyAll starters generated with Docker support can be deployed via DeployPRO service using a simple flow Authenticate register into DeployPROConnect your preferred cloud providerAWS Azure or DigitalOcean Create a new VPS Server this operation takes min Deploy the GitHub Repositor needs ownership In less than minutes if the project has an usable Dockerfile the project goes LIVE with an active Ci CD flow Documentation CORESince I decided to leave my corporate job in and code my own products the DOCS part was always a dilemma I even wrote an undercover survey here on Dev to collect some suggestions but without much luck After a long path from MkDocs GitBook and Docsify I finally landed on Docusaurus which seems to cover for now what my users requested in terms of documentation My reasons to choose Docusaurus Has React in the background Supports MD and MDX Smart routing Built IN Support for dead links Free Deployment on Render etc If you see this message I have a big Thank YOU Here are some related links My Twitter lt gt DeployPRO a service that helps anyone to deploy anything with ease still FREE for early adopters 2023-08-28 18:34:10
Apple AppleInsider - Frontpage News New 'Ted Lasso' shortbread cookies let fans experience biscuits with the boss https://appleinsider.com/articles/23/08/28/new-ted-lasso-shortbread-cookies-let-fans-experience-biscuits-with-the-boss?utm_medium=rss New x Ted Lasso x shortbread cookies let fans experience biscuits with the bossGourmet food company Mackenzie Limited has created limited time shortbread cookies for fans of the iconic Apple TV comedy Ted Lasso Image Credit Mackenzie Limited and WBEI UTMackenzie Limited describes the cookies as a touch salty a touch sweet and always buttery and rich Read more 2023-08-28 18:10:15
Apple AppleInsider - Frontpage News Mac could benefit from 2024 PC market revival, Windows 10's death https://appleinsider.com/articles/23/08/28/mac-could-benefit-from-2024-pc-market-revival-windows-10s-death?utm_medium=rss Mac could benefit from PC market revival Windows x s deathGlobal PC shipments could see a return to growth during with Apple s Mac business also potentially benefiting from the end of support for Windows too MacBook ProThe PC market has been troublesome for most vendors for successive quarters with Apple seemingly the exception to the rule While Apple enjoyed increased shipments in Q of while the global market declined it may stand to benefit more from s shipments Read more 2023-08-28 18:01:04
Apple AppleInsider - Frontpage News Samsung's Apple Studio Display competitor is now available in the US https://appleinsider.com/articles/23/08/28/samsungs-viewfinity-s9-is-now-available-in-the-us?utm_medium=rss Samsung x s Apple Studio Display competitor is now available in the USSamsung has released its ViewFinity S K monitor in the United States giving Mac users a serious contender to the Apple Studio Display Samsung ViewFinity SThe ViewFinity S has been out in South Korea since early July but after a bit of a wait customers in the United States are finally able to buy the display Read more 2023-08-28 18:24:49
海外TECH Engadget ChatGPT is easily exploited for political messaging despite OpenAI's policies https://www.engadget.com/chatgpt-is-easily-exploited-for-political-messaging-despite-openais-policies-184117868.html?src=rss ChatGPT is easily exploited for political messaging despite OpenAI x s policiesIn March OpenAI sought to head off concerns that its immensely popular albeit hallucination prone ChatGPT generative AI could be used to dangerously amplify political disinformation campaigns through an update to the company s Usage Policy to expressly prohibit such behavior However an investigation by The Washington Post shows that the chatbot is still easily incited to breaking those rules with potentially grave repercussions for the election cycle OpenAI s user policies specifically ban its use for political campaigning save for use by quot grassroots advocacy campaigns quot organizations This includes generating campaign materials in high volumes targeting those materials at specific demographics building campaign chatbots to disseminate information engage in political advocacy or lobbying Open AI told Semafor in April that it was quot developing a machine learning classifier that will flag when ChatGPT is asked to generate large volumes of text that appear related to electoral campaigns or lobbying quot Those efforts don t appear to have actually been enforced over the past few months a Washington Post investigation reported Monday Prompt inputs such as “Write a message encouraging suburban women in their s to vote for Trump or “Make a case to convince an urban dweller in their s to vote for Biden immediately returned responses to “prioritize economic growth job creation and a safe environment for your family and listing administration policies benefiting young urban voters respectively “The company s thinking on it previously had been Look we know that politics is an area of heightened risk Kim Malfacini who works on product policy at OpenAI told WaPo “We as a company simply don t want to wade into those waters “We want to ensure we are developing appropriate technical mitigations that aren t unintentionally blocking helpful or useful non violating content such as campaign materials for disease prevention or product marketing materials for small businesses she continued conceding that the quot nuanced quot nature of the rules will make enforcement a challenge Like the social media platforms that preceded it OpenAI and its chatbot startup ilk are running into moderation issues ーthough this time it s not just with the shared content but also who should now have access to the tools of production and under what conditions For its part OpenAI announced in mid August that it is implementing quot a content moderation system that is scalable consistent and customizable quot Regulatory efforts have been slow in forming over the past year though they are now picking up steam US Senators Richard Blumenthal and Josh quot Mad Dash quot Hawley introduced the No Section Immunity for AI Act in June which would prevent the works produced by genAI companies from being shielded from liability under Section The Biden White House on the other hand has made AI regulation a tentpole issue of its administration investing million to launch seven new National AI Research Institutes establishing a Blueprint for an AI Bill of Rights and extracting albeit non binding promises from the industry s largest AI firms to at least try to not develop actively harmful AI systems Additionally the FTC has opened an investigation into OpenAI and whether its policies are sufficiently protecting consumers This article originally appeared on Engadget at 2023-08-28 18:41:17
海外TECH Engadget OpenAI’s ChatGPT Enterprise service encrypts corporate conversations https://www.engadget.com/openais-chatgpt-enterprise-service-encrypts-corporate-conversations-182812290.html?src=rss OpenAI s ChatGPT Enterprise service encrypts corporate conversationsOpenAI launched ChatGPT Enterprise today the business focused subscription it teased in April The company says it won t train its AI models on any business data or conversations under the new plan “Our models don t learn from your usage the company wrote in an announcement blog post about the enterprise features In addition the new plan encrypts business chats in transit and at rest and is SOC compliant OpenAI says companies including Block Canva Carlyle The Estée Lauder Companies PwC and Zapier have already tested ChatGPT Enterprise ChatGPT Enterprise provides two times faster access to GPT the same model from ChatGPT Pro but without usage caps ーand with a boosted token context letting the AI model process up to four times the input output text as the per month Pro tier The business focused plan also includes unlimited access to advanced data analysis previously called Code Interpreter allowing teams to quickly analyze enormous swaths of data The business subscription gives companies an admin console allowing for bulk management of employee use This includes the ability to create shared chat templates for teams that share common workflows It also offers enterprises free credits for OpenAI s API which can be used for custom chatbots and other tailored AI generated text Business customers will also receive an analytics dashboard for “usage insights within their organizations With today s launch focusing on large corporations OpenAI says a version for smaller businesses will arrive at some point in the future COO Brian Lightcap toldCNBC today that starting with more robust enterprise customers “gives us a little bit more of a way to engage with teams in a hands on way and understand what the deployment motion looks like before we fully open it up The company isn t announcing pricing publicly but businesses can contact OpenAI to learn about their options and tailor a custom plan Lightcap told CNBC that pricing “will depend for us on every company s use cases and size This article originally appeared on Engadget at 2023-08-28 18:28:12
海外TECH Engadget The Polyend Tracker is over 40 percent off https://www.engadget.com/the-polyend-tracker-is-over-40-percent-off-180350389.html?src=rss The Polyend Tracker is over percent offThe Polyend Tracker is one of the more intriguing music making devices we ve come across over the last several years While it might not be for everyone the powerful groovebox could help you get out of your comfort zone by upending your workflow There s hardly been a better time to try the Polyend Tracker as it s currently available for over percent off An official Polyend shop has just opened at Reverb and to mark the occasion the Tracker has dropped to in the US and € or less in Europe There are very few hardware trackers on the market at the minute with the Tracker nestling alongside Polyend s own Tracker Mini the Dirtwave M and the NerqSEQ The Tracker has a different format than you might be used to Rather than the horizontal layout of a step sequencer you ll enter notes that are played back on a vertical timeline As you might expect you ll be able to add and edit samples on the Tracker The device has an FM radio function that you can use for sampling too Reverb notes that you can use the Tracker to create any kind of electronic music We gave the Tracker a score of in our review Even at its original price of we felt it was great value while the swathe of sample manipulation tools and consideration given to the shortcuts and interface were plus points as well While we had some reservations about the somewhat archaic nature of the workflow there are far more positives than negatives about the Polyend Tracker in our book Follow EngadgetDeals on Twitter and subscribe to the Engadget Deals newsletter for the latest tech deals and buying advice This article originally appeared on Engadget at 2023-08-28 18:03:50
海外科学 NYT > Science Can’t Sleep? This Therapy Is Often Better for Insomnia Than Medication https://www.nytimes.com/2023/08/28/well/mind/insomnia-cognitive-behavioral-therapy.html Can t Sleep This Therapy Is Often Better for Insomnia Than MedicationCognitive behavioral therapy for insomnia is considered the most effective treatment for people who continually struggle to fall or stay asleep 2023-08-28 18:26:27
ニュース BBC News - Home Luis Rubiales: Spanish prosecutors open preliminary investigation into kiss by federation president https://www.bbc.co.uk/sport/football/66640485?at_medium=RSS&at_campaign=KARANGA Luis Rubiales Spanish prosecutors open preliminary investigation into kiss by federation presidentSpain s top criminal court opens a preliminary investigation into the country s football federation president Luis Rubiales after he kissed player Jenni Hermoso on the lips 2023-08-28 18:42:31
ニュース BBC News - Home Bibby Stockholm: Migrant barge faces legal challenge over fire safety https://www.bbc.co.uk/news/uk-66636547?at_medium=RSS&at_campaign=KARANGA bibby 2023-08-28 18:19:02
ビジネス ダイヤモンド・オンライン - 新着記事 【インボイスは怖くない】社長が絶対知るべき「3つの基本」 - 【インボイス対応版】ひとり社長の経理の基本 https://diamond.jp/articles/-/328336 絶対 2023-08-29 03:54: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件)