How to overwrite .php file of lib directory?How do I get a response from REST API in JSON format in Magento 2?How to create json file in magento 2Magento 2.3 custom email attachment not workingMagento 2.3, built in page_cache asked to be refreshed manually, can I automate this?External Request - Invalid Form Key Magento 2.3Magento 2.3 checkout show company name after radio selecthow to set up ubuntu server different fresh magento install?Missing file from static Magento 2Magento 2.3, patch PRODSECBUG-2198-2.3-CE-2019“PasswordHash” does not have accessor method “getPasswordHash” in class “MagentoCustomerApiDataCustomerInterface”

Are there existing rules/lore for MTG planeswalkers?

Co-worker works way more than he should

Why doesn't the university give past final exams' answers?

What helicopter has the most rotor blades?

TV series episode where humans nuke aliens before decrypting their message that states they come in peace

How would you suggest I follow up with coworkers about our deadline that's today?

Retract an already submitted Recommendation Letter (written for an undergrad student)

Writing a T-SQL stored procedure to receive 4 numbers and insert them into a table

When does Bran Stark remember Jamie pushing him?

Variable does not exist: sObjectType (Task.sObjectType)

How was Lagrange appointed professor of mathematics so early?

What is /etc/mtab in Linux?

What is a 'Key' in computer science?

Has a Nobel Peace laureate ever been accused of war crimes?

Simulate round-robin tournament draw

/bin/ls sorts differently than just ls

Is there a possibility to generate a list dynamically in Latex?

`FindRoot [ ]`::jsing: Encountered a singular Jacobian at a point...WHY

Is there an efficient way for synchronising audio events real-time with LEDs using an MCU?

Specify the range of GridLines

Arriving in Atlanta (after US Preclearance in Dublin). Will I go through TSA security in Atlanta to transfer to a connecting flight?

Why is arima in R one time step off?

How did Elite on the NES work?

What do you call an IPA symbol that lacks a name (e.g. ɲ)?



How to overwrite .php file of lib directory?


How do I get a response from REST API in JSON format in Magento 2?How to create json file in magento 2Magento 2.3 custom email attachment not workingMagento 2.3, built in page_cache asked to be refreshed manually, can I automate this?External Request - Invalid Form Key Magento 2.3Magento 2.3 checkout show company name after radio selecthow to set up ubuntu server different fresh magento install?Missing file from static Magento 2Magento 2.3, patch PRODSECBUG-2198-2.3-CE-2019“PasswordHash” does not have accessor method “getPasswordHash” in class “MagentoCustomerApiDataCustomerInterface”






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















Any one tell me how i can overwrite this file in magento 2.3



Path:




Magento2libinternalMagentoFrameworkWebapiRestResponseRendererJson.php










share
























  • which method you want to override?

    – Amit Bera
    Apr 17 at 7:23

















2















Any one tell me how i can overwrite this file in magento 2.3



Path:




Magento2libinternalMagentoFrameworkWebapiRestResponseRendererJson.php










share
























  • which method you want to override?

    – Amit Bera
    Apr 17 at 7:23













2












2








2


1






Any one tell me how i can overwrite this file in magento 2.3



Path:




Magento2libinternalMagentoFrameworkWebapiRestResponseRendererJson.php










share
















Any one tell me how i can overwrite this file in magento 2.3



Path:




Magento2libinternalMagentoFrameworkWebapiRestResponseRendererJson.php








magento2.3 json





share














share












share



share








edited Apr 17 at 6:35









Rakesh Donga

2,681317




2,681317










asked Apr 17 at 6:32









Vishal BansalVishal Bansal

188




188












  • which method you want to override?

    – Amit Bera
    Apr 17 at 7:23

















  • which method you want to override?

    – Amit Bera
    Apr 17 at 7:23
















which method you want to override?

– Amit Bera
Apr 17 at 7:23





which method you want to override?

– Amit Bera
Apr 17 at 7:23










2 Answers
2






active

oldest

votes


















2














Just Create di.xml under app/code/vendor/Module/etc and put below code



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="VendorModuleWebapiRestResponseRendererJson" />
</config>




share

























  • Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

    – Vishal Bansal
    Apr 17 at 6:55






  • 1





    you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

    – Ansar Husain
    Apr 17 at 7:03











  • I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

    – Vishal Bansal
    Apr 17 at 7:28












  • can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

    – Ansar Husain
    Apr 17 at 7:37











  • Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

    – Vishal Bansal
    Apr 17 at 8:41


















0














Find below the code which is working just need to put file name no need of extension of file.







share























  • <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

    – Vishal Bansal
    Apr 17 at 9:21


















2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Just Create di.xml under app/code/vendor/Module/etc and put below code



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="VendorModuleWebapiRestResponseRendererJson" />
</config>




share

























  • Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

    – Vishal Bansal
    Apr 17 at 6:55






  • 1





    you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

    – Ansar Husain
    Apr 17 at 7:03











  • I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

    – Vishal Bansal
    Apr 17 at 7:28












  • can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

    – Ansar Husain
    Apr 17 at 7:37











  • Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

    – Vishal Bansal
    Apr 17 at 8:41















2














Just Create di.xml under app/code/vendor/Module/etc and put below code



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="VendorModuleWebapiRestResponseRendererJson" />
</config>




share

























  • Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

    – Vishal Bansal
    Apr 17 at 6:55






  • 1





    you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

    – Ansar Husain
    Apr 17 at 7:03











  • I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

    – Vishal Bansal
    Apr 17 at 7:28












  • can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

    – Ansar Husain
    Apr 17 at 7:37











  • Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

    – Vishal Bansal
    Apr 17 at 8:41













2












2








2







Just Create di.xml under app/code/vendor/Module/etc and put below code



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="VendorModuleWebapiRestResponseRendererJson" />
</config>




share















Just Create di.xml under app/code/vendor/Module/etc and put below code



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="VendorModuleWebapiRestResponseRendererJson" />
</config>





share













share


share








edited Apr 17 at 9:12

























answered Apr 17 at 6:36









Ansar HusainAnsar Husain

1,763218




1,763218












  • Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

    – Vishal Bansal
    Apr 17 at 6:55






  • 1





    you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

    – Ansar Husain
    Apr 17 at 7:03











  • I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

    – Vishal Bansal
    Apr 17 at 7:28












  • can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

    – Ansar Husain
    Apr 17 at 7:37











  • Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

    – Vishal Bansal
    Apr 17 at 8:41

















  • Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

    – Vishal Bansal
    Apr 17 at 6:55






  • 1





    you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

    – Ansar Husain
    Apr 17 at 7:03











  • I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

    – Vishal Bansal
    Apr 17 at 7:28












  • can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

    – Ansar Husain
    Apr 17 at 7:37











  • Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

    – Vishal Bansal
    Apr 17 at 8:41
















Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

– Vishal Bansal
Apr 17 at 6:55





Hi Ansar, in magento 2.3 folder structure are differ we can not crate any new folder/file directly in vendor so can you please suggest solution for Magento 2.3 version?

– Vishal Bansal
Apr 17 at 6:55




1




1





you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

– Ansar Husain
Apr 17 at 7:03





you have no need to create directory in vendor , you need to create a custom module in app/code directory i just give temp name of module VendorModule you need to put your name on that

– Ansar Husain
Apr 17 at 7:03













I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

– Vishal Bansal
Apr 17 at 7:28






I try this as well find below my code: di.xml <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config> but not working!

– Vishal Bansal
Apr 17 at 7:28














can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

– Ansar Husain
Apr 17 at 7:37





can you use this xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd" instead of xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/ObjectManager/etc/config.xsd"

– Ansar Husain
Apr 17 at 7:37













Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

– Vishal Bansal
Apr 17 at 8:41





Not Working : <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRenderer" type="EvolveApirendererWebapiRestResponseRenderer" /> </config>

– Vishal Bansal
Apr 17 at 8:41













0














Find below the code which is working just need to put file name no need of extension of file.







share























  • <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

    – Vishal Bansal
    Apr 17 at 9:21















0














Find below the code which is working just need to put file name no need of extension of file.







share























  • <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

    – Vishal Bansal
    Apr 17 at 9:21













0












0








0







Find below the code which is working just need to put file name no need of extension of file.







share













Find below the code which is working just need to put file name no need of extension of file.








share











share


share










answered Apr 17 at 9:20









Vishal BansalVishal Bansal

188




188












  • <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

    – Vishal Bansal
    Apr 17 at 9:21

















  • <?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

    – Vishal Bansal
    Apr 17 at 9:21
















<?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

– Vishal Bansal
Apr 17 at 9:21





<?xml version="1.0"?> <config xmlns:xsi="w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoFrameworkWebapiRestResponseRendererJson" type="EvolveApirendererWebapiRestResponseRendererJson" /> </config>

– Vishal Bansal
Apr 17 at 9:21



Popular posts from this blog

Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020