Tumgik
#CodeGeek
fellametshirts · 1 year
Text
Tumblr media
Coding is my Superpower! 💻 Unleash your Programming Prowess with this Stylish T-Shirt! 🚀 Embrace the World of Algorithms and Debugging in Style! 💡 Wear it Proudly, Geek it Smartly! 🤓
0 notes
techpaathshala · 2 years
Text
🤔 Think you know the answer? Put your knowledge to the test with our latest quiz! . . 🎯 Don't miss a single post by turning on post notifications! 🔔 🎯 If you like our content, hit the follow button to stay in the loop! 👉 @techpaathshala
Tumblr media
0 notes
mesiiizeapk · 8 months
Text
0 notes
learncodes · 11 months
Text
Learn Codes
Tumblr media
🚀 Unlock the World of Coding with Learn Codes! 🚀
Are you ready to embark on an exciting coding journey? 🌟 Our Online 1:1 Coding Classes are here to take your skills to the next level! 🖥️💡
🌐 Explore the world of coding from the comfort of your home. 👩‍💻 Personalized 1:1 sessions with expert instructors. 📈 Beginner to advanced coding courses available. 💡 Boost your problem-solving skills and creativity. 🌈 Join a community of passionate coders. 🎉 Start your coding adventure today!
Ready to get started? 🚀 🌐 Visit our website: https://learncodes.co.in 📞 Call us at +91-7544842581
0 notes
samyakcomputersclasses · 10 months
Text
Programmers On Different Platforms 💻😃 . . . Join Now Samyak Computer Classes Contact No. +91-9772271081 #ProgrammersOnDifferentPlatforms #CodingCommunity #Techies #CodeLife #DeveloperLife #ProgrammingLanguages #CodeGeek #TechWorld #SoftwareDevelopment #CodingSkills #reelsindia #reelsinstagram #samyak #reels #samyakcomputerclasses #viral #webdevelopment #html #css #webdesigner #webdeveloper #uidesign #ux #website #Coding #reelitfeelit #samyakclasses #Programming #Programming #explore
1 note · View note
Text
Tumblr media
Elevate your business with Greemus Software Technologies! 🚀 We specialize in software development, web and mobile app development, digital marketing, business development, graphics designing, database management, and software testing. take your brand to new heights! 💻📱✨ #GreemusTech#TechSolutions#BusinessGrowth
☎️Contact us:- 8328696034 🌐visit now:- www.greemus.com . . #iOSDevelopment#iOSApp#SwiftLang#AppDevelopment#AppLaunch#AppMarketing#AppStore#Tech#ios#Android#NewApp#AppDownload#AppReview#AppPromotion#AppDesigners#TechInnovation#AppCreation#AppDeveloperLife#TechSolutions#instagood#Xcode#SwiftUI#IOSDevices #MobileAppDesign#CodeGeek#greemussoftwaretechnologies#software#solutions#greemussoftwaretechnologies
0 notes
astravagantcoding · 3 years
Text
Series 1 - Paneity
The following posts will concern Paneity, a personal project that is a new programming language. It has been written in Python, and there already exists a basic IDE, all made by me.
0 notes
edgarian12 · 7 years
Photo
Tumblr media
So excited! In order to prepare for our #javascript assessment next week I'm hosting a trivia game with prizes from the fantastic ppl at @gocodeup for the winners in the #Ulysses cohort!! #fun #code #girlcoder #html #css #jquery #WIT #codegeek #codeninja #notes
0 notes
codegeekio-blog · 7 years
Text
Air pollution turned into ink turned into street art, sends a powerful message
Air pollution turned into ink turned into street art, sends a powerful message
Roaring street art inked with air pollution.
If you live in a big city like London, you most probably know that air pollution is slowly killing you.
One of the biggest contributors to toxic emissions are vehicles. So an Indian startup is sucking the problem from its roots. Literally. From the place it becomes a problem.
It blocks diesel emissions at the point of contact with the atmosphere,…
View On WordPress
0 notes
javatutorial4y · 6 years
Photo
Tumblr media
Java for Absolute Beginners https://t.co/fRjTzdjCK4 Learn to Code ☞ https://t.co/yH3xcqo8la CodeGeek's Discuss ☞ https://t.co/NDwgvPMop3 Playlists Video Tutorial ☞ https://t.co/De66kYMV9F #Java https://t.co/K4cPlgtIuj http://twitter.com/JavaTutorialaz/status/1063290760055808000
4 notes · View notes
iamcodegeek · 6 years
Photo
Tumblr media
Python Programming - Complete Beginner Course ☞ https://t.co/aqp60O5IIw #Learntocode #codegeek #developer #programmer XmGQWlSBF https://t.co/hBjZmyOBlG http://twitter.com/iamcodegeek/status/1038894853235662848
6 notes · View notes
techpaathshala · 2 years
Text
Part 2- Our top picks for code editors are sure to enhance your productivity and coding experience. Which one is your go-to? Let us know in the comments!
🎯 Don't miss a single post by turning on post notifications!
🎯 If you like our content, hit the follow button to stay updated!!
👉 @techpaathshala
Tumblr media Tumblr media Tumblr media Tumblr media
0 notes
anesthesiasin · 6 years
Link
CodeGeek/Hacker/MathKid
2 notes · View notes
codehunter · 3 years
Text
How to select/reduce a list of dictionaries in Flask/Jinja
I have a Jinja template with a list of dictionaries. Order matters. I'd like to reduce the list or lookup values based on the keys/values of the dictionaries. Here's an example:
{% set ordered_dicts = [ { 'id': 'foo', 'name': 'My name is Foo' }, { 'id': 'bar', 'name': 'My name is Bar' } ]%}
If I have a variable some_id = 'foo', how do I get 'My name is Foo' out of ordered_dicts in my Jinja template?
I tried select() and selectattr() but couldn't figure them out based on the documentation. Here's what I tried:
{{ ordered_dicts|selectattr("id", "foo") }}
That outputs:
<generator object _select_or_reject at 0x10748d870>
I don't think I'm understanding the use of select() and selectattr() properly.
Do I need to iterate over the list and do the lookup manually?
Update:
As codegeek and gipi pointed out, I need to do something like this with the generator:
{{ ordered_dicts|selectattr("id", "foo")|list }}
The resulting error: TemplateRuntimeError: no test named 'foo', which clarifies how selectattr() works. The second argument has to be one of the builtin tests. As far as I can tell, none of these tests will let me check whether the value associated with a key matches another value. Here's what I'd like to do:
{{ ordered_dicts|selectattr("id", "sameas", "foo")|list }}
But that doesn't work, since the sameas test checks whether two objects are really the same object in memory, not whether two strings/numbers are equivalent.
So is it possible to pick an item based on a key/value comparison test?
https://codehunter.cc/a/flask/how-to-select-reduce-a-list-of-dictionaries-in-flask-jinja
0 notes
Text
Tumblr media Tumblr media Tumblr media Tumblr media
.
.
#iOSDevelopment#iOSApp#SwiftLang#AppDevelopment#AppLaunch#AppMarketing#AppStore#Tech#ios#Android#NewApp#AppDownload#AppReview#AppPromotion#AppDesigners#TechInnovation#AppCreation#AppDeveloperLife#TechSolutions#instagood#Xcode#SwiftUI#IOSDevices
#MobileAppDesign#CodeGeek#greemussoftwaretechnologies#software#solutions #greemussoftwaretechnologies
0 notes
Photo
Tumblr media
Angular and Nodejs Integration Tutorial ☞ https://t.co/3lX1g1NOHh Learn to Code ☞ https://t.co/p149oqUFWX CodeGeek's Discuss ☞ https://t.co/8tKjQAKpKf Playlists Video Tutorial ☞ https://t.co/KfXcXSdRqY #Angular #NodeJS https://t.co/7Xhk86ft8A http://twitter.com/AngularTutor/status/1063278428877516805
0 notes