Skip to content
w3toppers.com
  • Programming
    • javascript
    • c
    • java
    • c#
    • c++
    • php
    • r
  • android

hash

Is it possible to decrypt MD5 hashes?

No. MD5 is not encryption (though it may be used as part of some encryption algorithms), it is a one way hash function. Much of the original data is actually “lost” as part of the transformation. Think about this: An MD5 is always 128 bits long. That means that there are 2128 possible MD5 hashes. … Read more

Categories hash Tags cryptography, encryption, hash, md5 Leave a comment

How can it be impossible to “decrypt” an MD5 hash? [duplicate]

Basically it’s because the output of MD5 contains less information than the input. This is basically what distinguishes a hash algorithm from an encryption algorithm. Here’s a simple example: imagine an algorithm to compute the hash of a 10-digit number. The algorithm is “return the last 2 digits.” If I take the hash of 8023798734, … Read more

Categories hash Tags encryption, hash, md5 Leave a comment

Why are XOR often used in java hashCode() but another bitwise operators are used rarely?

Of all bit-operations XOR has the best bit shuffling properties. This truth-table explains why: A B AND 0 0 0 0 1 0 1 0 0 1 1 1 A B OR 0 0 0 0 1 1 1 0 1 1 1 1 A B XOR 0 0 0 0 1 1 1 0 … Read more

Categories hash Tags hash, hashcode, xor Leave a comment

Is MD5 still good enough to uniquely identify files?

Yes. MD5 has been completely broken from a security perspective, but the probability of an accidental collision is still vanishingly small. Just be sure that the files aren’t being created by someone you don’t trust and who might have malicious intent.

Categories hash Tags hash, md5 Leave a comment

Why is ‘397’ used for ReSharper GetHashCode override?

Probably because 397 is a prime of sufficient size to cause the result variable to overflow and mix the bits of the hash somewhat, providing a better distribution of hash codes. There’s nothing particularly special about 397 that distinguishes it from other primes of the same magnitude.

Categories hash Tags hash, hash-code-uniqueness, resharper Leave a comment

How are hash functions like MD5 unique?

You’re correct that it cannot guarantee uniqueness, however there are approximately 3.402823669209387e+38 different values in a 32 digit hex value (16^32). That means that, assuming the math behind the algorithm gives a good distribution, your odds are phenomenally small that there will be a duplicate. You do have to keep in mind that it IS … Read more

Categories hash Tags hash, md5, theory, uniqueidentifier Leave a comment

Can two different strings generate the same MD5 hash code?

For a set of even billions of assets, the chances of random collisions are negligibly small — nothing that you should worry about. Considering the birthday paradox, given a set of 2^64 (or 18,446,744,073,709,551,616) assets, the probability of a single MD5 collision within this set is 50%. At this scale, you’d probably beat Google in … Read more

Categories hash Tags cryptography, hash, hash-collision, md5 Leave a comment

How long to brute force a salted SHA-512 hash? (salt provided)

In your case, breaking the hash algorithm is equivalent to finding a collision in the hash algorithm. That means you don’t need to find the password itself (which would be a preimage attack), you just need to find an output of the hash function that is equal to the hash of a valid password (thus … Read more

Categories hash Tags brute-force, cryptography, hash, salt, sha Leave a comment

When is CRC more appropriate to use than MD5/SHA1?

CRC works fine for detecting random errors in data that might occur, for example, from network interference, line noise, distortion, etc. CRC is computationally much less complex than MD5 or SHA1. Using a hash function like MD5 is probably overkill for random error detection. However, using CRC for any kind of security check would be … Read more

Categories hash Tags crc, embedded, hash Leave a comment

Is calculating an MD5 hash less CPU intensive than SHA family functions?

Yes, MD5 is somewhat less CPU-intensive. On my Intel x86 (Core2 Quad Q6600, 2.4 GHz, using one core), I get this in 32-bit mode: MD5 411 SHA-1 218 SHA-256 118 SHA-512 46 and this in 64-bit mode: MD5 407 SHA-1 312 SHA-256 148 SHA-512 189 Figures are in megabytes per second, for a “long” message … Read more

Categories hash Tags cryptography, hash, md5, sha1, sha2 Leave a comment
Older posts
Page1 Page2 Next →
  • Modify a globally scoped variable inside of an anonymous function
  • How to get/set a pandas index column title or name?
  • Create a GUID / UUID in Java
  • Is having a concurrent.futures.ThreadPoolExecutor call dangerous in a FastAPI endpoint?
  • How to round up a number to a precision of tenths in Javascript?
  • How can I get the height of a widget?
  • How can I convert row names into the first column?
  • “SyntaxError: Non-ASCII character …” or “SyntaxError: Non-UTF-8 code starting with …” trying to use non-ASCII text in a Python script
  • How can I get a character array from a string?
  • Plotting time in with Matplotlib
© 2021 w3toppers.com
  • .htaccess
  • .net
  • .net-2.0
  • .net-3.5
  • .net-4.0
  • .net-4.5
  • .net-core
  • 2d
  • 3d
  • 64-bit
  • 7zip
  • access-denied
  • access-modifiers
  • accessibility
  • acrobat
  • actionscript-3
  • active-directory
  • activeadmin
  • activerecord
  • activex
  • adsense
  • aem
  • aero
  • aes
  • afnetworking
  • airflow
  • ajax
  • alamofire
  • alert
  • algorithm
  • amazon-dynamodb
  • amazon-ec2
  • amazon-redshift
  • amazon-s3
  • amazon-sqs
  • amazon-web-services
  • anaconda
  • android
  • android-5.0-lollipop
  • android-asynctask
  • android-camera
  • android-dialogfragment
  • android-emulator
  • android-geofence
  • android-gradle-plugin
  • android-layout
  • android-ndk
  • android-sqlite
  • android-studio
  • android-support-library
  • android-widget
  • angular
  • angular-cli
  • angularjs
  • animation
  • annotations
  • ansible
  • ant
  • antlr
  • aop
  • apache
  • apache-flex
  • apache-kafka
  • apache-spark
  • apache-spark-sql
  • apache2
  • api
  • app-store-connect
  • apple-push-notifications
  • apple-touch-icon
  • architecture
  • arduino
  • arm
  • arrays
  • artificial-intelligence
  • asp-classic
  • asp.net
  • asp.net-core
  • asp.net-core-mvc
  • asp.net-identity
  • asp.net-mvc
  • asp.net-mvc-2
  • asp.net-mvc-3
  • asp.net-mvc-4
  • asp.net-mvc-routing
  • asp.net-session
  • asp.net-web-api
  • assemblies
  • assembly
  • assert
  • asset-pipeline
  • associations
  • associativity
  • asynchronous
  • atom-editor
  • audio
  • authentication
  • authorization
  • autocomplete
  • autolayout
  • automapper
  • automated-tests
  • automation
  • autotools
  • avd
  • awk
  • aws-lambda
  • axios
  • azure
  • azure-active-directory
  • azure-ad-b2c
  • azure-cosmosdb
  • azure-devops
  • azure-service-fabric
  • azure-web-roles
  • azure-webjobs
  • backbone.js
  • background
  • backup
  • barcode
  • base64
  • bash
  • basic
  • basic-authentication
  • batch-file
  • bcrypt
  • bdd
  • benchmarking
  • big-o
  • binary
  • binary-tree
  • binding
  • bison
  • bit-manipulation
  • bittorrent
  • bitwise-operators
  • blackberry
  • blazor
  • blogger
  • bluetooth
  • bluetooth-lowenergy
  • bnf
  • bokeh
  • boolean
  • boost
  • bootstrap-4
  • bootstrapping
  • botframework
  • boto
  • bower
  • branch
  • browser
  • browser-history
  • build
  • build-process
  • button
  • c
  • c-preprocessor
  • c#
  • c#-4.0
  • c#-6.0
  • c++
  • c++-cli
  • c++-faq
  • c++11
  • c++14
  • c99
  • caching
  • cakebuild
  • cakephp
  • callback
  • callstack
  • camera
  • canvas
  • carriage-return
  • cassandra
  • casting
  • cdn
  • celery
  • centos
  • certificate
  • cgi
  • char
  • character-encoding
  • chart.js
  • charts
  • checkbox
  • checksum
  • chef-infra
  • chromecast
  • ckeditor
  • clang
  • class
  • classification
  • clearcase
  • clickonce
  • client-server
  • cllocationmanager
  • clojure
  • clone
  • closures
  • clr
  • cluster-analysis
  • cmake
  • cmd
  • cocoa
  • cocoa-touch
  • code-coverage
  • code-first
  • code-formatting
  • code-readability
  • coded-ui-tests
  • codeigniter
  • coding-style
  • coffeescript
  • coldfusion
  • collada
  • collections
  • collision-detection
  • colors
  • com
  • comet
  • command
  • command-line
  • command-line-interface
  • comments
  • comparable
  • comparison
  • compilation
  • compiler-construction
  • compiler-errors
  • composer-php
  • compression
  • computer-science
  • concurrency
  • conda
  • conditional
  • conditional-operator
  • conditional-statements
  • configuration
  • console
  • constructor
  • context-free-grammar
  • contextmenu
  • continuous-integration
  • controller
  • cookies
  • coq
  • cordova
  • core-data
  • corflags
  • cors
  • couchdb
  • cpu
  • cpu-architecture
  • cqrs
  • crash
  • create-react-app
  • cron
  • crontab
  • cross-browser
  • cross-compiling
  • crt
  • cryptography
  • csh
  • csrf
  • css
  • css-float
  • css-selectors
  • css-transitions
  • csv
  • cucumber
  • cuda
  • curl
  • curly-braces
  • currency
  • curve
  • curve-fitting
  • cx-oracle
  • cygwin
  • cython
  • d3.js
  • dagger
  • dapper
  • dart
  • dashcode
  • data-binding
  • data-oriented-design
  • data-structures
  • database
  • database-design
  • databricks
  • dataframe
  • datatable
  • datatables
  • date
  • datepicker
  • datetime
  • db2
  • ddl
  • debian
  • debugging
  • decorator
  • deep-learning
  • default
  • delegates
  • delphi
  • dependencies
  • dependency-injection
  • deployment
  • deprecated
  • design-patterns
  • devise
  • dialog
  • dialogflow-es
  • dictionary
  • diff
  • digest-authentication
  • digital-certificate
  • dijkstra
  • directory
  • directshow
  • directx
  • discord
  • discord.js
  • discord.py
  • disk
  • distinct
  • distributed
  • django
  • django-3.0
  • django-rest-framework
  • dll
  • dns
  • docker
  • docker-compose
  • dockerfile
  • doctrine-orm
  • documentation
  • dom
  • dom-events
  • domain-driven-design
  • domain-model
  • double
  • download
  • doxygen
  • drag-and-drop
  • drop-down-menu
  • dry
  • dsl
  • duplicates
  • dynamic
  • dynamic-languages
  • dynamic-programming
  • eclipse
  • ecmascript-6
  • editor
  • ef-code-first
  • el
  • elasticsearch
  • elf
  • elixir
  • emacs
  • email
  • embedded
  • embedded-fonts
  • ember.js
  • emulation
  • encapsulation
  • encoding
  • encryption
  • endianness
  • entity-framework
  • entity-framework-4
  • entity-framework-4.1
  • entity-framework-5
  • entity-framework-6
  • entity-framework-core
  • entity-relationship
  • entitymanager
  • enums
  • environment-variables
  • equality
  • erlang
  • erp
  • error-handling
  • escaping
  • etherpad
  • evaluate
  • events
  • excel
  • excel-2010
  • exception
  • exception-handling
  • exchange-server
  • exec
  • execution
  • expect
  • express
  • extjs
  • f#
  • facebook
  • facebook-fql
  • facebook-graph-api
  • facebook-opengraph
  • factory-pattern
  • fail-fast-fail-early
  • favicon
  • fflush
  • ffmpeg
  • file
  • file-extension
  • file-io
  • file-permissions
  • file-upload
  • filepath
  • filesystems
  • filter
  • find
  • finite-automata
  • firebase
  • firebase-authentication
  • firebase-hosting
  • firebase-realtime-database
  • firebase-storage
  • firebird
  • firefox
  • firefox-addon
  • flash
  • floating-point
  • flutter
  • fonts
  • for-loop
  • foreach
  • form-submit
  • format
  • formatting
  • forms
  • fortran
  • fragment-identifier
  • frameworks
  • free
  • ftp
  • full-text-search
  • function
  • functional-programming
  • g++
  • gallery
  • gcc
  • gdata
  • gdb
  • gdi+
  • gem5
  • generics
  • genetic-algorithm
  • gensim
  • geocoding
  • geolocation
  • geometry
  • git
  • git-bash
  • git-branch
  • git-submodules
  • github
  • github-actions
  • github-api
  • github-flavored-markdown
  • github-pages
  • gitignore
  • gitlab
  • gitlab-ci
  • gmail
  • gnuplot
  • gnuradio
  • go
  • godot
  • google-admin-sdk
  • google-analytics
  • google-api
  • google-app-engine
  • google-apps-script
  • google-bigquery
  • google-calendar-api
  • google-checkout
  • google-chrome
  • google-chrome-devtools
  • google-chrome-extension
  • google-closure-compiler
  • google-cloud-dataflow
  • google-cloud-datastore
  • google-cloud-firestore
  • google-cloud-functions
  • google-cloud-platform
  • google-cloud-storage
  • google-colaboratory
  • google-compute-engine
  • google-data-studio
  • google-drive-android-api
  • google-drive-api
  • google-fusion-tables
  • google-geocoder
  • google-glass
  • google-image-search
  • google-kubernetes-engine
  • google-maps
  • google-maps-android-api-2
  • google-maps-api-3
  • google-maps-sdk-ios
  • google-oauth
  • google-places-api
  • google-play
  • google-plus
  • google-sheets
  • google-sheets-api
  • google-visualization
  • google-voice
  • gpgpu
  • gps
  • gpu
  • gradle
  • grails
  • grammar
  • graph
  • graphics
  • graphql
  • graphviz
  • gremlin
  • grep
  • grid
  • gridview
  • groovy
  • grouping
  • gruntjs
  • gsm
  • gson
  • guice
  • guid
  • gulp
  • gunicorn
  • gwt
  • gzip
  • h.264
  • hadoop
  • hardware
  • hash
  • hashmap
  • hashtable
  • haskell
  • hbase
  • hdf5
  • header
  • heroku
  • hex
  • hibernate
  • hidden
  • highcharts
  • history
  • hive
  • homebrew
  • host
  • hover
  • HTML
  • html-agility-pack
  • html2canvas
  • html5-canvas
  • html5-video
  • http
  • http-headers
  • http-post
  • http-referer
  • http-status-code-404
  • http2
  • https
  • hudson
  • hyperledger-composer
  • hyperlink
  • ibeacon-android
  • ibm-cloud
  • ibm-mobilefirst
  • icons
  • ide
  • if-statement
  • iframe
  • iis
  • iis-7
  • iis-7.5
  • iis-express
  • image
  • image-manipulation
  • image-processing
  • imagemagick
  • immutability
  • import
  • indexing
  • infix-notation
  • inheritance
  • initialization
  • innerhtml
  • inno-setup
  • input
  • instagram
  • instagram-api
  • installation
  • installshield
  • integer
  • integration
  • intellij-idea
  • intellisense
  • interactive
  • interface
  • interface-builder
  • internationalization
  • internet-explorer
  • internet-explorer-11
  • internet-explorer-8
  • internet-explorer-9
  • interop
  • interrupt
  • introspection
  • inversion-of-control
  • io
  • ionic-framework
  • ionic2
  • ios
  • ios-simulator
  • ios4
  • ios5
  • ios6
  • ios7
  • ios8
  • ios9
  • ip
  • ipad
  • iphone
  • ipython
  • ipython-notebook
  • ironpython
  • iterator
  • itext
  • itextsharp
  • ivy
  • jackson
  • jacoco
  • jakarta-ee
  • jar
  • jasmine
  • jasper-reports
  • java
  • java-7
  • java-8
  • java-9
  • java-native-interface
  • java9
  • javafx
  • javafx-2
  • javafx-8
  • javascript
  • javascript-events
  • jaxb
  • jdbc
  • jekyll
  • jenkins
  • jersey
  • jestjs
  • jetty
  • jfreechart
  • jgit
  • jinja2
  • jmeter
  • jms
  • jmx
  • jna
  • jndi
  • join
  • joomla
  • jpa
  • jpeg
  • jq
  • jqgrid
  • jquery
  • jquery-mobile
  • jquery-plugins
  • jquery-select2
  • jquery-ui
  • jquery-validate
  • jsf
  • jsf-2
  • json
  • json-simple
  • json.net
  • jsonp
  • jsonschema
  • jsoup
  • jsp
  • jspdf
  • julia
  • junit
  • jupyter-notebook
  • jvm
  • jvm-bytecode
  • jwt
  • karate
  • karma-runner
  • kdb
  • kendo-ui
  • keras
  • key
  • keyboard
  • keyboard-shortcuts
  • keycloak
  • keystore
  • kivy
  • knockout.js
  • kotlin
  • kubernetes
  • lambda
  • language-agnostic
  • language-design
  • laravel
  • laravel-4
  • laravel-5
  • laravel-5.2
  • laravel-5.5
  • latex
  • layout
  • ldap
  • leaflet
  • less
  • libpng
  • libreoffice
  • limit
  • line-breaks
  • linked-list
  • linker
  • linq
  • linq-to-entities
  • linq-to-sql
  • linqpad
  • lint
  • linux
  • linux-kernel
  • liquid
  • lisp
  • list
  • listview
  • load
  • local-storage
  • localhost
  • localization
  • locking
  • log4j
  • log4net
  • logback
  • logging
  • login
  • logstash
  • loopbackjs
  • loops
  • low-level
  • lua
  • lucene
  • machine-learning
  • macos
  • macros
  • magento
  • magicalrecord
  • makefile
  • malloc
  • manifest
  • many-to-many
  • map
  • mapping
  • mapreduce
  • mariadb
  • markdown
  • math
  • mathematical-notation
  • mathematical-optimization
  • matlab
  • matplotlib
  • maven
  • maven-2
  • maven-3
  • md5
  • mdf
  • media
  • mediawiki
  • memory
  • memory-leaks
  • memory-management
  • mercurial
  • merge
  • meteor
  • methodology
  • methods
  • microdata
  • microservices
  • microsoft-graph-api
  • mime
  • mime-types
  • mmap
  • mobile
  • mobile-safari
  • mocha.js
  • mocking
  • mod-rewrite
  • modal-dialog
  • model-view-controller
  • module
  • modulus
  • momentjs
  • mongodb
  • mongodb-.net-driver
  • mongoose
  • monitoring
  • moq
  • mp3
  • mpi
  • ms-access
  • ms-access-2007
  • ms-access-2016
  • ms-word
  • msbuild
  • msys
  • msysgit
  • mule
  • multi-level
  • multicore
  • multipage
  • multipartform-data
  • multithreading
  • mvvm
  • mysql
  • namespaces
  • naming
  • naming-conventions
  • nan
  • nasm
  • native
  • navigation
  • neo4j
  • nestjs
  • netbeans
  • network-programming
  • networking
  • neural-network
  • newline
  • next.js
  • nexus
  • nfc
  • nfs
  • nginx
  • nhibernate
  • ninject
  • nlp
  • nltk
  • node.js
  • nodemon
  • nodes
  • nop
  • nosql
  • notepad++
  • npm
  • nsarray
  • nsdate
  • nsdateformatter
  • nsis
  • nsstring
  • nsurl
  • nuget
  • null
  • nullable
  • numbers
  • numpy
  • nunit
  • nuxt.js
  • oauth
  • oauth-2.0
  • obfuscation
  • object
  • objective-c
  • objective-c-blocks
  • objective-c++
  • ocaml
  • ocr
  • odata
  • odbc
  • office365
  • offline
  • okhttp
  • omnet++
  • onbeforeunload
  • onclick
  • ontime
  • oop
  • open-source
  • openapi
  • opencv
  • openerp-7
  • opengl
  • opengl-es
  • opengl-es-2.0
  • openid
  • openmp
  • openpyxl
  • openshift
  • openssl
  • openvg
  • operating-system
  • operators
  • optimization
  • oracle
  • orientation
  • orm
  • osx-lion
  • out-of-memory
  • outlook
  • output
  • overflow
  • owl
  • p2p
  • p5.js
  • pagination
  • paging
  • pairwise
  • palantir-foundry
  • pandas
  • pandoc
  • parallel-processing
  • parameters
  • parsing
  • passwords
  • path
  • payment-gateway
  • paypal
  • pcre
  • pdf
  • pdfbox
  • pdo
  • performance
  • perl
  • permissions
  • permutations
  • phantomjs
  • phone-number
  • php
  • phpmailer
  • phpmyadmin
  • phpstorm
  • picasso
  • pip
  • pixel
  • pkcs#12
  • playframework
  • playframework-2.0
  • plot
  • plotly
  • plsql
  • png
  • podcast
  • point
  • pointers
  • policy
  • polygon
  • polymer
  • polymorphism
  • popup
  • port
  • portability
  • position
  • posix
  • post
  • postback
  • postgresql
  • powerbi
  • powershell
  • powershell-2.0
  • preprocessor
  • printing
  • println
  • prism
  • process
  • profiling
  • programming-languages
  • progressive-web-apps
  • prolog
  • promise
  • properties
  • protocol-buffers
  • protocols
  • proxy
  • pthreads
  • publish
  • puppeteer
  • push
  • push-notification
  • puzzle
  • pycharm
  • pygame
  • pyinstaller
  • pylint
  • pymc3
  • pyopenssl
  • pyspark
  • pytest
  • python
  • python-2.7
  • python-3.x
  • python-imaging-library
  • python-requests
  • python-sphinx
  • python-telegram-bot
  • pytorch
  • qml
  • qt
  • qt4
  • quartz.net
  • queue
  • quotes
  • r
  • r-markdown
  • rabbitmq
  • random
  • range
  • raspberry-pi
  • raspberry-pi3
  • razor
  • razorengine
  • rdf
  • react-hook-form
  • react-native
  • react-router
  • react-router-v4
  • reactive-programming
  • reactjs
  • real-time
  • realm
  • recursion
  • redirect
  • redis
  • redux
  • refactoring
  • reference
  • reflection
  • regex
  • registry
  • regular-language
  • relational-algebra
  • relational-database
  • replace
  • reporting-services
  • repository-pattern
  • request
  • requirejs
  • resolve
  • resources
  • rest
  • restful-authentication
  • reverse
  • reverse-engineering
  • reverse-geocoding
  • rgl
  • rotation
  • rounding
  • routes
  • routing
  • rpc
  • ruby
  • ruby-on-rails
  • ruby-on-rails-3
  • ruby-on-rails-3.1
  • ruby-on-rails-3.2
  • ruby-on-rails-4
  • rubygems
  • rundll32
  • runtime-error
  • rust
  • rxjs
  • safari
  • salesforce
  • sapui5
  • sas
  • sass
  • sbt
  • scala
  • scale
  • scheduling
  • schema.org
  • scheme
  • scikit-learn
  • scope
  • scrapy
  • screen-scraping
  • scripting
  • scroll
  • sdk
  • search
  • security
  • sed
  • segmentation-fault
  • select
  • selenium
  • selenium-webdriver
  • semantic-web
  • sencha-touch
  • seo
  • serial-port
  • serialization
  • server
  • server-side
  • service
  • servicestack
  • servlets
  • session
  • session-cookies
  • sftp
  • sh
  • share
  • sharepoint
  • sharepoint-2010
  • shell
  • shiny
  • signalr
  • silverlight
  • silverlight-3.0
  • simd
  • simpledateformat
  • simplexml
  • singleton
  • sitecore
  • slack
  • slack-api
  • slf4j
  • sml
  • sms
  • smtp
  • soap
  • socket.io
  • sockets
  • solr
  • sorting
  • soundcloud
  • spam-prevention
  • sparql
  • special-characters
  • speech-recognition
  • split
  • spring
  • spring-batch
  • spring-boot
  • spring-mvc
  • spring-security
  • sprite
  • sprite-kit
  • sql
  • sql-server
  • sql-server-2005
  • sql-server-2008
  • sql-server-2008-r2
  • sql-server-2012
  • sql-server-ce
  • sqlite
  • sse
  • ssh
  • ssh-keys
  • ssis
  • ssl
  • ssl-certificate
  • ssms
  • ssrs-2008
  • stack
  • stack-trace
  • state
  • static
  • statistics
  • stdout
  • stl
  • stored-procedures
  • storyboard
  • stream
  • string
  • string-formatting
  • string-matching
  • struct
  • struts2
  • styles
  • subdomain
  • sublimetext
  • sublimetext2
  • sublimetext3
  • submit
  • svg
  • svn
  • swagger
  • swagger-ui
  • swift
  • swift2
  • swift3
  • swiftui
  • swing
  • switch-statement
  • symfony
  • synchronization
  • syntax
  • syntax-error
  • syntax-highlighting
  • system-verilog
  • system.reactive
  • tabs
  • tags
  • task-parallel-library
  • tcl
  • tcp
  • telegram
  • telephonymanager
  • templates
  • tensorflow
  • terminal
  • terminology
  • testing
  • testng
  • text
  • text-editor
  • text-processing
  • text-to-speech
  • textarea
  • tfs
  • themes
  • theory
  • three.js
  • time
  • time-complexity
  • time-series
  • timeout
  • timer
  • timezone
  • tkinter
  • tm
  • tmux
  • toggle
  • tomcat
  • tomcat7
  • tomcat8
  • tooltip
  • traits
  • transform
  • translation
  • transparency
  • travis-ci
  • tree
  • tridion
  • tsql
  • tuples
  • turtle-graphics
  • twilio
  • twitter
  • twitter-bootstrap
  • twitter-bootstrap-3
  • type-conversion
  • type-safety
  • types
  • typescript
  • ubuntu
  • uiactivityindicatorview
  • uibutton
  • uicollectionview
  • uiimage
  • uikit
  • uinavigationbar
  • uitableview
  • uitextfield
  • uiview
  • uiwebview
  • uml
  • Uncategorized
  • underscore.js
  • unicode
  • union
  • unique
  • unit-testing
  • unity3d
  • unix
  • unreachable-code
  • upload
  • url
  • url-rewriting
  • urlencode
  • urllib
  • usb
  • user-agent
  • user-interface
  • using-statement
  • utf-8
  • uuid
  • vagrant
  • valgrind
  • validation
  • variables
  • vb.net
  • vb6
  • vba
  • vbscript
  • vector
  • vector-graphics
  • vectorization
  • verilog
  • version
  • version-control
  • vhdl
  • video
  • video-streaming
  • view
  • vim
  • virtualbox
  • virtualenv
  • virtualization
  • visual-c++
  • visual-studio
  • visual-studio-2005
  • visual-studio-2008
  • visual-studio-2010
  • visual-studio-2012
  • visual-studio-2013
  • visual-studio-2015
  • visual-studio-2017
  • visual-studio-code
  • visualization
  • void
  • vue-component
  • vue.js
  • vuejs3
  • vuetify.js
  • w3c
  • wamp
  • wampserver
  • warnings
  • watchkit
  • wcf
  • wcf-binding
  • web
  • web-applications
  • web-config
  • web-crawler
  • web-scraping
  • web-services
  • web-standards
  • webdriver
  • webfonts
  • webgl
  • weblogic
  • webpack
  • webrtc
  • webserver
  • webservice-client
  • websocket
  • websphere
  • webview
  • wget
  • while-loop
  • width
  • wiki
  • wikipedia
  • wikipedia-api
  • wildfly
  • winapi
  • windbg
  • window
  • windows
  • windows-10
  • windows-7
  • windows-7-x64
  • windows-8
  • windows-8.1
  • windows-installer
  • windows-phone-7
  • windows-phone-8
  • windows-server-2003
  • windows-services
  • windows-subsystem-for-linux
  • windows-vista
  • windows-xp
  • winforms
  • wix
  • wkhtmltopdf
  • wolfram-mathematica
  • woocommerce
  • wordpress
  • wpf
  • wsdl
  • x11
  • x509
  • x86
  • x86-64
  • xamarin
  • xamarin.forms
  • xamarin.ios
  • xaml
  • xampp
  • xargs
  • xbee
  • xcode
  • xcode10
  • xcode4
  • xcode4.2
  • xcode6
  • xcode7
  • xcode8
  • xhtml
  • xml
  • xml-parsing
  • xml-serialization
  • xmlhttprequest
  • xna
  • xpath
  • xsd
  • xslt
  • xss
  • yahoo-finance
  • yaml
  • yarnpkg
  • yii
  • yii2
  • youtube
  • youtube-api
  • youtube-data-api
  • yql
  • yui
  • yum
  • z3
  • zend-framework
  • zeromq
  • zip