Thought for 2 seconds### Comprehensive Guide to v0 Capabilities
Code Projects are complete React and Next.js applications I can create for you with multiple interconnected files.
| FROM nvidia/cuda:9.0-cudnn7-devel | |
| # Install Conda | |
| ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 | |
| ENV PATH /opt/conda/bin:$PATH | |
| RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-certificates \ | |
| libglib2.0-0 libxext6 libsm6 libxrender1 \ | |
| git mercurial subversion |
| # drop this into your ./.gitconfig file | |
| # usage | |
| # $ git today | |
| # $ git yesterday | |
| # $ git since 18-11-01 | |
| # | |
| # will display a list of formatted commits you can lift to use for release notes | |
| [alias] | |
| today = log --since=1am --pretty=format:"%C(blue)-\\ %s" |
| 0411162374b5fcbd0817ddc24470640dc281136483a34ae1a1600bb6918bac5696fdb48c57a04aaaaa0c29d1e4f41148421584d10cc51beac97aae017f359d6af9 |
| var win = Titanium.UI.createWindow({ | |
| backgroundColor: "#ffffff", | |
| title: "win" | |
| }); | |
| // animations | |
| var animateLeft = Ti.UI.createAnimation({ | |
| left: -520, | |
| transform: Ti.UI.create2DMatrix({rotate: 60}), | |
| opacity: 0, |
| var o = {}; | |
| // include the modules you want - purposely did this as seperate lines so it's easier to comment out modules etc | |
| _.extend(o, require("module1")); | |
| _.extend(o, require("module2")); | |
| _.extend(o, require("module3")); | |
| // make available under a single export for use in <Alloy> tag | |
| module.exports = o; |
I hereby claim:
To claim this, I am signing this object:
| // add this to the Alloy.js file | |
| // Set to run in ENV_DEV mode so it's used for testing withou | |
| // having to change languages on device etc | |
| // NO checks in place so assumes you know what you're doing, have | |
| // the relevant strings files and specify the correct one! | |
| // should work on Android - not tested yet! | |
| if (ENV_DEV) { | |
| Alloy.Globals.setLanguage = function(lang) { |
| <!-- note the ONLY change to this is the additional module="tabIndicator" | |
| attribute + properties to override indicator defaults //--> | |
| <Alloy> | |
| <TabGroup module="tabIndicator" tabsBackgroundColor="#000" tabIndicatorHeight="1" tabIndicatorColor="white" tabIndicatorWidth="75%"> | |
| <Tab title="Tab 1" icon="/images/icons/519-tools-1.png" activeIcon="/images/icons/519-tools-1_active.png" color="#555" activeColor="#fff"> | |
| <Window title="Tab 1" barColor="black" navTextColor = "#fff"> | |
| <Label onClick="openWin1">Tab 1</Label> | |
| </Window> | |
| </Tab> | |
| <Tab title="Tab 2" icon="/images/icons/516-archive-box.png" activeIcon="/images/icons/516-archive-box_active.png" color="#555" activeColor="#fff"> |