Giter Site home page Giter Site logo

wajahatkarim3 / easyflipview Goto Github PK

View Code? Open in Web Editor NEW
1.4K 34.0 189.0 15.24 MB

💳 A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.

Home Page: https://android.jlelse.eu/easyflipviewpager-the-flip-animations-for-your-viewpager-fd66b34f4703

License: Apache License 2.0

Java 100.00%
android-library views custom-view xml layouts credit-cards poker-cards android animation

easyflipview's Introduction

New in the EasyFlipView  The article on how this library was created is now published. You can read it on this link here. →.

💳 EasyFlipView

Codacy Badge Build Status Download Android Arsenal API Say Thanks!

Built with ❤︎ by Wajahat Karim and contributors

A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.

✔️ Changelog

Changes exist in the releases tab.

💻 Installation

Add this in your app's build.gradle file:

dependencies {
  implementation 'com.wajahatkarim:EasyFlipView:3.0.3'
}

New in the EasyFlipView From the version 3.0.0, this library will only support Android X naming artifacts. If you want to use the android.support versions, then use 2.1.2 version.

Or add EasyFlipView as a new dependency inside your pom.xml

<dependency> 
  <groupId>com.wajahatkarim</groupId>
  <artifactId>EasyFlipView</artifactId> 
  <version>3.0.3</version>
  <type>pom</type> 
</dependency>

❔ Usage

XML

EasyFlipView In XML layouts("Vertical")

<com.wajahatkarim3.easyflipview.EasyFlipView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	app:flipOnTouch="true"
	app:flipEnabled="true"
	app:flipDuration="400"
	app:flipType="vertical"
	app:flipFrom="front"
	app:autoFlipBack="true"
	app:autoFlipBackTime="1000"
	>

	<!-- Back Layout Goes Here -->
	<include layout="@layout/flash_card_layout_back"/>
        
	<!-- Front Layout Goes Here -->
	<include layout="@layout/flash_card_layout_front"/>

</com.wajahatkarim3.easyflipview.EasyFlipView>

EasyFlipView In XML layouts("Horizontal")

<com.wajahatkarim3.easyflipview.EasyFlipView
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	app:flipOnTouch="true"
	app:flipEnabled="true"
	app:flipDuration="400"
	app:flipFrom="right"
	app:flipType="horizontal"
	app:autoFlipBack="false"
	>

	<!-- Back Layout Goes Here -->
	<include layout="@layout/flash_card_layout_back"/>

	<!-- Front Layout Goes Here -->
	<include layout="@layout/flash_card_layout_front"/>

</com.wajahatkarim3.easyflipview.EasyFlipView>

🎨 Customizations & Attributes

All customizable attributes for EasyFlipView

Attribute Name Default Value Description
app:flipOnTouch="true" true Whether card should be flipped on touch or not.
app:flipDuration="400" 400 The duration of flip animation in milliseconds.
app:flipEnabled="true" true If this is set to false, then it won't flip ever in Single View and it has to be always false for RecyclerView
app:flipType="horizontal" vertical Whether card should flip in vertical or horizontal
app:flipType="horizontal" vertical Whether card should flip in vertical or horizontal
app:flipFrom="right" app:flipFrom="back" left front Whether card should flip from left to right Or right to left(Horizontal type) or car should flip to front or back(Vertical type)
app:autoFlipBack="true" false If this is set to true, then he card will be flipped back to original front side after the time set in autoFlipBackTime.
app:autoFlipBackTime="1000" 1000 The time in milliseconds (ms), after the card will be flipped back to original front side.

In Code (Java)

// Flips the view with or without animation
mYourFlipView.flipTheView();
mYourFlipView.flipTheView(false);

// Sets and Gets the Flip Animation Duration in milliseconds (Default is 400 ms)
mYourFlipView.setFlipDuration(1000);
int dur = mYourFlipView.getFlipDuration();

// Sets and gets the flip enable status (Default is true)
mYourFlipView.setFlipEnabled(false);
boolean flipStatus = mYourFlipView.isFlipEnabled();

// Sets and gets the flip on touch status (Default is true)
mYourFlipView.setFlipOntouch(false);
boolean flipTouchStatus = mYourFlipView.isFlipOnTouch();

// Get current flip state in enum (FlipState.FRONT_SIDE or FlipState.BACK_SIDE)
EasyFlipView.FlipState flipSide = mYourFlipView.getCurrentFlipState();

// Get whether front/back side of flip is visible or not.
boolean frontVal = mYourFlipView.isFrontSide();
boolean backVal = mYourFlipView.isBackSide();

// Get/Set the FlipType to FlipType.Horizontal
boolean isHorizontal = mYourFlipView.isHorizontalType();
mYourFlipView.setToHorizontalType();

// Get/Set the FlipType to FlipType.Vertical
boolean isVertical = mYourFlipView.isVerticalType();
mYourFlipView.setToVerticalType();

// Get/Set if the auto flip back is enabled
boolean isAutoFlipBackEnabled = mYourFlipView.isAutoFlipBack();
mYourFlipView.setAutoFlipBack(true);

// Get/Set the time in milliseconds (ms) after the view is auto flip back to original front side
int autoflipBackTimeInMilliseconds = mYourFlipView.getAutoFlipBackTime();
mYourFlipView.setAutoFlipBackTime(2000);

// Sets the animation direction from left (horizontal) and back (vertical)
easyFlipView.setFlipTypeFromLeft();

// Sets the animation direction from right (horizontal) and front (vertical)
easyFlipView.setFlipTypeFromRight();

// Sets the animation direction from front (vertical) and right (horizontal)
easyFlipView.setFlipTypeFromFront();

// Sets the animation direction from back (vertical) and left (horizontal)
easyFlipView.setFlipTypeFromBack();

// Returns the flip type from direction. For horizontal, it will be either right or left and for vertical, it will be front or back.
easyFlipView.getFlipTypeFrom();

Flip Animation Listener

EasyFlipView easyFlipView = (EasyFlipView) findViewById(R.id.easyFlipView);
easyFlipView.setOnFlipListener(new EasyFlipView.OnFlipAnimationListener() {
            @Override
            public void onViewFlipCompleted(EasyFlipView flipView, EasyFlipView.FlipState newCurrentSide) 
            {
                
                // ...
                // Your code goes here
                // ...
                
            }
        });

❌ Known Issues

The EasyFlipView doesn't flip when used in RecyclerView. This is because the EasyFlipView uses the onTouch() method to intercept the touch events and flip the view accordingly. One easier solution is to disable the flipOnTouch attribute in XML by this.

app:flipOnTouch="false"

Now, your RecyclerView will scroll but the EasyFlipView will not flip or animate on touch etc. You will have to manually flip the view by calling the method mYourFlipView.flipTheView() inside the adapter or ViewHolder class of the RecyclerView. For example,

public class MyRecyclerViewAdapter extends RecyclerView.Adapter<MyRecyclerViewAdapter.ViewHolder> {

    private List<Object> mData;
    private LayoutInflater mInflater;
    private ItemClickListener mClickListener;

    // data is passed into the constructor
    MyRecyclerViewAdapter(Context context, List<Object> data) {
        this.mInflater = LayoutInflater.from(context);
        this.mData = data;
    }

    // inflates the row layout from xml when needed
    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View view = mInflater.inflate(R.layout.recyclerview_row, parent, false);
        return new ViewHolder(view);
    }

    // binds the data to the TextView in each row
    @Override
    public void onBindViewHolder(ViewHolder holder, int position) {
        String textData = (String) mData.get(position);
        holder.myTextView.setText(textData);
    }

    // total number of rows
    @Override
    public int getItemCount() {
        return mData.size();
    }


    // stores and recycles views as they are scrolled off screen
    public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
        TextView myTextView;
	EasyFlipView myEasyFlipView;

        ViewHolder(View itemView) {
            super(itemView);
            myTextView = itemView.findViewById(R.id.tvAnimalName);
	    myEasyFlipView = itemView.findViewById(R.id.myEasyFlipView);
            itemView.setOnClickListener(this);
        }

        @Override
        public void onClick(View view) {
	    myEasyFlipView.flipTheView();
            if (mClickListener != null) {
	    	mClickListener.onItemClick(view, getAdapterPosition());
	    }
        }
    }

    // convenience method for getting data at click position
    String getItem(int id) {
        return mData.get(id);
    }

    // allows clicks events to be caught
    void setClickListener(ItemClickListener itemClickListener) {
        this.mClickListener = itemClickListener;
    }

    // parent activity will implement this method to respond to click events
    public interface ItemClickListener {
        void onItemClick(View view, int position);
    }
}

The EasyFlipView has a strange behaviour when the back and front layouts are a CardView. To workaround it, wrap your CardView in a FrameLayout or other ViewGroup.

💰 Donations

This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!

PayPal

  • Donate $5: Thank's for creating this project, here's a tea (or some juice) for you!
  • Donate $10: Wow, I am stunned. Let me take you to the movies!
  • Donate $15: I really appreciate your work, let's grab some lunch!
  • Donate $25: That's some awesome stuff you did right there, dinner is on me!
  • Donate $50: I really really want to support this project, great job!
  • Donate $100: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
  • Donate $2799: Go buddy, buy Macbook Pro for yourself!

Of course, you can also choose what you want to donate, all donations are awesome!

👨 Developed By

Wajahat Karim

💖 Special Thanks

👍 How to Contribute

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

📃 License

Copyright 2018 Wajahat Karim

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

easyflipview's People

Contributors

92alanc avatar adzo261 avatar bffcorreia avatar codacy-badger avatar db-boy avatar drankolq avatar igio90 avatar sachinvarma avatar sachinvarmaraja avatar wajahatkarim3 avatar waseefakhtar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

easyflipview's Issues

Artifacts appearing on flipping

The best to see for yourself
https://youtu.be/CSgVNxgrKIY

the code:

<?xml version="1.0" encoding="utf-8"?>
<com.wajahatkarim3.easyflipview.EasyFlipView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/flipper"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    app:flipOnTouch="true"
    app:flipEnabled="true"
    app:flipDuration="400"
    app:flipType="horizontal"
    >

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="16dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Front"
            android:textAppearance="@style/TextAppearance.AppCompat.Large" />

    </android.support.v7.widget.CardView>

    <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="16dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="@style/TextAppearance.AppCompat.Large"
            android:text="Back"/>

    </android.support.v7.widget.CardView>

</com.wajahatkarim3.easyflipview.EasyFlipView>

Any idea why this is happening/what I'm doing wrong?

change flip mode in recyclerview

when I use flipview inside recyclerview some bugs happen
when scrolling, reused view that I need to change from back to front (or opposite), I tried to use flipTheView method withAnimate=false - but the result is seeing the back for second and then the front
I tried to use setFlipDuration(0) before, but the result of that is the animation stays with duration 0 for every next flipTheView call withAnimation=true

Creating the view programmatically

Hello, your code assume that the EasyFlipView is inflated from an xml layout. Building it programmatically will generate an NPE I.E here:

    public void setFlipDuration(int flipDuration) {
        this.flipDuration = flipDuration;
        ((Animator)this.mSetRightOut.getChildAnimations().get(0)).setDuration((long)flipDuration);
        ((Animator)this.mSetRightOut.getChildAnimations().get(1)).setStartDelay((long)(flipDuration / 2));
        ((Animator)this.mSetLeftIn.getChildAnimations().get(1)).setDuration((long)flipDuration);
        ((Animator)this.mSetLeftIn.getChildAnimations().get(2)).setStartDelay((long)(flipDuration / 2));
    }

because mSetRightOut will always be null as it is built in the "OnFinishInflate", which is not callable from outside and called only if the view is inflated from an XML layout

I would suggest to simply add a method (public) called setup() that is fired as well in OnFinishInflate but could allow people to build the view programmatically and setup later as needed.

Thanks!

Unable to scroll EasyFlipView

Scrolling issue while trying to scroll the items of recycler view. Unable to scroll while clicking EasyFlipView ITEM_VIEW. And if we tried to scroll with other views rather than EasyFlipViewview is scrolling only in that case.

Question: Reverse the flipping direction?

Hi,

Thanks for making your library available! It's very much appreciated and is working great.

I appreciate it really is an "easy" library too :)

The one question I have is: is it possible to reverse the flipping direction? It would be nice to reverse flip when going from the back to the front.

Thanks!

Animation completion handler

Are you expecting to provide a way for users to set an animation completion handler? We can already get the duration of the animation, so we could just use a timer, but if the API is already doing something when the animation completes, it would be good to ensure that the user's completion tasks would be done after the API's.

Clipping

Hey, the front/back views are clipped at the top and bottom at the EasyFlipView bounds while flipping (horizontal).
Is there way to fix this? I tried

android:clipChildren="false"
android:clipToPadding="false"

on the FlipView to no avail.

In Lib Module

Could not resolve com.wajahatkarim3.EasyFlipView:EasyFlipView:2.1.2

can't call method setClickListener in main activity

when use in recycleView
how can i call this method in main activity
// allows clicks events to be caught
void setClickListener(ItemClickListener itemClickListener) {
this.mClickListener = itemClickListener;
}

bug

android 4.4 运行时有旋转痕迹出现

backside unclickable

I want to add click things(not flip ,such as jump to ...) in backside . It does not work!
(我想在背面的view 添加点击事件 , 但是不能生效)

View clipping

There's some noticeable clipping near the corners even in the preview gif itself:

image

I was wondering if there's a workaround to let the view overflow it's bounds, i.e., draw over other elements if needed to make the whole animation visible.

[FEATURE REQUEST] Make it possible to have both cards share height of the higher one

First of all - Thank you for providing us with such a great and simple library! I love it and I'm generally delighted with how it works, but there's a problem that I see no simple way of fixing.

Currently, I see no other way for cards to have them share the height of the higher one other than hardcode height of both child fragments. I think that allowing the control of whether I want the other side visibility to be changed to INVISIBLE not GONE would help many people that want to display dynamic content in their FlipView.

Build fails due to EasyFlipView dependency issue

My builds started failing today for some reason and I am getting this message

Could not determine artifacts for com.wajahatkarim3.EasyFlipView:EasyFlipView:2.1.2: Skipped due to earlier error

Any ideas about how to fix that?

Dynamic flip type leads to mirrored images and wrong flip animation

Nice library, thank you very much.
I'm using it with two image views.
Depending on a fling motion, the user is able to turn the image vertically (if swiping up or down) or horizontally (if swiping horizontally).
The type (from front or back, left or right) is changed accordingly.
This motion may be repeated as often as the user likes on the same.

A problem occurs, if a user swipes vertically and then horizontally (or vice versa).
Here's a little POC to show what I mean.

// the flip view flips on touch
findViewById<EasyFlipView>(R.id.flip_view).run {

    setToHorizontalType()

    // first click: everything is fine
    setOnFlipListener { _, _ ->
        setToVerticalType()

        // second click: mirrored image view, correct animation
        setOnFlipListener { _, _ ->
            setToHorizontalType()
            setOnClickListener(null)

            // third click: mirrored image view changes back (is now correct), wrong animation
            // following clicks: wrong animations but correct image views
        }
    }
}

This most probably has got something to do with the animations.
When you 'flip' the image view, it's being mirrored which doesn't matter if you mirror it back along the same axis.
But as soon as you mix vertical and horizontal mirroring, everything breaks.

Manually mirroring the image views via getChildAt(1).scaleY = -1f would probably be possible.
Nevertheless I think it would be best to keep track of these changes within the library.

I've hacked my way around the issue by stacking two flip views over one another and dynamically showing/hiding them.
One is used for vertical and the other one for horizontal flips.
This is dirty and I'm wondering, whether you've ever encountered this problem or use case.

NullPointerExcxeption on gestureDetector.onTouchEvent

Hi, i have just updated EasyFlipView in my application to new version 3.0.3

By click on ImageVew, that is in the EasyFlipView easyFlipView.addView(deckView) i immediatly have a NullPointerException:

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean androidx.core.view.GestureDetectorCompat.onTouchEvent(android.view.MotionEvent)' on a null object reference
2023-10-22 12:06:57.656 20805-20805 AndroidRuntime          com.app.demo             E  	at com.wajahatkarim3.easyflipview.EasyFlipView.dispatchTouchEvent(EasyFlipView.java:462)

I have cleaned up a job after updating to new EasyFlipView version.

my configuration of view:

EasyFlipView easyFlipView = new EasyFlipView(context);
easyFlipView.setToHorizontalType();
easyFlipView.setFlipTypeFromBack();
easyFlipView.setAutoFlipBackTime(5_000);

ImageView image = new ImageView(context);
...
easyFlipView.addView(image);

ImageView deckView = new ImageView(context);
...
easyFlipView.addView(deckView);

easyFlipView.setOnFlipListener(...);

layout.addView(easyFlipView, lp);

Flipping the layout manually

i want to do manual flip i mean card must follow the finger not automatically flip how can i do? did anyone do it?

Flip directions

How to set flip and back flip inverse?

click
left to right

click
right to left

How to flip inside listview?

Hello folks and Mr. Karim.

I am trying to do the easyflip manually, because I am using a List View, but with no success...
When I do the touch, the app closes...

Here is my code, if someone could help me I aprecciate:

`
public class Main5Activity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main5);

    //reads a txt file and create a list view with its content
    readTxt();


    //trying to make a easyflip manually, but I failed... When I click the item on list view, the app closes
    ListView list = (ListView) findViewById(R.id.list_cards);

    final EasyFlipView efView = (EasyFlipView) findViewById(R.id.cardflip);

    list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

            try {

                efView.flipTheView();

            }

            catch (Exception e) {

                Toast.makeText(getApplicationContext(), (CharSequence) e, Toast.LENGTH_LONG).show();


            }


        }
    });



public void readTxt () {


    File caminhoTxt = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/lookupgs1.txt");

    if (caminhoTxt.exists()) {

        try {

            String line;

            FileReader fileReader2 = new FileReader(caminhoTxt);
            BufferedReader buffer = new BufferedReader(fileReader2);
            CardAdapter adapter = new CardAdapter(this);


            while ((line = buffer.readLine()) != null) {

                String[] parametros = line.split(";");

                String codRFID = parametros[0];
                String desc = parametros[1];

                ListView lvCards = (ListView) findViewById(R.id.list_cards);

                lvCards.setAdapter(adapter);

                try {

                    if (desc.contains("Controlador")) {

                        adapter.add(new CardModel(R.drawable.quadro, desc, codRFID));

                    }

                    else if (desc.contains("Quadro")) {

                        adapter.add(new CardModel(R.drawable.quadro, desc, codRFID));

                    }

                    else if (desc.contains("Medicamentos")) {

                        adapter.add(new CardModel(R.drawable.med, desc, codRFID));

                    }

                    else if (desc.contains("Câmera de Validação Esteira")) {

                        adapter.add(new CardModel(R.drawable.quadro, desc, codRFID));

                    }

                    else if (desc.contains("Impressora")) {

                        adapter.add(new CardModel(R.drawable.printer01, desc, codRFID));

                    }

                    else {

                        adapter.add(new CardModel(R.drawable.cpx, desc, codRFID));

                    }

                }

                catch (Exception e) {

                    Toast.makeText(this, (CharSequence) e, Toast.LENGTH_LONG).show();
                }

            }


        }

        catch (Exception e) {

            Toast.makeText(this, (CharSequence) e, Toast.LENGTH_SHORT).show();

        }
    }

    else {

        Toast.makeText(this, "File \"lookupgs1.txt\" Not Founded!", Toast.LENGTH_SHORT).show();

    }
}

}
`

quick click

fast click on a bug ,recommend filtering out fast click

                                      -- English come from google translate.

NuGet

Hello,

how resolve this error ?

Package EasyFlipView 1.0.0 is not compatible with monoandroid81 (MonoAndroid,Version=v8.1). Package EasyFlipView 1.0.0 supports: net (.NETFramework,Version=v0.0)

regards

front views can be seen reversed for a short delay at the end of the animation

When I flip my component, at the end of the animation I can see through the back view for a short time. what I see is, for example, the text view of the front view reversed. It doesn't matter if I set a background to the view or not.

EDIT: I tested to put a very long animation time to see what happens.
It works well but at the end of the animation there is a flickering showing the front view flipped then the back view again (like if the back view disappeared for a short time)

Any clues?
Cheers!

反面放百度地图的问题

我正面放列表,反面放地图
列表切换到地图后,切换过程中可以看得到百度地图,但切换完成后,百度地图就消失了
再从地图界面切换到列表的时候,同样也是切换过程中可以看到百度地图
这个问题要从哪里解决呢?有提供下思路吧?

App crashes on flipTheView() on some devices

Although the library works fine on most devices, my app crashes when calling the flipTheView() method on some devices like Huawai P20 Pro, Xiaomi A2 Lite.
Does anyone have any idea what this might be and how to fix it?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.