#djcoded
Explore tagged Tumblr posts
Text
[IDs in alt text.]
Errordj: a gender connected to being a DJ error; this gender is connected to DJ aesthetics, digital aesthetics, glitchy aesthetics, hardcore EDM/techno/speedcore, being digigender (link), and technanhood/korhood (link)!
Djbot: a gender connected to being a DJ robot; this gender is connected to DJ aesthetics, robot aesthetics, technology aesthetics, being pantechnicum (link), and technanhood/korhood (link)!
Djcoded: a gender connected to being a DJ code, or a coded DJ; this gender is connected to DJ aesthetics, digital aesthetics, lines of code, DIGiN (link) genders, and technanhood/korhood (link)!
DJ system (link) coined by @dragonpride17, Error, Robot, and Code/d systems (link) coined by @en8y
#mogai coining#gender coining#gender label#the fox coins#errordj#djbot#djcoded#dj system#error system#robot system#code/d system#hardkoria
11 notes
·
View notes
Text
DjCodeE just followed us, bringing us up to 25 followers on Twitch! Thank you so much DjCodeE! Want to be like DjCodeE and get nightly new live mixes & free music to power your day? Go to https://ift.tt/2znpksL
DjCodeE started following me on Twitch! Just another hardcore dj from the Seattle area. If you want stuff with my logo on it, go check my store! https://ift.tt/3aD45pt My current follower count: 25
0 notes
Text
Django Error u"'polls" is not a registered namespace
Yesterday I was working on my first app using this tutorial. It's a Poll and Choice app.The first page displays the question and when you click on the question it's suppose to display choices which you can vote on them.
I had great people who helped me yesterday and told me to use namespace. I've read the namespace tutorial and tried to apply my knowledgeto the scenario but it isn't working so far.
This is my error when I click on the questions which is the first page.
NoReverseMatch at /polls/5/ u"'polls" is not a registered namespace Request Method: GET Request URL: http://127.0.0.1:8000/polls/5/ Django Version: 1.4.3 Exception Type: NoReverseMatch Exception Value: u"'polls" is not a registered namespace Exception Location: C:\hp\bin\Python\Lib\site-packages\django\template\defaulttags.py in render, line 424 Python Executable: C:\hp\bin\Python\python.exe Python Version: 2.5.2 Python Path: ['C:\\djcode\\mysite', 'C:\\hp\\bin\\Python\\python25.zip', 'C:\\hp\\bin\\Python\\DLLs', 'C:\\hp\\bin\\Python\\lib', 'C:\\hp\\bin\\Python\\lib\\plat-win', 'C:\\hp\\bin\\Python\\lib\\lib-tk', 'C:\\hp\\bin\\Python', 'C:\\hp\\bin\\Python\\lib\\site-packages', 'C:\\hp\\bin\\Python\\lib\\site-packages\\win32', 'C:\\hp\\bin\\Python\\lib\\site-packages\\win32\\lib', 'C:\\hp\\bin\\Python\\lib\\site-packages\\Pythonwin'] Server time: Fri, 15 Feb 2013 21:04:10 +1100 Error during template rendering In template C:\djcode\mysite\myapp\templates\myapp\detail.html, error at line 5 u"'polls" is not a registered namespace 1 <h1>{{ poll.question }}</h1> 2 3 {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %} 4 5 {% url 'polls:vote' poll.id %} 6 {% csrf_token %} 7 {% for choice in poll.choice_set.all %} 8 <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" /> 9 <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br /> 10 {% endfor %} 11 <input type="submit" value="Vote" /> 12 </form>
Now I know the problems are hidden in detail.html, my main urls and my app called myapp URLCONF and views.py
Now My main URLconf are:C:\djcode\mysite\mysite
from django.conf.urls import patterns, include, url from django.contrib import admin from django.conf import settings # Uncomment the next two lines to enable the admin: # from django.contrib import admin admin.autodiscover() urlpatterns = patterns('', #url(r'^polls/', include('myapp.urls')), url(r'^polls/', include('myapp.urls', namespace='polls')), url(r'^admin/', include(admin.site.urls)), )
My app folder is called myapp and this is myapp URLconf:C:\djcode\mysite\myapp
from django.conf.urls import patterns, include, url from django.contrib import admin from django.conf import settings from django.conf.urls import patterns, include, url urlpatterns = patterns('myapp.views', url(r'^$', 'index'), url(r'^(?P<poll_id>\d+)/$', 'detail'), url(r'^(?P<poll_id>\d+)/results/$', 'results'), url(r'^(?P<poll_id>\d+)/vote/$', 'vote'),)
My views.py inside myapp are:
from django.http import HttpResponse from myapp.models import Poll ,choice from django.template import Context, loader from django.http import Http404 from django.shortcuts import render_to_response, get_object_or_404 from django.template import RequestContext def index(request): latest_poll_list = Poll.objects.all().order_by('-pub_date')[:5] return render_to_response('myapp/index.html', {'latest_poll_list': latest_poll_list}) def results(request, poll_id): p = get_object_or_404(Poll, pk=poll_id) return render_to_response('myapp/results.html', {'poll': p}) def vote(request, poll_id): p = get_object_or_404(Poll, pk=poll_id) try: selected_choice = p.choice_set.get(pk=request.POST['choice']) except (KeyError, Choice.DoesNotExist): # Redisplay the poll voting form. return render_to_response('myapp/detail.html', { 'poll': p, 'error_message': "You didn't select a choice.", }, context_instance=RequestContext(request)) else: selected_choice.votes += 1 selected_choice.save() # Always return an HttpResponseRedirect after successfully dealing # with POST data. This prevents data from being posted twice if a # user hits the Back button. return HttpResponseRedirect(reverse('myapp.views.results', args=(p.id,))) def detail(request, poll_id): p = get_object_or_404(Poll, pk=poll_id) return render_to_response('myapp/detail.html', {'poll': p}, context_instance=RequestContext(request))
My detail.html C:\djcode\mysite\myapp\templates\myapp
<h1>{{ poll.question }}</h1> {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %} {% url 'polls:vote' poll.id %} {% csrf_token %} {% for choice in poll.choice_set.all %} <input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" /> <label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br /> {% endfor %} <input type="submit" value="Vote" /> </form>
https://codehunter.cc/a/django/django-error-u-polls-is-not-a-registered-namespace
0 notes
Video
instagram
We rocking @djelinyc on next. Hand off. Don’t think I played anything that came out in the last 5 years. #djcode #handoff No problem opening up #Djlife #turntablekartel #djstevensapp (at 718 Hookah lounge Bar and Grill)
0 notes
Text
Random Chord Generator PRO
Following on from my last post, created by the same person, Mario Nieto (also knows as a Bitcode or DJCode, musician, sound designer and software developer) for Audio Modern, is the Random Chord Generator. Again it’s functions are relatively straight forward.
Another plug-in designed on Max for Live, this instrument helps to build and create MIDI chords from the MIDI notes received, so the user would play one note and the generator would create chords from that particular note. It comes with 52 chord types and an option for manual or automatic randomization for the inversion, velocity and arppegiations/delay of the individual chords. There’s a drop down bar enabling you to choose key/scale of the chords used making it extremely easy to come up with melodies for your works. Being a plug-in for Ableton you could use either built-in instruments Ableton provides with this, or even VST synths such as Reaktor or Serum.
Also it controls the transposition of semitone’s and will adjust said chord to it’s desired octave. There are 42 different modes of scales which will link the chord adjustment to the desired tone to make sure the melody is always in key. Another great plug-in for generating quick melodies for your production, and again would deeply consider getting this for my own use, attached below are a few links to demonstrations where you can see the generator and it’s different modes at work:
https://www.youtube.com/watch?v=H70l6F4A9Vg
https://www.youtube.com/watch?v=U9z99uRaD7U
https://www.youtube.com/watch?v=GqCBhOAqCrc
0 notes
Video
#Repost @herbertskillz_beats (@get_repost) ・・・ Phantom Music FRESH NEWS @therealhonorebel Ft @charlytrelawnyblack 👉🏽Your Love👈🏽 Produced BY @herbertskillz_beats & @djcode Hot !! Up Up Up @zojakworldwide @kraiggibadrasta @247pitbull @respowerhouse @soundmakersmusic - - SoundCloud Link Below https://soundcloud.com/honorebel/your-love-honorebel-ft-charly-black-club-remix - - - - - - - - - - - -💥🎤🎤🎼🎹🎹 #flstudio12 #flstudio #flgang #unsignedhype #unsignedartist #undergroundhiphop #pianocover #musicproduction #musicproducer #guccimane #migos #mikewillmadeit #kodakblack #djmustard #trapmusic #protools #logicpro #schoolboyq #djkhaled #johnlegend #solange #banger #anthem #vincestaples #vicmensa #richthekid #lilyachty #melodies #chancetherapper #childishgambino 🔥👆🏽👆🏽👆🏽🎧🎧🎶🎶🎶👉🏽🔥🔊
#migos#banger#vicmensa#anthem#vincestaples#protools#mikewillmadeit#schoolboyq#guccimane#djmustard#trapmusic#logicpro#chancetherapper#repost#solange#lilyachty#musicproduction#pianocover#flstudio12#djkhaled#unsignedhype#kodakblack#flgang#melodies#musicproducer#johnlegend#unsignedartist#flstudio#richthekid#childishgambino
0 notes
Photo
Jaachi Brings Taiwanese Night Market For Unique ADE Music, Food & Drink Event By: Deep House Amsterdam - Deep House Amsterdam Discover what’s big in Taiwan as the Jaachi Night Market brings ADE the unique taste of the Taiwanese DJ scene as Jaachi (aka Night Market in Taiwanese) descends on Europe with a unique Thursday night event. The event, which is hosted by 9Kick and AMSbookings.ASIA will feature 8 of the... http://www.deephouseamsterdam.com/jaachi-tainwanese-ade-night-market/ #9Kick, #ADE2017, #AMSbookingsASIA, #AmsterdamDanceEvent, #AprilRed, #DJCode, #Dwagie, #Jaachi, #Lujiachi, #RayRay, #ShioTian, #SoniaCalico, #Tsunano
#9Kick#ADE 2017#AMSbookings.ASIA#amsterdam dance event#April Red#DJ Code#Dwagie#Jaachi#Lujiachi#RayRay#Shio Tian#Sonia Calico#Tsunano#ADE
0 notes
Photo
Lmfao. 😂😂😂😂😂😂😂😂😂😂😂😂#djcode #djlife #facts 💯💯💯💯💯💯 (at Creative Life)
0 notes