Sunday 2 October 2011

Algorithmic symphonies from one line of code -- how and why?

Lately, there has been a lot of experimentation with very short programs that synthesize something that sounds like music. I now want to share some information and thoughts about these experiments.

First, some background. On 2011-09-26, I released the following video on Youtube, presenting seven programs and their musical output:


This video gathered a lot of interest, inspiring many programmers to experiment on their own and share their findings. This was further boosted by Bemmu's on-line Javascript utility that made it easy for anyone (even non-programmers, I guess) to jump in the bandwagon. In just a couple of days, people had found so many new formulas that I just had to release another video to show them off.


Edit 2011-10-10: note that there's now a third video as well! http://www.youtube.com/watch?v=tCRPUv8V22o

It all started a couple of months ago, when I encountered a 23-byte C-64 demo, Wallflower by 4mat of Ate Bit, that was like nothing I had ever seen on that size class on any platform. Glitchy, yes, but it had a musical structure that vastly outgrew its size. I started to experiment on my own and came up with a 16-byte VIC-20 program whose musical output totally blew my mind. My earlier blog post, "The 16-byte frontier", reports these findings and speculates why they work.

Some time later, I resumed the experimentation with a slightly more scientific mindset. In order to better understand what was going on, I needed a simpler and "purer" environment. Something that lacked the arbitrary quirks and hidden complexities of 8-bit soundchips and processors. I chose to experiment with short C programs that dump raw PCM audio data. I had written tiny "/dev/dsp softsynths" before, and I had even had one in my email/usenet signature in the late 1990s. However, the programs I would now be experimenting with would be shorter and less planned than my previous ones.

I chose to replicate the essentials of my earlier 8-bit experiments: a wave generator whose pitch is controlled by a function consisting of shifts and logical operators. The simplest waveform for /dev/dsp programs is sawtooth. A simple for(;;)putchar(t++) generates a sawtooth wave with a cycle length of 256 bytes, resulting in a frequency of 31.25 Hz when using the the default sample rate of 8000 Hz. The pitch can be changed with multiplication. t++*2 is an octave higher, t++*3 goes up by 7 semitones from there, t++*(t>>8) produces a rising sound. After a couple of trials, I came up with something that I wanted to share on an IRC channel:

main(t){for(t=0;;t++)putchar(t*(((t>>12)|(t>>8))&(63&(t>>4))));}

In just over an hour, Visy and Tejeez had contributed six more programs on the channel, mostly varying the constants and changing some parts of the function. On the following day, Visy shared our discoveries on Google+. I reshared them. A surprising flood of interested comments came up. Some people wanted to hear an MP3 rendering, so I produced one. All these reactions eventually led me to release the MP3 rendering on Youtube with some accompanying text screens. (In case you are wondering, I generated the screens with an old piece of code that simulates a non-existing text mode device, so it's just as "fakebit" as the sounds are).

When the first video was released, I was still unsure whether it would be possible for one line of C code to reach the sophistication of the earlier 8-bit experiments. Simultaneities, percussions, where are they? It would also have been great to find nice basslines and progressions as well, as those would be useful for tiny demoscene productions.

At some point of time, some people noticed that by getting rid of the t* part altogether and just applying logical operators on shifted time values one could get percussion patterns as well as some harmonies. Even a formula as simple as t&t>>8, an aural corollary of "munching squares", has interesting harmonic properties. Some small features can be made loud by adding a constant to the output. A simple logical operator is enough for combining two good-sounding formulas together (often with interesting artifacts that add to the richness of the sound). All this provided material for the "second iteration" video.

If the experimentation continues at this pace, it won't take many weeks until we have found the grail: a very short program, maybe even shorter than a Spotify link, that synthesizes all the elements commonly associated with a pop song: rhythm, melody, bassline, harmonic progression, macrostructure. Perhaps even something that sounds a little bit like vocals? We'll see.

Hasn't this been done before?

We've had the technology for all this for decades. People have been building musical circuits that operate on digital logic, creating short pieces of software that output music, experimenting with chaotic audiovisual programs and trying out various algorithms for musical composition. Mathematical theory of music has a history of over two millennia. Based on this, I find it quite mind-boggling that I have never before encountered anything similar to our discoveries despite my very long interest in computing and algorithmic sound synthesis. I've made some Google Scholar searches for related papers but haven't find anything. Still, I'm quite sure that at many individuals have come up with these formulas before, but, for some reason, their discoveries remained in obscurity.

Maybe it's just about technological mismatch: to builders of digital musical circuits, things like LFSRs may have been more appealing than very wide sequential counters. In the early days of the microcomputer, there was already enough RAM available to hold some musical structure, so there was never a real urge to simulate it with simple logic. Or maybe it's about the problems of an avant-garde mindset: if you're someone who likes to experiment with random circuit configurations or strange bit-shifting formulas, you're likely someone who has learned to appreciate the glitch esthetics and never really wants to go far beyond that.

Demoscene is in a special position here, as technological mismatch is irrelevant there. In the era of gigabytes and terabytes, demoscene coders are exploring the potential of ever shorter program sizes. And despite this, the sense of esthetics is more traditional than with circuit-benders and avant-garde artists. The hack value of a tiny softsynth depends on how much its output resembles "real, big music" such as Italo disco.

The softsynths used in the 4-kilobyte size class are still quite engineered. They often use tight code to simulate the construction of an analog synthesizer controlled by a stored sequence of musical events. However, as 256 bytes is becoming the new 4K, there has been ever more need to play decent music in the 256-byte size class. It is still possible to follow the constructivist approach in this size class -- for example, I've coded some simple 128-byte players for the VIC-20 when I had very little memory left. However, since the recent findings suggest that an approach with a lot of random experimentation may give better results than deterministic hacking, people have been competing in finding more and more impressive musical formulas. Perhaps all this was something that just had to come out of the demoscene and nowhere else.

Something I particularly like in this "movement" is its immediate, hands-on collaborative nature, with people sharing the source code of their findings and basing their own experimentation on other people's efforts. Anyone can participate in it and discover new, mind-boggling stuff, even with very little programming expertise. I don't know how long this exploration phase is going to last, but things like this might be useful for a "Pan-Hacker movement" that advocates hands-on hard-core hacking to greater masses. I definitely want to see more projects like this.

How profound is this?

Apart from some deterministic efforts that quickly bloat the code up to hundreds of source-code characters, the exploration process so far has been mostly trial-and-error. Some trial-and-error experimenters, however, seem to have been gradually developing an intuitive sense of what kind of formulas can serve as ingredients for something greater. Perhaps, at some time in the future, someone will release some enlightening mathematical and music-theoretical analysis that will explain why and how our algorithms work.

It already seems apparent, however, that stuff like this stuff works in contexts far beyond PCM audio. The earlier 8-bit experiments, such as the C-64 Wallflower, quite blindly write values to sound and video chip registers and still manage to produce interesting output. Media artist Kyle McDonald has rendered the first bunch of sounds into monochrome bitmaps that show an interesting, "glitchy" structure. Usually, music looks quite bad when rendered as bitmaps -- and this applies even to small chiptunes that sound a lot like our experiments, so it was interesting to notice the visual potential as well.


I envision that, in the context of generative audiovisual works, simple bitwise formulas could generate source data not only for the musical output but also drive various visual parameters as a function of time. This would make it possible, for example, for a 256-byte demoscene production to have an interesting and varying audiovisual structure with a strong, inherent synchronization between the effects and the music. As the formulas we've been experimenting with can produce both microstructure and macrostructure, we might assume that they can be used to drive low-level and high-level parameters equally well. From wave amplitudes and pixel colors to layer selection, camera paths, and 3D scene construction. But so far, this is mere speculation, until someone extends the experimentation to these parameters.

I can't really tell if there's anything very profound in this stuff -- after all, we already have fractals and chaos theory. But at least it's great for the kind of art I'm involved with, and that's what matters to me. I'll probably be exploring and embracing the audiovisual potential for some time, and you can expect me to blog about it as well.

Edit 2011-10-29: There's now a more detailed analysis available of some formulas and techniques.

837 comments:

«Oldest   ‹Older   201 – 400 of 837   Newer›   Newest»
Riya Raj said...

Blog is really great!!! Thanks for the sharing…
Angularjs Training in Chennai
Angularjs Training in Bangalore
Angularjs course in Chennai
Angularjs Training Institute in Bangalore

sathyaramesh said...

Thanks for splitting your comprehension with us. It’s really useful to me & I hope it helps the people who in need of this vital information.
Software Testing Training in Chennai | Software Testing Courses in Chennai
Software testing course in coimbatore | software testing training in coimbatore
software testing training in bangalore | software testing course in bangalore
software testing training in madurai | software testing course in madurai

Unknown said...

feeling so good to read your information's in the blog.
thanks for sharing your ideas with us and add more info.
Cloud computing courses in Bangalore
Cloud Computing Training in Anna Nagar
Cloud Computing Training in T nagar
Cloud Computing Training in OMR

sathyaramesh said...

Superb. I really enjoyed very much with this article here. Really it is an amazing article I had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article. thank you for sharing such a great blog with us. expecting for yours.
Blue prism training in bangalore
Blue prism training bangalore
Blue prism classes in bangalore
Blue Prism Training Centers in Bangalore
Blue Prism Institute in Bangalore

Ananth Academy said...

nice post...
it course in chennai
it training course in chennai
c c++ training in chennai
best c c++ training institute in chennai
best .net training institute in chennai
.net training
dot net training institute
advanced .net training in chennai
advanced dot net training in chennai

kirti batra said...

Advance your digital marketing skills with Webmok by joining the Digital Marketing Training in Delhi to fuel your business growth and compete in the market.

Digital Marketing Training In Delhi

best Digital Marketing Course in Delhi

Social Media Marketing Course In delhi

Packers and movers in Gurgaon

Digital Marketing Institute in Dwarka Mor Delhi

Digital Marketing Training Institute in Dwarka

website design course in delhi

website design course in dwarka mor

website design course in dwarka

Rithi Rawat said...

Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work.
machine learning training in chennai
best training insitute for machine learning
Android training in Chennai
PMP training in chennai

Rithi Rawat said...
This comment has been removed by the author.
Rithi Rawat said...

Positive site, where did u come up with the information on this posting?I have read a few of the articles on your website now, and I really like your style. Thanks a million and please keep up the effective work.

machine learning training in chennai
best training insitute for machine learning
Android training in Chennai
PMP training in chennai

prasath said...

Thanks for your post. This is excellent information. The list of your blogs is very helpful for those who want to learn, It is amazing!!! You have been helping many application.
best selenium training in chennai | best selenium training institute in chennai selenium training in chennai |

Bhavya M said...

Nice post to read.

Azure Training | Microsoft Azure Training | Azure Course | Microsoft Azure Course | Azure Training in Chennai | Microsoft Azure Training in Chennai

UX Designer Training | UI Designer Training | UX Designer Training in Chennai | UI Designer Training in Chennai

Unknown said...

Thanks first of all for the useful info.
the idea in this article is quite different and innovative please update more.
python institutes in bangalore
learn python in bangalore
Python Training Institutes in T nagar
Python Training in Vadapalani
best python classes in bangalore

Aruna Ram said...

I feel very glad to read your great blog. Thanks for sharing with us. Please keeping...
Ethical Hacking Course in Bangalore
Hacking Course in Bangalore
Ethical Hacking Course in Annanagar
Ethical Hacking Training in Annanagar
Ethical Hacking Course in Tnagar
Ethical Hacking Training in Tnagar

Unknown said...

Hi dear, This is an nice and valuable post thanks for this information! Visit for shipping, freight forwarding and logistic company at
Shipping Company in Delhi

Unknown said...

Thanks for your interesting ideas.the information's in this blog is very much useful
for me to improve my knowledge.
AWS Course in Anna Nagar
Best AWS Training Institute in Anna nagar
AWS Courses in T nagar
AWS Training Institutes in T nagar

Darshana M said...

Absolutely correct. It is very useful to read and very easily understandable content to learn. Thanks for sharing.

Best Software Training Institute | Software Training Institute | Software Training Institute in Chennai | Best Software Training Institute in Chennai

Java Training | Java Training in Chennai | Java Training Institute | Java Training Institute in Chennai

Tableau Training | Tableau Course | Tableau Training in Chennai | Tableau Course in Chennai

Durai Raj said...

The blog which you have posted is perfect. Thanks for your information.
Web Designing Course in Chennai
Web Designing Training in Chennai
Web Designing Course in Coimbatore
Web Designing Course in Bangalore
Web Designing Course in Madurai

Durai Raj said...

The blog which you have posted is perfect. Thanks for your information.
Web Designing Course in Chennai
Web Designing Training in Chennai
Web Designing Course in Coimbatore
Web Designing Course in Bangalore
Web Designing Course in Madurai

Durai Raj said...

Perfect blog… Thanks for sharing with us… Waiting for your new updates…
Web Designing Course in Chennai
Web Designing Training in Chennai
Web Designing Course in Coimbatore
Web Designing Course in Bangalore
Web Designing Course in Madurai

zara said...

Your in-depth knowledge is very useful for RPA Training in Bangalore

Unknown said...

Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision....
data science online training
sas online training
linux online training
aws online training
testing tools online training
devops online training
salesforce online training

Anonymous said...

Wow!! Really a nice Article. Thank you so much for your efforts. Definitely, it will be helpful for others. I would like to follow your blog. Share more like this. Thanks Again.
iot training in Chennai | Best iot Training Institute in Chennai

Unknown said...

Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision....
vmware online training
tableau online training
qlikview online training
python online training
java online training
sql online training
cognos online training

Ananth Academy said...

nice post..
seo training in chennai
seo training institute in chennai
erp training institute in chennai
erp training in chennai
tally erp 9 training in chennai
tally erp 9 training institutes
android training in chennai
android training institutes in chennai
mobile application testing training in chennai

Sadhana Rathore said...

Thanks for sharing this pretty post, it was good and helpful. Share more like this.
AngularJS Training in Chennai
Angular 5 Training in Chennai
ReactJS Training in Chennai
AWS Training in Chennai
DevOps Training in Chennai
RPA Training in Chennai
Data Science Course in Chennai
R Programming Training in Chennai

jyothi kits said...

I feel happy to find your post.
Oracle Performance Tuning Interview Questions and Answers
SCCM 2016 Interview Questions and Answers

jyothi kits said...

excellent way of writing.
Devops Training
Dotnet Training

Kayal said...

Excellent post!!! These provide very nice ideas and different kinds of wrathful details. Thank you for your sharing with all. I am waiting for your more ideas...
Ethical Hacking Course in Chennai
Hacking Course in Chennai
Certified Ethical Hacking Course in Chennai
Ethical Hacking Training in Chennai
Ethical Hacking Course

sandhyakits said...

Thanks for one marvelous posting! I enjoyed reading it; you are a great author. I will make sure to bookmark your blog and may come back someday. I want to encourage that you continue your great posts.
Cognos Training

DataScience Training

DataStage Training

Unknown said...

Usually I never comment on blogs but your article is so convincing that I never stop myself to say something about it. You’re doing a great job Man,Keep it up.

RPA Training pune

Unknown said...

Enjoyed reading the article above , really explains everything in detail,the article is very interesting and effective.Thank you and good luck for the upcoming articles

RPA Training pune

rohini said...

It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
Devops Training in Bangalore
Best Devops Training in pune

Ram Niwas said...
This comment has been removed by the author.
Ram Niwas said...

Outstanding information!!! Thanks for sharing your blog with us.

Digital Marketing Training
Digital Marketing Courses

Muthu Kumaran said...

Crayon roofings offer the best steel roofing sheets and it provide the complete solution to all the roofing needs.

lather said...

Goyal packers and movers in Panchkula is highly known for their professional and genuine packing and moving services. We are top leading and certified relocation services providers in Chandigarh deals all over India. To get more information, call us.

Packers and movers in Chandigarh
Packers and movers in Panchkula
Packers and movers in Mohali
Packers and movers in Zirakpur
Packers and movers in Patiala
Packers and movers in Ambala
Packers and movers in Ambala cantt
Packers and movers in Pathankot
Packers and movers in Jalandhar
Packers and movers in Ludhiana
Packers and movers in Chandigarh
Packers and movers in Panchkula
Packers and movers in Mohali

Durai Raj said...

Outstanding blog!!! Thanks for sharing with us...
IELTS Coaching in Madurai
IELTS Coaching Center in Madurai
IELTS Coaching in Coimbatore

ielts coaching center in coimbatore

RPA training in bangalore
Selenium Training in Bangalore
Java Training in Madurai
Oracle Training in Coimbatore
PHP Training in Coimbatore

Unknown said...

I think this is the best article today about the future technology. Thanks for taking your own time to discuss this topic, I feel happy about that curiosity has increased to learn more about this topic. Artificial Intelligence Training in Bangalore. Keep sharing your information regularly for my future reference.

vijaykumar said...


Above article is valuable to read .the article says how to upgrade all.the concept is good.
Angularjs Training in Chennai
Angular Training in Chennai
Angularjs course in Chennai
UiPath Training in Chennai
UiPath Training Institutes in Chennai
Angularjs Training in OMR
Angularjs Training in Porur

sureshbabus said...

Very good write-up. I certainly love this website. Thanks!
Angular 2 Training in bangalore , Angular 4 Training in bangalore , Angular 5 Training in bangalore , Angular 6 Training in bangalore , Angular 7 Training in bangalore , Angular 2 Institute in bangalore , Angular 4 Courses in bangalore , Angularjs Classes , Angularjs Training in Bangalore , Angularjs Training Institute Bangalore , AngularJS Classes in Bangalore , Python Training in Bangalore

Anonymous said...
This comment has been removed by the author.
Anonymous said...

Hey, Wow all the posts are very informative for the people who visit this site. Good work! We also have a Website. Please feel free to visit our site. Thank you for sharing. RPA training in Chennai |Blue prism training in Chennai

roshan said...

good post!!
aws training in bangalore

Anonymous said...

very Nice blog..to know more about coding just go-through it once..
python training in bangalore
python training in mumbai
python training in pune

jefrin said...

Great post thanks for sharing
selenium training in chennai

Durai Raj said...

Awesome Blog!!! Good to Read... Thanks for sharing with us.
Embedded course in Coimbatore
embedded training in coimbatore
embedded systems course in coimbatore
RPA training in bangalore
Selenium Training in Bangalore
Java Training in Madurai
Oracle Training in Coimbatore
PHP Training in Coimbatore

adhar card online download said...

hello check oyour aadhar card status check online free of cost in minutes.

Anonymous said...

check your Bihar Board 12th Result 2019 right now.

Unknown said...

I am Here to Get Learn Good Stuff About DevOps, Thanks For Sharing
DevOps Training
DevOps Training institute in

Ameerpet

DevOps Training institute in

Hyderabad

DevOps Training Online

Anjali M said...

Useful and real-time information's are well and good in this blog.

Angularjs Course in Chennai | Angular 2 Course in Chennai | Angular 4 Course in Chennai | Angular 5 Course in Chennai

Anjali M said...

Useful and real-time information's are well and good in this blog.

Angularjs Course in Chennai | Angular 2 Course in Chennai | Angular 4 Course in Chennai | Angular 5 Course in Chennai

Angularjs Training | Angular 2 Training | Angular 4 Training | Angular 5 Training

Angularjs Course | Angular 2 Course | Angular 4 Course | Angular 5 Course

service care said...

Its an excellent post about algorithms which will be useful for the learners. thanks for sharing. keep posting useful articles like this.

best mobile service center in Chennai
mobile service centre near me
mobile service centre Chennai
mobile service centre

sandeep saxena said...

the article is easy to study and really enjoying that.its help me to improve my knowledge and skills also.im really satisfied in this session.
AWS training in chennai
AWS course in chennai
AWS certification in chennai
Data science course in chennai
DevOps training in chennai
DevOps certification in chennai

sasitamil said...


After reading this web site I am very satisfied simply because this site is providing comprehensive knowledge for you to audience.
Thank you to the perform as well as discuss anything incredibly important in my opinion. We loose time waiting for your next article writing in addition to I beg one to get back to pay a visit to our website in


Selenium training in bangalore
Selenium training in Chennai
Selenium training in Bangalore
Selenium training in Pune
Selenium Online training
Selenium interview questions and answers

Anonymous said...
This comment has been removed by the author.
shiny said...

Really an amazing post.Thanks for sharing such an interesting information.
apple service center in chennai

iphone service center in chennai

lg mobile service center in chennai

oppo service center in chennai

coolpad service center in chennai

mobile service center

mobile service center near me

Unknown said...


looking for Rpa Training in pune. kausal vikash is one of the best institute

RPA Training in Pune

Ramya Krishnan said...

This is the exact information I am been searching for, Thanks for sharing the required infos with the clear update and required points. To appreciate this I like to share some useful information regarding Microsoft Azure which is latest and newest,

Regards,
Ramya

Azure Training in Chennai
Azure Training Center in Chennai
Best Azure Training in Chennai
Azure Devops Training in Chenna
Azure Training Institute in Chennai
Azure Training in Chennai OMR
Azure Training in Chennai Velachery
Azure Online Training

Ananth Academy said...

nice post..
ms office training in chennai
ms office training institute in chennai
ms sql server training in chennai
best sql server training institute
mysql dba training institute
mysql dba training in chennai
java training in chennai
best java training institute in chennai
seo training in chennai
seo training institute in chennai

Ananth Academy said...

nice post..
ms office training in chennai
ms office training institute in chennai
ms sql server training in chennai
best sql server training institute
mysql dba training institute
mysql dba training in chennai
java training in chennai
best java training institute in chennai
seo training in chennai
seo training institute in chennai

viji said...

best selenium training institute in chennai | selenium course in chennai

Ramya Krishnan said...

This is the exact information I am been searching for, Thanks for sharing the required infos with the clear update and required points. To appreciate this I like to share some useful information regarding Microsoft Azure which is latest and newest,

Regards,
Ramya

Azure Training in Chennai
Azure Training Center in Chennai
Best Azure Training in Chennai
Azure Devops Training in Chenna
Azure Training Institute in Chennai
Azure Training in Chennai OMR
Azure Training in Chennai Velachery
Azure Online Training
Azure Training in Chennai CredoSystemz

MyTraining said...

My Training Bangalore is highly preferred Software Training Institute with a mission to create IT Professionals of Future by following most advanced training methodologies that enable students to demonstrate skills on live projects

For More Details Click here Best Training Institute in Bangalore

Or call us on 09513163344

OGEN Infosystem (P) Limited said...

This is one of the best and valuable blog, I have seen since past some time. Thank you so much for sharing this blog with. Visit Ogen Infosystem for Creative Website Designing Services.
Top 5 Website Designing Company Delhi

priya said...

This blog is the general information for the feature. You got a good work for these blog.We have a developing our creative content of this mind.Thank you for this blog. This for very interesting and useful.
Microsoft Azure online training
Selenium online training
Java online training
Java Script online training
Share Point online training

dayakar kits said...

nice post,thank u for sharining information,
Exchange Server Training

Go Language Training

Google Cloud Platform Training

Hadoop Training

Hyperion Training

IBM Integration BUS Training

IBM Message Broker Training

IBM Message Queue Training

Infocampus said...

Its a great post with meaningful information. Awesome. Thanks for sharing

selenium training in Bangalore || web

development training in Bangalore

digitalsourabh said...

Machine Learning Training in Bhopal
Digital Marketing Training in Bhopal
IoT Training in Bhopal
Artificial Intelligence Training in Bhopal
SEO Training in Bhopal
Minor Training in Bhopal
Major Training in Bhopal

Ram Niwas said...
This comment has been removed by the author.
Ankit Varma said...

Amazing post. you have provided some really good info java training in patna

Ankit Varma said...

I would really like to learn more from you Computer institute in patna!

Laurine said...

https://www.veilleuse.shop/produit/veilleuse-coranique-munawara/
La veilleuse coranique bluetooth avec sa télécommande pour offrir.
Cadeau ramadam idéal
La veilleuse coranique personnalisée pas cher
Veilleuse coranique personnalisée
Veilleuse coranique personnalisée

Découvrez La veilleuse coranique Munawara
Video de la Veilleuse coranique munawara
Veilleuse coranique munawara


Je travailles sur un projet de fabrication de cornes de gazelle personnalisée
cornes de gazelle expressives
cornes de gazelle délicieuses
Merci de laisser ce lien c'est sympa...

Le casque vapeur hair steamer permet de lutter contre la sécheresse, la chute des cheveux et leur mauvaise santé , dans le confort de votre domicile. Le hair steamer est un casque vapeur qui apporte une dose d'hydratation pour les cheveux crépus.
Hair steamer vapohair
Lee hair steamer casque vapeur est recommendé par fes femmes aux cheveux crépus
Casque vapeur
La casque vapeur hair steamer apporte beaucoup de bienfait au cheveux crépus de type afro Hair.
hair steamer Casque vapeur hydratation cheveux crépus
hair steamer
Le hair steamer casque vapeur fournit une cure intense contre les chutes et pour favoriser la repousse.
Le hair steamer est un casque à vapeur sûr, une utilisation et un entretien facile

Anonymous said...

In Chennai, java training institutes are providing advanced level training for the one of the second IT hub of India.to meeting the organization needs. learn advanced level java training from candid java training in Chennai.

Anshuman Tripathi said...
This comment has been removed by the author.
Anshuman Tripathi said...

Really very happy to say, your post is very interesting to read. I never stop myself to say something about it. You’re doing a great job. Keep it up
Data Science training in pune

IT Tutorials said...

Really useful information. Thank you so much for sharing.It will help everyone.Keep Post. RPA training in chennai | RPA training in Chennai with placement | UiPath training in Chennai | UiPath certification in Chennai with cost

divyapriya said...
This comment has been removed by the author.
unknown said...

In this spring rest tutorial, learn to create REST APIs using Spring boot 2 framework which returns JSON responses to client.spring boot rest example

DHARAM said...

NICE.

Aishwarya Nair said...

GST Training in Chennai
Interior Design Courses in Chennai

Aishwarya Nair said...

GST Training in Chennai
Interior Design Courses in Chennai

Aishwarya Nair said...

GST Training in Chennai
Interior Design Courses in Chennai
Event Management Courses in Chennai
Interior Design Courses in Chennai


AWS Online Training said...

Very helpful article it was a pleasure reading it.
Are you looking to build your career with AWS Online Training
Best AWS Training In Hyderabad

Kasauti Zindagi Ki said...

Thanks for putting in much effort for this information.

braincarve said...

nice post..Abacus Classes in chennai
vedic maths training chennai
abacus training classes in chennai
Abacus institute Training Class in Chennai
Vedic Maths Classes in Chennai
Abacus Training Class in Chennai


Music is my life said...

Life becomes more beautiful with music. Thank you so much for sharing this pretty post. To make life more beautiful, I have a hobby of collecting ringtones for phones. You can consult some downloads if you like
https://bestringtone.net/bodyguard-himmat-sandhu-ringtone-download
https://bestringtone.net/jaanam-dekh-lo-mit-gayi-dooriyan-ringtone-download
https://bestringtone.net/long-life-harpreet-dhillon-ringtone-download

Music song said...

Tik Tok is a very hot application in the world. There are many more popular songs thanks to tik tok. I want to share to everyone the new and best tik ringtones
https://bestringtone.net/tik-tok-instrumental-ringtone-download
https://bestringtone.net/bgm-pubg-remix-tik-tok-ringtone-download
https://bestringtone.net/heartbeat-tik-tok-ringtone-download
https://bestringtone.net/tik-tok-dance-ringtone-download

John Oneal said...

Bitdefender Customer Service
McAfee Customer Service Number
Avast Customer Service Phone Number
Norton Customer Service Phone Number
Malwarebytes Customer Service PhoneNumber

Riya Raj said...

More Informative Blog!!! Thanks for sharing with us...
devops training in bangalore
devops course in bangalore
devops certification in bangalore
Java Training in Bangalore
Python Training in Bangalore
IELTS Coaching in Madurai
IELTS Coaching in Coimbatore
Java Training in Coimbatore

anvianu said...

It has been just unfathomably liberal with you to give straightforwardly what precisely numerous people would've promoted for an eBook to wind up making some money for their end, basically given that you could have attempted it in the occasion you needed.
safety course in chennai
industrial safety course in chennai

Kavi said...

nice post. Thanks for sharing! I want people to know just how good this information is in your article. It’s interesting content and Great work.
Software Testing Training in Chennai | Software Testing Training Institute in Chennai

domj said...

Great inspiration for any expression driven synthesisers. Tried experimenting with few of the symphonies in VL after hearing about them and who would have known it worked :)

https://www.youtube.com/watch?v=u1lUW9IMFm4

vyshukits said...

Really you have done great job,There are may person searching about that now they will find enough resources by your post
Abinitio Online Training

Active Directory Online Training

Amazon Web Server Online Training

Anonymous said...

nice work keep it up thanks for sharing the knowledge.Thanks for sharing this type of information, it is so useful.
Ab initio Interview Questions

Active Directory Interview Questions

Android Interview Questions

Anonymous said...

Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
https://www.kitsonlinetrainings.com/business-analyst-interview-questions.html

https://www.kitsonlinetrainings.com/c-and-c-interview-questions.html

https://www.kitsonlinetrainings.com/cloud-computing-interview-questions.html

Anonymous said...

thanks for sharing such a nice info.I hope you will share more information like this. please keep on sharing!

Angular JS Online Training


Angular JS Interview Questions


Appium Online Training


Appium Interview Questions


C Language Online Training


C++ Language Online Training


C and C++ Interview Questions


Just Info said...

Nice Blog, Get Play School Cartoon Wall Painting by Kala Kutir Pvt Ltd in delhi, india.
Play School Cartoon Painting

bestieltscoachingindwarka said...

ppc company in noida
PPC Company in Gurgaon

institute of marketing said...
This comment has been removed by the author.
Institute of Marketing said...

I have gone through your blog, very nice blog. Thanks for sharing keep up the good work. I hope you will share more information like this. please keep on sharing.

Digital Marketing Courses in Bangalore with Placements,

Advanced DIgital Marketing courses in Bangalore,

Digital Marketing training in Bangalore, Best Courses in Institute

Best Digital Marketing training institute in Bangalore

institute of marketing said...
This comment has been removed by the author.
institute of marketing said...

Wonderful read and would Bookmark it. Thanks
Digital marketing courses in Bangalore

creative web solution said...

We are one of the top caterers service provider in Gurgaon named bindaasbol , if you have any wedding events or party of any function in your home please contact us and give a opportunity to give you best service. We also deals in delhi

caterers services sector 29 gurgaon
caterers services in west Delhi
event organizers rajouri garden
wedding planners in Punjabi bagh
party organizers in west Delhi
party organizers Dlf -phase-1
wedding planners Dlf phase-1
wedding planners Dlf phase-2
event organizers  Dlf phase-3
caterers services Dlf phase-4
caterers services Dlf phase-5

rudraveni said...

Really very happy to say that your post is very interesting. I never stop myself to say something about it. You did a great job. Keep it up.
We have an excellent IT courses training institute in Hyderabad. We are offering a number of courses that are very trendy in the IT industry. For further information, please once go through our site. DevOps Training In Hyderabad

digital tucr said...

You might comment on the order system of the blog. You should chat it's splendid. Your blog audit would swell up your visitors. I was very pleased to find this site.I wanted to thank you for this great read!!
digital marketing course

digital tucr said...

You might comment on the order system of the blog. You should chat it's splendid. Your blog audit would swell up your visitors. I was very pleased to find this site.I wanted to thank you for this great read!!
www.excelr.com/digital-marketing-training
digital marketing course

vinith said...

It should be noted that whilst ordering papers for sale at paper writing service, you can get unkind attitude. In case you feel that the bureau is trying to cheat you, don't buy term paper from it.
python training in bangalore

Anonymous said...

youtube.comhttp://servicehpterdekat.blogspot.com/
http://servicehpterdekat.blogspot.com/http://servicehpterdekat.blogspot.com/
https://kursusservicehplampung.blogspot.com/
http://lampungservice.com/
http://lampungservice.com/
http://lampungservice.com/
https://cellularlampung.blogspot.com/

Rajvaadi Odhni ringtone said...

I am a programmer, I created https://bestringtone.net website in php language on wordpress source code. If you want to download ringtones, please visit. All tracks are free

Priyanka said...

Attend The Python Training in Hyderabad From ExcelR. Practical Python Training Sessions With Assured Placement Support From Experienced Faculty. ExcelR Offers The Python Training in Hyderabad.
python training in bangalore

Riya Raj said...


Wonderful blog!!! More Useful to us... Thanks for sharing with us...
Selenium Training in Bangalore
Selenium Training in Coimbatore
Best Selenium Training Institute in Bangalore
best selenium training in coimbatore
RPA training in bangalore
Selenium Training in Bangalore
Oracle Training in Coimbatore
PHP Training in Coimbatore

Anonymous said...

nice blog also read what is postfix

Anonymous said...

nice blog also read what is postfix

Anonymous said...

nice blog also read what is postfix

zuan education said...

Nice blog!!!! This blog is very informative and useful to read and gain a knowledge.
web designing course with placement php training institute magento training institute in chennai.

Anonymous said...

This Blog is perfect to get some knowledge. I like to congrats for presenting a good blog.

Comments Submitted by Digital Marketing Course training institute in chennai.

Anonymous said...

Thank you for sharing informative stuff, Easy to understand a lot of things. Keep rocking and bring more article like "Algorithmic symphonies from one line of code -- how and why?" and don’t forget to send Notification.

Wordpress development company in chennai

ecommerce website development services

Best web design company in chennai

ecommerce website design services

Zuan Tech said...

Amazing post you shared. Thanks for sharing these wonderful tips with the world. I would like to web design which is also helpful to improve business. Thanks


Wordpress development company in chennai

ecommerce website development services

Best web design company in chennai

ecommerce website design services

Durai Raj said...


Innovative post!!! Keep on Posting... Thanks for it!!!
Data Analytics Courses in Coimbatore
Big Data Analytics Training in Coimbatore
Big Data Analytics Training in Bangalore
Data Analytics Courses in Bangalore
Java Training in Bangalore
Python Training in Bangalore
Java Training in Coimbatore
Oracle Training in Coimbatore
PHP Training in Coimbatore
IELTS Coaching in Coimbatore

digital marketing said...

thanks for your wonderful information
besant technologies

sunil said...

thanks for sharing valuable information

Jaya said...

Good Post! Thank you so much for sharing this!

Bigg Boss Marathi Vote

htop said...

thanks for sharing this useful message
aws training center in chennai
aws training in chennai
aws training institute in chennai
best angularjs training in chennai
angular js training in sholinganallur
angularjs training in chennai
azure training in chennai
best devops training in chennai

Chiến SEOCAM said...

ok thank good

Phối chó bull pháp

Phối giống chó Corgi

Phối chó Pug

Phối giống chó alaska

mechanical Engineering said...

This is very interesting article thanx for your knowledge sharing.this is my website is mechanical Engineering related and one of best site .i hope you are like my website .one vista and plzz checkout my site thank you, sir.
mechanical engineering

htop said...

this is useful message with us
aws training center in chennai
aws training in chennai
aws training institute in chennai
best angularjs training in chennai
angular js training in sholinganallur
angularjs training in chennai

Chris Hemsworth said...

This article is more informative.Thanks for sharing with us.
selenium testing training

christoper stalin said...

Great article!!! Thanks for this blog.
web designing institutes
web designing classes
web designing course

iam your dad said...

Menard Inc. is a chain of home improvement stores, located in the Midwestern United States. The privately held company, headquartered in Eau Claire, Wisconsin, has 350 stores in 14 states: Ohio, Michigan, ..

https://www.bloglovin.com/@wwwtmmenards/menards-a-year-ago
http://tmmenardsinc.bravesites.com/
https://medium.com/@pandimenrds/menards-for-a-future-90f748c481ec
http://menardtmportal.yolasite.com/
https://www.evernote.com/shard/s653/sh/b80d518b-d25c-43c7-b6e0-13bd5fcd7858/4d1dab1ad95212ae0d5667594822851c
https://tmmenard.shutterfly.com/
https://sonunaga.kinja.com/chosen-that-menard-1835031561?utm_medium=sharefromsite&utm_source=default_copy&utm_campaign=bottom
http://tmmenardsinclogin.emyspot.com/
https://tmmenardcom.livejournal.com/profile

iam your dad said...

Menard Inc. is a chain of home improvement stores, located in the Midwestern United States. The privately held company, headquartered in Eau Claire, Wisconsin, has 350 stores in 14 states: Ohio, Michigan, ..

https://tmmenard.blogspot.com/2019/05/menards-complex.html
https://sites.google.com/view/teammenardslogin/home
http://tmmenard1.simplesite.com
https://menardsinctm.page.tl/menards.htm
https://menardstmmemberlogin.home.blog/
https://menardsteammemberloginin.blogspot.com/2019/05/menards-assembling.html
https://sites.google.com/view/menardstm/home
https://mymenardsteam1.tumblr.com/post/185148861726/haulers-materials
http://tm-menards.jouwweb.nl/

iam your dad said...

Menard Inc. is a chain of home improvement stores, located in the Midwestern United States. The privately held company, headquartered in Eau Claire, Wisconsin, has 350 stores in 14 states: Ohio, Michigan, ..

https://www.smore.com/71vqg
https://jpst.it/1Jk8B
https://www.bloglovin.com/@tmmenard/farmington-menards
http://menardslogin.bravesites.com/
https://diigo.com/0ep284
https://jpst.it/1Jh6v
https://menardstm1.home.blog/
https://tmmenards.blogspot.com/2019/05/menards-opened.html
https://sites.google.com/view/tmmenardinccom1/home

Priyanka said...

Attend The Digital Marketing courses in bangalore From ExcelR. Practical Digital Marketing courses in bangalore Sessions With Assured Placement Support From Experienced Faculty. ExcelR Offers The Digital Marketing courses in bangalore.

karthick said...

This is the nice blog with lot of information. Keep posting more in future blog post.
Interior Designers in Chennai
Interior Decorators in Chennai
Best Interior Designers in Chennai
Home Interior designers in Chennai
Modular Kitchen in Chennai

vinish said...

The post is really great with lot of information. Keep updating more in your future blog post.
Sign Board Manufacturers in Chennai
Sign Boards Chennai
Signage Chennai
Metal Letters Chennai
LED Sign Boards in Chennai
Name Board Makers in Chennai

ravali said...

Well, The information which you posted here is very helpful & it is very useful for the needy like me..,

vanitha said...

Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging.I hope it’s useful to many individuals for developing their skill to get good career. anyone want to learn advance develops training visit: Lyceum Northwestern University

jose said...

nice blog. thank you for your post.

AngularJS interview questions and answers/angularjs 4 interview questions/jquery angularjs interview questions/angularjs 6 interview questions and answers/<a href="http://www.techtutorial.in/>angularjs interview questions</a/>

sathyaramesh said...

Nice article I was really impressed by seeing this blog, it was very interesting and it is very useful for me.
RPA Training in Chennai
Robotics Process Automation Training in Chennai
Robotic Process Automation Training
AWS Training in Chennai
Cloud Computing Training in Chennai
Data Science Training in Chennai
RPA Training in Velachery
RPA Training in Tambaram
RPA Training in T Nagar
RPA Training in Anna Nagar

jose said...

nice information.. THnakyou.
javascript interview questions pdf/object oriented javascript interview questions and answers for experienced/javascript interview questions pdf

oasisproperties17 said...

SAP SD training course given by us is a joining of various SAP modules. Our SAP SD training urges each understudy to achieve their target in SAP occupation. SysAppPro is the fundamental SAP SD training institute in Gurgaon. Our lab is furnished with pattern setting developments helping understudies advantage a viable SAP SD training and confirmation from the institute.

For More Info:- SAP SD Course in Gurgaon

hannah said...

Check out girly iphone xr cases in the aixonne. Shop iphone xs max protective case. Purchase a new girly iPhone X cases. Are you looking for girly iphone 8 plus case? Click here to see lots of girly iphone 7 plus cases. All of our iphone 6s plus case for girl provide protection. Do you need iPhone Tempered Glass? Check out here for best silver necklace for women.

jose said...

Thank you for sharing this post
javascript interview questions pdf/object oriented javascript interview questions and answers for experienced/javascript interview questions pdf

Benish said...

thank you for sharing..
AngularJS interview questions and answers/angularjs interview questions/angularjs 6 interview questions and answers/mindtree angular 2 interview questions/jquery angularjs interview questions/angular interview questions/angularjs 6 interview questions

jose said...

Thank you for sharing
java interview questions and answers/java interview questions advanced/java interview questions and answers pdf/java interview questions and answers pdf download/java interview questions beginner/java interview questions core java/java interview questions data structures/java interview questions download pdf/java interview questions for freshers/java interview hr questions/ava interview questions in pdf/java interview questions javatpoint/java interview questions latest/java interview questions and answers/java interview questions pdf/java interview questions quora/java interview questions videos/java interview questions with answers/java interview questions with answers pdf/java interview questions with programs/java interview questions 2019/java interview questions on strings

jose said...

nice blog
java interview questions and answers/java interview questions advanced/java interview questions and answers pdf/java interview questions and answers pdf download/java interview questions beginner/java interview questions core java/java interview questions data structures/java interview questions download pdf/java interview questions for freshers/java interview hr questions/ava interview questions in pdf/java interview questions javatpoint/java interview questions latest/java interview questions and answers/java interview questions pdf/java interview questions quora/java interview questions videos/java interview questions with answers/java interview questions with answers pdf/java interview questions with programs/java interview questions 2019/java interview questions on strings

Veelead Solutions said...

Thanks for Sharing this useful information. Get sharepoint apps development from veelead solutions

Benish said...

thank you sharing wonderful information.
AngularJS interview questions and answers/angularjs interview questions/angularjs 6 interview questions and answers/mindtree angular 2 interview questions/jquery angularjs interview questions/angular interview questions/angularjs 6 interview questions

Manikanta said...

excelr is a best training institute in bangalore and 100% placements,and well trainers and nice infrasture,certification provided and digital marketing certification thank you...

Benish said...

thank you for your good information.
AngularJS interview questions and answers/angularjs interview questions/angularjs 6 interview questions and answers/mindtree angular 2 interview questions/jquery angularjs interview questions/angular interview questions/angularjs 6 interview questions/angularjs interview questions and answers for 3 years experience

BharathSS said...

Digital Marketing Courses in Bangalore
If you're looking for Digital Marketing Course in Bangalore, then your search ends with ExcelR.
Learn the Online Digital Marketing Course, from the best in the industry with live mentoring sessions and Live projects.
Become the expert in modules like SEM, SEO, Adwords, Analytics & much more
Want more information about the Digital Marketing Course, then visit our website


Website
https://www.excelr.com/

URL
https://www.excelr.com/digital-marketing-training-in-bangalore

YouTube
https://www.youtube.com/channel/UCF2_gALht1C1NsAm3fmFLsg

mklert jackson said...

I finally found a great post here. I will get back here. I just added your blog to my bookmark sites. thanks. Quality posts are crucial to invite the visitors to visit the web page, that's what this web page is providing amazon web services training .

likitha said...

They're produced by the very best degree developers who will be distinguished for your polo dress creating. You'll find polo Ron Lauren inside exclusive array which include particular classes for men, women.Amazon web services bangalore

unknown said...

Hiiii....Thank you so much for sharing great information....Nice post...Keep move on...
Angular JS Training in Hyderabad

likitha said...

After reading your article I was amazed. I know that you explain it very well. And I hope that other readers will also experience how I feel after reading your article.Pmp certification in Hyderabad

khaleed said...

Really impressed! Everything is very open and very clear clarification of issues. It contains truly facts. Your website is very valuable tableau course in Bangalore . Thanks for sharing.

Rathinam said...

Superb..! Very comprehensive content for this topic with good explanation. I glad to read your great post, keep doing...
JMeter Training in Chennai
JMeter Training
Power BI Training in Chennai
Job Openings in Chennai
Linux Training in Chennai
Tableau Training in Chennai
Oracle Training in Chennai
Oracle DBA Training in Chennai
JMeter Training in Velachery
JMeter Training in Vadapalani

mishtiee said...

The next time I read a blog, I hope that it doesn't disappoint me as much as this one. I mean, I know it was my choice to read aws course in Bangalore , but I actually thought you have something interesting to say. All I hear is a bunch of whining about something that you could fix if you weren't too busy looking for attention.

Raj Kumar said...

Nice Blog, Keep post more Blogs Thanks for sharing.
visit us : Advertising Agency
3d Animation Services

Venkatesh Krishna said...

Good Post! Thank you so much for sharing this pretty post. SEO Training in Chennai

daizy mathew said...

Good Post. Thanks for sharing this useful information

Sivanandhana Girish said...

Your blog left the readers with some kind of useful info. Have been waiting for more updates from this blog admin. Do share more.
Spoken English Classes in Chennai
Spoken English in Chennai
Top 10 Spoken English Classes in Chennai
Best IELTS Coaching in Chennai
IELTS Coaching Centre in Chennai
English Classes in Mumbai
English Speaking Classes in Mumbai
Best IELTS Coaching in Mumbai
IELTS Coaching in Mumbai
Spoken English Classes in Anna Nagar

Sivanandhana Girish said...

I am happy reading your blog, I gained a piece of knowledge. Kindly continue the work.
Spoken English Classes in Chennai
Best Spoken English Classes in Chennai
IELTS Coaching in Chennai
IELTS Coaching Centre in Chennai
English Speaking Classes in Mumbai
English Speaking Course in Mumbai
IELTS Classes in Mumbai
IELTS Coaching in Mumbai
IELTS Coaching in Anna Nagar
Spoken English Class in Anna Nagar

Router Support said...

It's an interesting article..!! Thanks for sharing. For Router Queries, Check in to our site..!!

Router Support , Connect to my Router , Router Settings , Wired router setup, wireless router setup, wifi router setup

Anjudevan said...

Nice Blog...Thanks for sharing..
Wordpress Training in Chennai
Wordpress Training institute in Chennai
Wordpress Training Institutes in Chennai
Wordpress Training in T Nagar
Wordpress Training in OMR
Struts Training in Chennai
clinical sas training in chennai
Spring Training in Chennai
Photoshop Classes in Chennai
LoadRunner Training in Chennai

Anbarasan14 said...
This comment has been removed by the author.
Aman CSE said...




Such a wonderful blog on Mean Stack .Your blog having almost full information about
Mean Stack ..Your content covered full topics of Mean Stack ,that it cover from basic to higher level content of Mean Stack .Requesting you to please keep updating the data about Mean Stack in upcoming time if there is some addition.
Thanks and Regards,
Best institute for mean stack training in chennai
Mean stack training fees in Chennai
Mean stack training institute in Chennai
Mean stack developer training in chennai
Mean stack training fees in OMR, Chennai

Sofia said...

Коли под наем
Коли под наем София
Автомобили под наем
Автомобили под наем София
Рент а кар
Рент а кар София

htop said...

nice message
aws training center in chennai
aws training in chennai
aws training institute in chennai
best angularjs training in chennai
angular js training in sholinganallur
angularjs training in chennai
azure training in chennai
data Science training in chennai

honey said...

We are really grateful for your blog post aws certification in Bangalore. You will find a lot of approaches after visiting your post. Great work

mishtiee said...

Really impressed! Everything is very open tableau training in Bangalore and very clear clarification of issues. It contains truly facts. Your website is very valuable. Thanks for sharing.

e learn portal said...

Thanks for giving a great information about Docker&Kubernetes Good Explination nice Article...
Docker Online Training
Kubernetes Online Training
Kubernetes Training in Hyderabad
Docker and Kubernetes Training in Hyderabad

daizymathew said...

Thanks for sharing this useful information.

Benish said...

Nice post.. Thank you for sharing useful information.
Python training in Chennai/
Python training in OMR/
Python training in Velachery/
Python certification training in Chennai/
Python training fees in Chennai/
Python training with placement in Chennai/
Python training in Chennai with Placement/
Python course in Chennai/
Python Certification course in Chennai/
Python online training in Chennai/
Python training in Chennai Quora/
Best Python Training in Chennai/
Best Python training in OMR/
Best Python training in Velachery/
Best Python course in Chennai/

mobile application development said...
This comment has been removed by the author.
jose said...

Really nice post. Thank you for sharing amazing information.
Java Training in Chennai/Java Training in Chennai with Placements/Java Training in Velachery/Java Training in OMR/Java Training Institute in Chennai/Java Training Center in Chennai/Java Training in Chennai fees/Best Java Training in Chennai/Best Java Training in Chennai with Placements/Best Java Training Institute in Chennai/Best Java Training Institute near me/Best Java Training in Velachery/Best Java Training in OMR/Best Java Training in India/Best Online Java Training in India/Best Java Training with Placement in Chennai



ExcelR Solutions said...

Very interesting, good job and thanks for sharing such a good blog. Your article is so convincing that I never stop myself to say something about it. You’re doing a great job. Keep it up. Plaese update for Artificial Intelligence Course.

Reshma said...

Excellent article.Thanks for sharing this valuable information. keep updating like this..
Digital Marketing Course in velachery
Digital Marketing Course in T nagar
Digital Marketing Course in Tambaram
Digital Marketing Course in Anna nagar
Digital Marketing Course in Porur
Digital Marketing Course in Thiruvanmiyur
Digital Marketing Course in Adyar
Digital Marketing Course in OMR
Digital Marketing Course in Vadapalani


sasi said...

I have to agree with everything in this post. Thanks for the useful sharing information.
Android training in anna nagar
Android Training in Chennai
Android Training in OMR
java training in T nagar
Salesforce Training in T Nagar
Android Training in T Nagar
AWS Training in Tnagar
IELTS Coaching in OMR

digiworld said...

Great tips and very easy to understand pmp certification. This will definitely be very useful for me when I get a chance to start my blog.

Arslan Bhatti said...

Business Analytics or Data Analytics or data science training in hyderabad is an extremely popular, in-demand profession which requires a professional to possess sound knowledge of analysing data in all dimensions and uncover the unseen truth coupled with logic and domain knowledge to impact the top-line (increase business) and bottom-line (increase revenue). ExcelR’s Data Science curriculum is meticulously designed and delivered matching the industry needs and considered to be the best in the industry.

Sam Daniel said...

Wonderful Blog. Keep Posting.
Advanced Excel Training in Chennai
Corporate Excel Training in Mumbai
Advanced Excel Training in Bangalore
Corproate Excel Training Delhi, Gurgaon, Noida

Hari said...

Very informative article, I am very glad to visit your great post and Keep updating like this...
Placement Training in Chennai
best training and placement institute in chennai
Advenced Excel Training in Chennai
Pega Training in Chennai
Tableau Training in Chennai
Embedded System Course Chennai
Job Openings in Chennai
Linux Training in Chennai
Spark Training in Chennai
Oracle Training in Chennai
Placement Training in OMR
Placement Training in Velachery

Jhonathan said...

I have perused your blog its appealing and worthy. I like it your blog.
java software development company
Java web development company
Java development companies
java web development services
Java development company

Benish said...

Thanks for sharing useful information....
Python training in Chennai/Python training in OMR/Python training in Velachery/Python certification training in Chennai/Python training fees in Chennai/Python training with placement in Chennai/Python training in Chennai with Placement/Python course in Chennai/Python Certification course in Chennai/Python online training in Chennai/Python training in Chennai Quora/Best Python Training in Chennai/Best Python training in OMR/Best Python training in Velachery/Best Python course in Chennai/<a

mobile application development said...

https://notatube.blogspot.com/2010/11/project-lombok-trick-explained.html
http://blog.agupieware.com/2014/05/online-learning-bachelors-level.html
https://countercomplex.blogspot.com/2011/10/algorithmic-symphonies-from-one-line-of.html
https://blog.ifsworld.com/2018/03/the-changing-face-of-commercial-aviation-maintenance/
https://cloud.googleblog.com/2014/04/protecting-students-with-google-apps.html
https://blog.krakjoe.ninja/2019/03/php-gr8.html
http://www.androidengineer.com/2010/06/using-ant-to-automate-building-android.html
http://www.mapleleavessycamoretrees.com/2017/09/our-new-kitchen.html
https://yaroslavvb.blogspot.com/2011/09/dont-use-exact-equality-with-floating.html
https://java-latte.blogspot.com/2014/03/metaspace-in-java-8.html

mobile application development said...

Amazing Post. Your blog is very inspiring. Thanks for Posting.
Mobile App Development Company in chennai
mobile app development chennai
Mobile application development company in chennai
Mobile application development chennai
Mobile apps development companies in chennai
enterprise mobile app development company

Arslan Bhatti said...

Business Analytics or data science training in hyderabad is an extremely popular, in-demand profession which requires a professional to possess sound knowledge of analysing data in all dimensions and uncover the unseen truth coupled with logic and domain knowledge to impact the top-line (increase business) and bottom-line

deepika said...

Very innovative information
spark interview questions

hubSpot said...

this was an interesting post. thank you for sharing impressive post.
sql query interview questions
tableau interview questions
mvc interview questions

hubSpot said...

really important interview questions.
java interview questions
angularjs interview questions

hubspot said...

top interview questions.
tableau interview questions
asp .net interview questions

hubSpot said...

nice information.
mvc interview questions
angularjs interview questions

hubSpot said...

best interview questions
angularjs interview questions

shreya satyal said...

This post is so relevant and informative. It is very easy to understand. Thanks for this post. Keep blogging ‎‎Keyboard classes in Velacher
‎‎Guitar classes in Velachery
‎‎Violin classes in Velachery
‎‎Flute classes in Velachery

Benish said...

Nice post....Thanks for sharing..
Python training in Chennai/Python training in OMR/Python training in Velachery/Python certification training in Chennai/Python training fees in Chennai/Python training with placement in Chennai/Python training in Chennai with Placement/Python course in Chennai/Python Certification course in Chennai/Python online training in Chennai/Python training in Chennai Quora/Best Python Training in Chennai/Best Python training in OMR/Best Python training in Velachery/Best Python course in Chennai/<a

Tech News said...

Visit Here -> Big Data And Hadloop Training in Bangalore

Rajesh said...

Nice information, want to know about Selenium Training In Chennai
Selenium Training In Chennai
Data Science Course In Chennai
Protractor Training in Chennai
jmeter training in chennai
Rpa Training Chennai
Rpa Course Chennai

hannah said...

اگر دانشجو هستید و به دنبال ترجمه ارزان می گردید بهترین سایت برای شما سایت ترجمه آنلاین است. این سایت با داشتن تیمی حرفه ای در ضمینه ترجمه متون فارسی به انگلیسی و ترجمه متون انگلیسی به فارسی ، بهترین همراه شما در دوران دانشجویی خواهد بود. تخصص ما ترجمه مقاله های تخصصی دانشگاه است.

Rajesh said...

Nice information, want to know about Selenium Training In Chennai
Selenium Training In Chennai
Data Science Course In Chennai
Protractor Training in Chennai
jmeter training in chennai
Rpa Training Chennai
Rpa Course Chennai

deepika said...

Very good post. This is an amazing and wonderfull site to go through.

informatica interview questions

«Oldest ‹Older   201 – 400 of 837   Newer› Newest»