Details
-
AboutI am the one who knocks
-
Skillsc++
Joined devRant on 6/26/2017
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
-
The videos are created using python. Need some suggestions and improvements to improve its quality.
https://youtube.com/channel/...3 -
NPM version : 10
React-Native Library : react-native-get-music-files
Installation :
npm i --save react-native-get-music-files
rnpm link
Things I Have Already Tried :
rnpm link react-native-get-music-files
react-native link
npm install
react-native run-android
REINSTALLING
MAKING A NEW PROJECT
Details :
Its documentation says add import com.reactlibrary.RNReatNativeGetMusicFilesPackage; but when automatically linking , it adds com.cinder72.musicfiles.RNReactNativeGetMusicFilesPackage;
Manually it is showing com.reactlibrary.RNReatN... is not found.
Automatically everything is working fine.
Error :
In the react-native-get-music-files/index.js
import { NativeModules, Platform } from 'react-native';
const { RNReactNativeGetMusicFiles } = NativeModules;
const MusicFiles = {
getAll(options){
return new Promise((resolve, reject) => {
if(Platform.OS === "android"){
RNReactNativeGetMusicFiles.getAll(options,(tracks) => {
resolve(tracks);
},(error) => {
resolve(error);
});
}else{
RNReactNativeGetMusicFiles.getAll(options, (tracks) => {
if(tracks.length > 0){
resolve(tracks);
}else{
resolve("Error, you don't have any tracks");
}
});
}
});
}
}
export default MusicFiles;
It says RNReactNativeGetMusic files is undefined.
I tried console log NATIVEMODULES and it shows nothing as RNReactNativeGetMusic or anything similar.2 -
Try indie game for pc. Download link is in the description of the video.
https://youtu.be/NqquNpDMs8c
This game is created for #GithubGameOff
This is 2D game.4 -
I am using materilize with react. Having one problem that when i goto to a navlink lets say to 1 and then goto navlink 2 and then come back to one i need to re run the jquery or Javascript so how can i do that?6
-
When kids watch tutorials on youtube and think they wanna become black hat hackers and tell everyone that thay are black hat hackers 😂😂
Source : reddit6 -
Any one good at coding CTF maths register here and give me your mail to add you in my team.
http://codefest.tech/register/r/... -
I made my first project in python by web scraping and then parsing to the list and then typing it. It gives a speed of 120 WPM.
Try my python project:-
https://github.com/ShivamRawat0l/...
Thanks for spending the time to watch my repo.
Please contribute to the project.1 -
I am going for a new Linux distro which supports Optimus technology laptops , have a big community to support , stable .
P.S used kali Linux and it broke when installed wine and then tring to make it work
Used Ubuntu and it broke when install some kali Linux tools and it broke because of some dependacies and then python stopped working
..............5