Coder Social home page Coder Social logo

flexicontent's People

Watchers

 avatar  avatar

flexicontent's Issues

The modified date isn't displayed

The item always appears as "not modified" even if I set a version as current.
On the following screenshot you see that the version 5 is current and the
item appears as "not modified"
http://skitch.com/vistamedia/naejg/flexicontent-1.5-stable-administration

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 7:56

The first item sould be draft

The first item state should be DRAFT instead of UNPUBLISHED
http://skitch.com/vistamedia/naees/flexicontent-1.5-stable-administration

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 7:50

500 Error on Item edit after field delete

What steps will reproduce the problem?
1. In the Types Control Panel create new data type, "TestType" can be 
based on any base type
2. In the Fields Control Panel add two fields of FlexiContent 
Text, "TestField1" "TestField2", to the TestType (can be any other element 
as well)
3. In the Templates Control Panel create a new template, "TestTemplate", 
that uses the new fields in the Item Layout
4. In the Items Control Panel add a new item, "TestItem", of type TestType 
and Apply
5. Fill in the appropriate fields with some test data and Save new item
6. In the Fields Control Panel delete one of the new fields.
7. In the Items Control Panel Open the new TestItem for editing.

What is the expected output? What do you see instead?
Item opens but deleted fields are no longer displayed. 500 Server error.

What version of the product are you using? On what operating system?
FLEXIcontent 1.5.2 Stable (r180)
Windows XP (SP3)
IE8
Zend-Server-CE-4.0.6RC14-Windows_x86
Apache/2.2.14 (Win32) mod_ssl/2.2.14 OpenSSL/0.9.8k 
Joomla 1.5.15
PHP 5.2.11
MySQL 5.0.45-community-nt

Please provide any additional information below.
Fatal error: Cannot access empty property in C:\Program Files\Zend\Apache2
\htdocs\administrator\components\com_flexicontent\models\item.php on line 
164

Original issue reported on code.google.com by [email protected] on 10 Apr 2010 at 9:02

can't register

What steps will reproduce the problem?
1. I tried to register-rejected spamhaus
2. went to spamhaus says my domain and ip not listed
3. search for a way to contact you

What is the expected output? What do you see instead?
please register me user name dawemmy
send me the password  [email protected]

What version of the product are you using? On what operating system?


Please provide any additional information below.
how can I possibly use your component if I can't login and get help?

Original issue reported on code.google.com by [email protected] on 21 Mar 2010 at 9:42

HTTP Error 500 when opening an item in debug modus

What steps will reproduce the problem?
1. set "Debug System" to yes in global configuration
2. open an item WITHOUT an tag



What is the expected output? What do you see instead?
500 - An error has occurred!

JDatabaseMySQL::query: 1064 - You have an error in your SQL syntax; check 
the manual that corresponds to your MySQL server version for the right 
syntax to use near ') ORDER BY name ASC' at line 1 SQL=SELECT *,t.id as tid 
FROM jos_flexicontent_tags as t WHERE t.id IN () ORDER BY name ASC

Call stack
#   Function    Location
1   JAdministrator->dispatch()  
C:\IDE\xampp\htdocs\joomla\administrator\index.php:67
2   JComponentHelper->renderComponent() 
C:\IDE\xampp\htdocs\joomla\administrator\includes\application.php:136
3   require_once()  
C:\IDE\xampp\htdocs\joomla\libraries\joomla\application\component\helper.ph
p:162
4   JController->execute()  
C:\IDE\xampp\htdocs\joomla\administrator\components\com_flexicontent\admin.
flexicontent.php:63
5   FlexicontentControllerItems->edit() 
C:\IDE\xampp\htdocs\joomla\libraries\joomla\application\component\controlle
r.php:236
6   FlexicontentController->display()   
C:\IDE\xampp\htdocs\joomla\administrator\components\com_flexicontent\contro
llers\items.php:574
7   JController->display()  
C:\IDE\xampp\htdocs\joomla\administrator\components\com_flexicontent\contro
ller.php:55
8   FlexicontentViewItem->display() 
C:\IDE\xampp\htdocs\joomla\libraries\joomla\application\component\controlle
r.php:310
9   FlexicontentModelItem->getUsedtags()    
C:\IDE\xampp\htdocs\joomla\administrator\components\com_flexicontent\views\
item\view.html.php:109
10  JDatabaseMySQLi->loadObjectList()   
C:\IDE\xampp\htdocs\joomla\administrator\components\com_flexicontent\models
\item.php:949
11  JDatabaseMySQLi->query()    
C:\IDE\xampp\htdocs\joomla\libraries\joomla\database\database\mysqli.php:47
4
12  JError->raiseError()    
C:\IDE\xampp\htdocs\joomla\libraries\joomla\database\database\mysqli.php:24
7
13  JError->raise() 
C:\IDE\xampp\htdocs\joomla\libraries\joomla\error\error.php:171
14  JException->__construct()   
C:\IDE\xampp\htdocs\joomla\libraries\joomla\error\error.php:136



What version of the product are you using? On what operating system?
FLEXIcontent version 1.5.2 stable



Please provide any additional information below.
The error could be in function getUsedtags of file 
\administrator\components\com_flexicontent\models\item.php (line 949) 
because there is no check whether $A is empty

Original issue reported on code.google.com by [email protected] on 29 Mar 2010 at 10:33

FR: Add booleans to system plugin to disable redirects

During initial setup of Flexi, we often don't want the redirect from 
com_content to com_flexicontent to occur.  Two simple boolean params (one for 
front-end, one for admin-side) in the system plugin would resolve this.

Cheers!

Original issue reported on code.google.com by [email protected] on 10 Jun 2010 at 4:21

Code optimization

It is not a bug, it is a suggestion of code opimization

You can rewrite the getalphaindex() code to let mysql do the job for you:
(components/com_flexicontent/models/category.php)

 function getAlphaindex() {
        $user       = & JFactory::getUser();
        $gid        = (int) $user->get('aid');
        $lang       = JRequest::getWord('lang', '' );
        // Get the category parameters
        $cparams    = $this->_category->parameters;
        // show unauthorized items
        $show_noauth = $cparams->get('show_noauth', 0);

        // Filter the category view with the active active language
        $and = FLEXI_FISH ? ' AND ie.language LIKE ' . $this->_db->Quote( $lang .'%' ) : '';
        $and2 = $show_noauth ? '' : ' AND c.access <= '.$gid.' AND i.access <= '.$gid;


        $query='SELECT LOWER(SUBSTRING(i.title FROM 1 FOR 1)) AS alpha'
                . ' FROM #__content AS i'
                . ' LEFT JOIN #__flexicontent_items_ext AS ie ON i.id = ie.item_id'
                . ' LEFT JOIN #__flexicontent_cats_item_relations AS rel ON rel.itemid = i.id'
                . ' LEFT JOIN #__categories AS c ON c.id = '. $this->_id
                . ' WHERE rel.catid = '.$this->_id
                . $and
                . ' AND i.state IN (1, -5)'
                . ' AND i.sectionid = '.FLEXI_SECTION
                . $and2
                . ' GROUP BY alpha'
                . ' ORDER BY alpha ASC';
        ;
        $this->_db->setQuery($query);
        $alpha = $this->_db->loadResultArray();

        return $alpha;
    }



Original issue reported on code.google.com by [email protected] on 10 Jun 2010 at 4:53

Error "Copy failed" when installing

What steps will reproduce the problem?
1. Installing on Joomla 1.5 -> Joomla is installed via FTP (access for
joomla only to folders and files with chmod 777 

What is the expected output? What do you see instead?
Expected: no error. 
Instead: error Error "Copy failed" appears whenever I am in flexicontent
dashboard (Backend)


What version of the product are you using? On what operating system?
Flexicontent Version 1.0.4
Joomla 1.5.10 (also appeared on 1.5.15) -> installed via FTP
Apache / Linux


Please provide any additional information below.
The component works fine so far, I had the same issue with the beta5, but
it seems to have no influence. I would mainly like the error to disappear
not to confuse the client. 

I noticed the errors only on a live server, on my XAMP testserver (where
access rights don't seem to matter) it doesn't happen.

Is there any access rights on the server I have to change or is this just a
bug?

Original issue reported on code.google.com by [email protected] on 1 Apr 2010 at 9:15

Attachments:

Research found article which are not yet published in the frontend

What steps will reproduce the problem?
1. Creat an item which is published in the future (next week for exemple)
2. Open your web site in the front end and research this item
3. there is a 404 error because this article is not yet published.

What is the expected output? What do you see instead?
2 options :
- first just tell that this item will be published in few days. (a realy
great idea)
- second, reduce the reseach to the date.

What version of the product are you using? On what operating system?
- joomla1.5.17
- latest version of flexicontent

Please provide any additional information below.
No one moe. Thanks a lot for your job

Original issue reported on code.google.com by [email protected] on 19 May 2010 at 1:14

Tag cloud module is empty

What steps will reproduce the problem?
1. Install Flexitagcloud module and publish it
2. Configure the module and associate to some category
3. Publish some content with some tag

What is the expected output? What do you see instead?
I expect to some tags in the tag cloud module, but it's empty (no errors).

What version of the product are you using? On what operating system?
Joomla 1.5.15, FlexiContent 1.5.2, Tag Cloud 1.0.2, OS: Windows Server 2003

Original issue reported on code.google.com by [email protected] on 6 Apr 2010 at 10:45

com_search doesn't return any flexi's items

What steps will reproduce the problem?
1. Enabled and published mod_search (and published Flexi's Search plugin)
2. Go to frontend and do exact keyword search
3. Nothing is returned

What is the expected output? What do you see instead?
Instead of having items with any/exact/all keywords from Flexi, nothing is
found.

What version of the product are you using? On what operating system?
Joomla 1.5.15, php 5.2.6, mysql 5.0.41. Mac OS X Leopard. 

Please provide any additional information below.

The site is used together with k2 and JReviews. Trying to disabled
everything else and only enabled Flexi doesn't help. Having Flexi as the
highest order also doesn't help. 

One thing that I noticed that the com_search works with Prothemer's doc
site: http://www.prothemer.com/morph/livedocs/ but I have no clue how they
fix it.

Please advise and thank you in advance.

Original issue reported on code.google.com by [email protected] on 17 Mar 2010 at 6:31

Attachments:

Suppression d'un champ ne supprime pas les versions

J'ai créé un champ que j'ai utilisé dans un article. Plusieurs 
modifications ont été effectuées sur cet article avec différentes versions 
qui ont été créées.

En supprimant le champ en question, lorsque je vais sur l'édition de cet 
article, j'ai un message d'erreur au niveau du fichier model.php.

La raison de cette erreur vient que la suppression du champ n'a pas effacé 
les données dans la table "jos_flexicontent_items_versions".

La version de Flexicontent est la version 1.5.2 Stable

N'hésitez pas à me contacter, j'arriverai à reproduire le bug en question.


Original issue reported on code.google.com by Matthieu.26 on 6 May 2010 at 3:47

Bug Copy function with versioning is actived

The description does not appear when we copy a content. We must close and 
reopen the content.

Original issue reported on code.google.com by Matthieu.26 on 19 Jun 2010 at 9:40

The end publishing date has a bad value

The end publishing date take the value of the start publishing date when
creating a new item.
That means new items doesn't appear on the website even if the version is
approved
Now: http://skitch.com/vistamedia/nshfh/your-version
It sould be: http://skitch.com/vistamedia/nshgk/should-be

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 7:47

Can't post content without description in front end

What steps will reproduce the problem?
1. hide main text for a type 
2. try to add data (now the description field disappear)
3. the page doesn't show any error, a blank form is shown

What is the expected output? What do you see instead?
- An error or success message, and the insertion of the content
- instead, no message, no data inserted

What version of the product are you using? On what operating system?
v 1.5.3 with patch r344 for hidding description.

Please provide any additional information below.
There's a routing issue, the save method of the controller is not called.
A brief js error is shown (in firebug) before sumitting the form, relative to a 
call to get the description (which is not present!)

I'm looking for a correction, but have to dive a bit into your project code 
before.

Original issue reported on code.google.com by [email protected] on 28 Jun 2010 at 12:51

getTypeparams does not work for

What steps will reproduce the problem?
1. Create a new type
2. set some parameters (like hide html editor)
3. go to the front end and create a new content of this type
(/index.php?option=com_flexicontent&view=items&layout=form&typeid=2&Itemid=2) 
for exemple

What is the expected output? What do you see instead?
html editor should not be seen, but it is

What version of the product are you using? On what operating system?
Downloaded today.
com_flexicontent_153_stable.tar.gz
with joomla 1.5.18 on Debian with mysql 5.1.47-1

Please provide any additional information below.

in com_flexicontent/models/items.php FlexicontentModelItems->getTypeParam()
does not return data.
The query does not return any result, because there is no item id, even if 
there's a type.
By changing the method like this :
http://pastebin.com/ayRFSRFH
This works.
Perhaps it could create some side effects, I'm totally new to flexicontent 
architecture.
Hope it will help.

Original issue reported on code.google.com by [email protected] on 27 Jun 2010 at 9:54

file manager out on r324

hello on r324
i have this error when i load filemanager
Catchable fatal error: Object of class stdClass could not be converted to 
string in 
/web/lebijou/www/administrator/components/com_flexicontent/models/filemanager.ph
p  on line 185
Thanks for your works

Original issue reported on code.google.com by [email protected] on 22 Jun 2010 at 10:21

Joomfish & single item menu item doesn't work

What steps will reproduce the problem?
1.copy item into different language & edit it 
2.create single item -menu binding
3.switch into second language

What is the expected output? What do you see instead?
I expect that content switches into second language. However, nothing happens.

What version of the product are you using? On what operating system?

Latest version & LinuxOS

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 8 Apr 2010 at 8:34

copy / move function doesn't work without filtering items with data field

What steps will reproduce the problem?
1. Select some items from item view w/o filtering
2. Click copy / move function
3.

What is the expected output? What do you see instead?

You can notice that left side of the view is empty although it should list 
content to be 
moved/copied

What version of the product are you using? On what operating system?

com_flexicontent_152_stable_r185.tar.gz,  LAMP platform

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 7 Apr 2010 at 12:21

  • Merged into: #39

Warning about restricted fields

Hi Emmanuel, great work!

A minor problem I had today: fields with restricted access are simply not
shown to unregistered users and because the fields are filtered already by
the query a template has no chance to warn about missing downloads and so on.

To solve the problem I wrote a simple field-plugin which shows a warning if
the item has restricted fields and the user has insufficient rights.

Hope it can be useful to others.

Original issue reported on code.google.com by [email protected] on 18 Mar 2010 at 2:57

Attachments:

Creation Date gets changed to today's date when an Item is edited in the frontend

What steps will reproduce the problem?
1. Edit an article in the frontend (even clicking on Edit and then Saving with 
no actual change will work)
2. Read the article's creation date

What is the expected output? What do you see instead?
Both the creation date and the last revision date are set to today's date, even 
though only the latter should be edited

What version of the product are you using? On what operating system?
I'm using FLEXIcontent r316

Please provide any additional information below.
Only happens in the frontend - the backend works fine

Original issue reported on code.google.com by [email protected] on 21 Jun 2010 at 4:49

plugin is charging in category template

hello
i didn't understand why a plugin is charging in category view but the field
how the plugin is activate isn't show in category view ...
in my exemple
http://www.maia31.gouv.fr/newmaia/index ... &Itemid=40
this page charging a lot of googlemap request but the map field isn't
activate in this view ...
do you have an idea for this ?
Thanks


Original issue reported on code.google.com by [email protected] on 4 May 2010 at 6:57

SQL error with flexi access

J'ai une erreur 500 concernant une requête SQL de FLEXIaccess version 1.0 
beta 2 (build 67)

Cette erreur ne s'affiche que parce que j'ai le debug de Joomla à ON.

La requête est

SQL=SELECT id FROM jos_flexiaccess_acl WHERE acosection = 
'com_flexicontent' AND aco = 'read' AND arosection = 'users' AND aro IN 
( 0 ) AND axosection = '' AND axo = 


La fonction appelée est:
FAccess->checkAllComponentAccess() ligne 1113 

Le fichier est
/..../plugins/system/flexiaccess.php 


J'ai résolu le problème en testant la variable $axo_value avant de faire 
la requête.

le code:

function checkAllComponentAccess($aco_section_value, $aco_value, 
$aro_section_value, $aro_value, $axo_section_value='', $axo_value='') {
        $db =& JFactory::getDBO();
        if ($axo_value)  {
            $query    = 'SELECT id FROM #__flexiaccess_acl'
                    . ' WHERE acosection = ' . $db->Quote
($aco_section_value)
                    . ' AND aco = ' . $db->Quote($aco_value)
                    . ' AND arosection = ' . $db->Quote($aro_section_value)
                    . ' AND aro IN ( ' . $aro_value . ' )'
                    . ' AND axosection = ' . $db->Quote($axo_section_value)
                    . ' AND axo = ' . $axo_value
            ;
            $db->setQuery( $query );
            $gmacl = $db->loadObjectList();
            $nbacl = count( $gmacl );
            if ( !$nbacl ) {
                $acl_result = 0;
            }else {
                $acl_result = 1;
            }
            return $acl_result;
        }
        else return 0;
    }

Original issue reported on code.google.com by [email protected] on 27 Mar 2010 at 8:14

Frontend Edit still changes the creation date

What steps will reproduce the problem?
1. Edit an article in the frontend
2. The date will be moved to two hours earlier than the creation date

Example: The creation date was 16:32, I edit the article and it gets 14:32. 
This happens every time I edit the article

What is the expected output? What do you see instead?

The date should stay the same :3

What version of the product are you using? On what operating system?

r336 (SVN)

Please provide any additional information below.

In my Joomla Configuration I set the date to GMT +2

Original issue reported on code.google.com by [email protected] on 25 Jun 2010 at 12:51

The Read-more text dissapears if you edit an articel in the fronte-end

What steps will reproduce the problem?
1. Publish an article on the front-page
2. Edit it in the front-end


What is the expected output? What do you see instead?
I should see the read-more sign but the read more sign and the text after it in 
the editor dissapears and if i save the article the read more text just 
vanishes.

What version of the product are you using? On what operating system?
Flexicontent 1.53 Stable on Joomla 1.5.18


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 24 Jun 2010 at 9:29

Frontent submit not compatible with Joomfish :(

Frontend submit edit doesn't function with JoomFish activated. The DB 
abstraction layer intercept the query to see if it must populate the content 
table or the translation table.

Fatal error: Call to undefined method stdClass::get() in 
/Applications/MAMP/htdocs/jandbeyond/administrator/components/com_joomfish/model
s/ContentObject.php on line 295

I hope Suryia will find a solution :)))

Original issue reported on code.google.com by [email protected] on 12 Jun 2010 at 10:47

Added system to check current version

I would like to add a system to check current version to prevent the new 
release of the webmaster.

Original issue reported on code.google.com by Matthieu.26 on 23 Jun 2010 at 8:36

hide module display on item.php

i create a module (presentation in bottom) on my first page (only for this)
my first page is a front-page template with flexicontent (blog no change)
but when i select my item the module is displaying ....
do you have an idea ?
Thanks

Original issue reported on code.google.com by [email protected] on 12 Jun 2010 at 3:11

The current version can be deleted

When you choose a small value (eg 5) in the "version kept" parameter the
current version can be deleted when saving many new versions without
approving them.
You can see on this screenshot that there no current version anymore :-)
http://skitch.com/vistamedia/naej9/flexicontent-1.5-stable-administration

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 8:06

fatal error after upgrade form 152_stable_r185 to 153_r316 when display item

What steps will reproduce the problem?
1. having a website that work fine with flexicontent 152_stable_r185, 
2. just update to 153_r316.
3. get the probleme when display a item

What is the expected output? What do you see instead?

"Catchable fatal error: Object of class stdClass could not be converted to 
string in 
/home4/khasnico/public_html/cmsultra/components/com_flexicontent/views/items/vie
w.html.php  on line 118"

What version of the product are you using? On what operating system?

update to com_flexicontent_153_r316, from com_flexicontent_152_stable_r185.

Please provide any additional information below.

after downgrade to 152_stable_r185 all are fine
thank you


Original issue reported on code.google.com by [email protected] on 20 Jun 2010 at 3:04

Diff engine not working properly

The diff engine doesn't work properly especially when starting with
imported contents. It mix up the "view mode" and the "code mode" and gives
unexpected results.
See the following screen for further information.
http://skitch.com/vistamedia/nshsf/fa-didier-administration

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 8:11

Unable to Delete tag from Edit Item Screen in IE8/IE7/Opera 10

What steps will reproduce the problem?
1. Open a FLEXIcontent item in the adminstration area in IE
2. Add a new tag using the Add a new tag field
3. Click the delete tag icon of the newly created tag

What is the expected output? What do you see instead?
Tag should be deleted. Javascript error "Not implemented".
Note: Delete works fine in Mozilla/Firefox 3.5.x/Safari

What version of the product are you using? On what operating system?
FLEXIcontent 1.5.2 r166
Windows XP 5.1.2600 (SP3)
Internet Explorer 8 and 7
Joomla 1.5.15

Please provide any additional information below.
Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; 
Trident/4.0; .NET CLR 3.0.04506.30; InfoPath.2; .NET CLR 2.0.50727; .NET 
CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 
3.5.30729; .NET CLR 1.1.4322)
Timestamp: Fri, 2 Apr 2010 01:31:33 UTC

Message: Not implemented

Line: 879
Char: 2
Code: 0
URI: http://localhost/administrator/index.php?
option=com_flexicontent&controller=items&task=edit&cid[]=223


Original issue reported on code.google.com by [email protected] on 2 Apr 2010 at 1:54

Attachments:

Status icon in frontend

in the frontend, the staus icon does not visible. Text description but not
image 

i use stable 1.5.2 version but this issues since 1.5 beta 5

Original issue reported on code.google.com by [email protected] on 17 Mar 2010 at 10:47

editing front-end ?? 1.5.3svnr309

hello i do some testing :
-created a new items it's great (on my site some field are too large but it's 
not really a problem)
but i didn't have any icon to edit a item ...
i verify on flexiaccess (1.0.5) and authorization is good.
It's possible ?
Thanks for your work 

Original issue reported on code.google.com by [email protected] on 18 Jun 2010 at 3:50

Adding new tag with safari (Mac OS)

The autocomplete doesn't work properly with Safari on MacOS.
When pressing the "RETURN" key it redirects you to another article in
editing mode.
But it saves the tag in the Tags view.

Original issue reported on code.google.com by [email protected] on 26 Feb 2010 at 8:14

Error 500 when no tags in a content item

Hi,

A SQL error happens when no tag are associated with the content, and the
joomla configuration parameter Debug System is ON.

To solve that problem, 
add in the file
administrator/componnents/com_flexi_content/models/item.php

in function getUsedtags($A) (line 942) the test if $A is not empty

code 
function getUsedtags($A)
   {
            if ($A){
      $query    = 'SELECT *,t.id as tid FROM #__flexicontent_tags as t '
            . ' WHERE t.id IN (' . implode(',', $A).')'
            . ' ORDER BY name ASC'
            ;
      $this->_db->setQuery($query);
      $used = $this->_db->loadObjectList();
            }
      return $used;
   }

Original issue reported on code.google.com by [email protected] on 27 Mar 2010 at 8:20

FLEXIcontent out on r324

What steps will reproduce the problem?
1. login to administrator / Components / FLEXIcontent

What is the expected output? What do you see instead?
I should land on the FLEXIcontent dashboard, I see this message instead :

Fatal error: Cannot redeclare class flexicontent_html in 
/home/s/p/sportstoursbeta/public_html/components/com_flexicontent/classes/flexic
ontent.helper.php on line 1566


What version of the product are you using? On what operating system?
com_flexicontent_153_r330 from r324 following all rvision since for test

Please provide any additional information below.
If I revert the 
public_html/components/com_flexicontent/classes/flexicontent.helper.php kindly 
revised by enjoyman in r327 it works fine

Original issue reported on code.google.com by [email protected] on 22 Jun 2010 at 10:11

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.