This document discusses modern CSS architecture patterns. It introduces concepts like OOCSS, SMACSS, and BEM for organizing CSS in a modular, scalable and maintainable way. It provides examples of how to build reusable CSS modules and maintain them through techniques like naming conventions, categorization and decoupling CSS from HTML. The presentation emphasizes goals of building predictable, reusable, maintainable and scalable CSS architecture.
The document discusses Adobe Flash Player development being ended for mobile devices and the growing adoption of HTML5. It highlights features of HTML5 like geolocation, and promotes Microsoft internet explorer and tools for HTML5 development. It also discusses the future of the web moving to open standards and technologies like HTML5 that are native to Windows.
This document discusses modern CSS architecture patterns. It introduces concepts like OOCSS, SMACSS, and BEM for organizing CSS in a modular, scalable and maintainable way. It provides examples of how to build reusable CSS modules and maintain them through techniques like naming conventions, categorization and decoupling CSS from HTML. The presentation emphasizes goals of building predictable, reusable, maintainable and scalable CSS architecture.
The document discusses Adobe Flash Player development being ended for mobile devices and the growing adoption of HTML5. It highlights features of HTML5 like geolocation, and promotes Microsoft internet explorer and tools for HTML5 development. It also discusses the future of the web moving to open standards and technologies like HTML5 that are native to Windows.
The document is a confidential report from Adobe Systems about mobile strategies. It discusses trends in the mobile market, including growth in smartphones and tablets. It analyzes the leading mobile operating systems and opportunities for Adobe in areas like apps, games, reading and viewing content on mobile devices. The report outlines strategies for Adobe to leverage their software and technologies across the mobile landscape.
The document discusses the Adobe Flash Platform, including Adobe Flash Player, Adobe AIR, and related technologies. It highlights key capabilities and deployments of Flash Player across devices like Android smartphones and tablets. It also outlines the shared codebase and user interfaces that allow Adobe AIR applications to run across desktop and mobile platforms.
The document discusses Adobe AIR, including its support for web standards like HTML5 and Webkit, its integration of technologies like SQLite and PDF, and its client/server capabilities using UDP. It also mentions AIR's upcoming support for Android 2.2 and notes several resources for learning more about AIR and its mobile capabilities, including Adobe's website and labs page as well as blogs and user groups.
論文紹介:PitcherNet: Powering the Moneyball Evolution in Baseball Video AnalyticsToru Tamaki
Jerrin Bright, Bavesh Balaji, Yuhao Chen, David A Clausi, John S Zelek,"PitcherNet: Powering the Moneyball Evolution in Baseball Video Analytics" CVPR2024W
https://openaccess.thecvf.com/content/CVPR2024W/CVsports/html/Bright_PitcherNet_Powering_the_Moneyball_Evolution_in_Baseball_Video_Analytics_CVPRW_2024_paper.html
Redmine Project Importerプラグインのご紹介
第28回Redmine.tokyoで使用したLTスライドです
https://redmine.tokyo/projects/shinared/wiki/%E7%AC%AC28%E5%9B%9E%E5%8B%89%E5%BC%B7%E4%BC%9A
Redmineのチケットは標準でCSVからインポートできますが、追記情報のインポートは標準ではできないですよね。
チケット情報、追記情報含めてインポートしたいと思ったことはありませんか?(REST-API等用いて工夫されている方もいらっしゃるとおもいますが)
このプラグインは、プロジェクト単位であるRedmineのデータを別のRedmineのDBにインポートします。
例えば、複数のRedmineを一つのRedmineにまとめたいとか、逆に分割したいとかのときに、まるっとプロジェクト単位での引っ越しを実現します。
This is the LT slide used at the 28th Redmine.tokyo event.
You can import Redmine tickets from CSV as standard, but you can't import additional information as standard.
Have you ever wanted to import both ticket information and additional information? (Some people have figured it out using REST-API, etc.)
This plugin imports Redmine data on a project basis into another Redmine database.
For example, if you want to combine multiple Redmines into one Redmine, or split them up, you can move the entire project.
論文紹介:"Visual Genome:Connecting Language and VisionUsing Crowdsourced Dense I...Toru Tamaki
Ranjay Krishna, Yuke Zhu, Oliver Groth, Justin Johnson, Kenji Hata, Joshua Kravitz, Stephanie Chen, Yannis Kalantidis, Li-Jia Li, David A. Shamma, Michael S. Bernstein, Li Fei-Fei ,"Visual Genome:Connecting Language and VisionUsing Crowdsourced Dense Image Annotations" IJCV2016
https://link.springer.com/article/10.1007/s11263-016-0981-7
Jingwei Ji, Ranjay Krishna, Li Fei-Fei, Juan Carlos Niebles ,"Action Genome: Actions As Compositions of Spatio-Temporal Scene Graphs" CVPR2020
https://openaccess.thecvf.com/content_CVPR_2020/html/Ji_Action_Genome_Actions_As_Compositions_of_Spatio-Temporal_Scene_Graphs_CVPR_2020_paper.html
28. シェイプの内側に流し込み
-webkit-shape-inside
CSS
.circle {
/* shape the element as a circle */
shape-inside: polygon(0px, 150px, ...);
}
13年11月30日土曜日
.heart {
/* shape the element as a heart */
shape-inside: polygon(150px, 32px, ...);
}
29. シェイプの周囲に回り込み
-webkit-shape-outside
CSS
.circle {
/* shape the element as a circle */
shape-outside: polygon(0px, 150px, ...);
}
13年11月30日土曜日
.heart {
/* shape the element as a heart */
shape-outside: polygon(150px, 32px, ...);
}