- Vscode'a yazılan kodlar kopyalanır.
- MS Word açılarak yapıştırılır.
- MS Word'de Kaydet > Farklı Kaydet > Gözat'a tıklanır.
- Dosyanın kaydedileceği konuma gidilir. Kayıt türü kısmında "Web Sayfası, Filtre Uygulanmış (htm, html)" seçilir
- Çıkarn uyarı ekranında Evet'e tıklanıp kaydedilir.
- html dosyası Chrome'da açılır. Developer menu açılarak console sekmesine gelinir
- Wordpress_highlight_dom_duzeltici.js içerisindeki kodlar kopyalanıp, console'a yapıştırılır ve Enter'a basılarak çalıştırılır.
- Kodların çalışması sonucu HTML string üretilir. Bu string ifade wordpress sitesinde html kısmına yapıştırılır.
- Preview yaptığınızda HTML Kodu görüntülenir.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fontSizeState = atom({ | |
key: 'fontSizeState', | |
default: 14, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"contents":{"launch":{"version":"0.2.0","configurations":[{"type":"node","request":"launch","name":"Launch via NPM","runtimeExecutable":"npm","runtimeArgs":["run-script","debug"],"port":9229},{"type":"node","request":"attach","name":"Attach to Remote","address":"localhost","port":9229,"localRoot":"${workspaceFolder}","remoteRoot":"${workspaceFolder}/backend/dist/index.js"},{"type":"node","request":"launch","name":"Launch Program","program":"${workspaceFolder}/backend/src/config/socket.io.ts","outFiles":["${workspaceFolder}/**/*.js"]}]}},"overrides":[],"keys":["launch.version","launch.configurations"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable react-native/no-inline-styles */ | |
import React from 'react'; | |
import { | |
SafeAreaView, | |
StyleSheet, | |
StatusBar, | |
Animated, | |
Easing, | |
} from 'react-native'; | |
import Svg, {Circle} from 'react-native-svg'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable react-native/no-inline-styles */ | |
import React from 'react'; | |
import {SafeAreaView, StyleSheet, StatusBar} from 'react-native'; | |
import Svg, {Circle} from 'react-native-svg'; | |
const App = () => { | |
const viewBoxWidth = 42; | |
const viewBoxHeight = viewBoxWidth; | |
const viewBox = `0 0 ${viewBoxWidth} ${viewBoxHeight}`; | |
const centerX = viewBoxWidth / 2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState} from 'react'; | |
import {SafeAreaView, StyleSheet, View, Button} from 'react-native'; | |
import { | |
RTCView, | |
mediaDevices, | |
MediaStream, | |
MediaStreamConstraints, | |
RTCPeerConnection, | |
MediaStreamTrack, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState} from 'react'; | |
import {SafeAreaView, StyleSheet, View, Button} from 'react-native'; | |
import { | |
RTCView, | |
mediaDevices, | |
MediaStream, | |
MediaStreamConstraints, | |
RTCPeerConnection, | |
} from 'react-native-webrtc'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState} from 'react'; | |
import {SafeAreaView, StyleSheet, View, Button} from 'react-native'; | |
import { | |
RTCView, | |
mediaDevices, | |
MediaStream, | |
MediaStreamConstraints, | |
} from 'react-native-webrtc'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {useState, useEffect} from 'react'; | |
import { | |
StyleSheet, | |
SafeAreaView, | |
FlatList, | |
View, | |
Text, | |
KeyboardAvoidingView, | |
TextInput, | |
TouchableOpacity, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable prettier/prettier */ | |
import React, {useEffect, useState} from 'react'; | |
import { | |
SafeAreaView, | |
StyleSheet, | |
Text, | |
StatusBar, | |
View, | |
Image, | |
FlatList, |