Skip to main content

Here’s how to get 30% off JailbreakCon tickets

wwjcwwjc

We’re now just a little less than 2 months away from this year’s JailbreakCon—an annual convention for hackers, developers, designers and jailbreakers. The event will be held at the Raddison Hotel in New Rochelle, New York on August 23 and 24.

Folks who are hoping to attend WWJC, but haven’t gotten their tickets yet, will be happy to hear that iDB has been given a special deal to pass on to our readers. For a limited time, folks using our coupon code can get a 30% discount off admission…

Before we get to the deal, let’s talk quickly about what you can expect from the convention. For starters, it will run for two days, with folks like pimskeks from the evad3rs hacking team, and developer NitoTV, giving presentations and running workshops.

Here’s the current speaker schedule, subject to change:

  • 09:00 – 09:30 @JoshMTucker
  • 09:35 – 10:05 @FilippoBigarella
  • 10:05 – 10:35 BREAK
  • 10:40 – 11:10 @NitoTV
  • 11:15 – 11:45 @Pimskeks from the @Evad3rs
  • 11:45 – 12:15 @Apocolipse269
  • 12:15 – 13:15 LUNCH
  • 13:20 – 13:50 @DHowett
  • 13:55 – 14:25 @iFile4iPhone
  • 14:25 – 14:55 BREAK
  • 15:00 – 15:30 @saurik
  • 15:35 – 16:05 @Rpetrich
  • 16:10 – 16:40 @B3ll
  • 16:45 – 17:15 @TCcentex

As aforementioned, the event will be held at the Raddison Hotel in New Rochelle, New York, about 30 minutes from Manhattan. Here’s a video tour of the space for those who haven’t seen it yet. It’s an interesting venue, split up into a number of sections.

And now for the discounts! As it stands, early bird tickets are being offered at a sale price, starting at $80 for a single day of admission, through July 23rd. But if you type in our special iDB discount code: iDB30, you’ll get an additional 30% off the price tag.

wwjc discountwwjc discount

This works with all ticket-types, including VIP, which cost just $122.50 a piece after our discount (normally $175). One-day tickets drop down to just $56 with the code, and two-day tickets come in at $98. So yeah, if you’re planning on going, get in on this now.

You can purchase tickets from the WWJC website by clicking here.

https://neveropen.tech/heres-how-to-get-30-off-jailbreakcon-tickets/?feed_id=134&_unique_id=683d23737851b

Comments

Popular posts from this blog

Bare Metal Billing Client Portal Guide

Contents Order a Bare Metal Server My Custom / Contract Pricing View Contract Details Location Management Order History & Status View Order Details Introduction The phoenixNAP Client Portal allows you to purchase bare metal servers and other phoenixNAP products and services. Using the intuitive interface and its essential tools, you can also easily manage your infrastructure. This quick guide will show you how to use the new form to order a bare metal server and how to navigate through new bare metal features within the phoenixNAP Client Portal. Order a Bare Metal Server An order form is an accordion-based process for purchasing phoenixNAP products. Our order form allows you to view the pricing and order multiple products from the same category at the same time. Note: The prices on the form are per month . A contract is not required. However, if you want a contracted price, you may be eligible for a discount depending on the quantity and ...

Add an element in Array to make the bitwise XOR as K

Given an array arr[] containing N positive integers, the task is to add an integer such that the bitwise Xor of the new array becomes K. Examples: Input: arr[] = 1, 4, 5, 6, K = 4 Output: 2 Explanation: Bit-wise XOR of the array is 6.  And bit-wise XOR of 6 and 2 is 4. Input: arr[] = 2, 7, 9, 1, K = 5 Output: 8   Approach: The solution to the problem is based on the following idea of bitwise Xor: If for two numbers X and Y , the bitwise Xor of X and Y is Z then the bitwise Xor of X and Z is Y. Follow the steps to solve the problem: Let the bitwise XOR of the array elements be X .  Say the required value to be added is Y such that X Xor Y = K . From the above observation, it is clear that the value to be added (Y) is the same as X Xor K . Below is the implementation of the above approach: C++ // C++ code to implement the above approach   #include using namespace std;   // Function to find the required value int find_...

Mahotas – Template Matching

In this article we will see how we can do template matching in mahotas. Template is basically a part or structure of image. In this tutorial we will use “lena” image, below is the command to load it.   mahotas.demos.load('lena') Below is the lena image      In order to do this we will use mahotas.template_match method Syntax : mahotas.template_match(img, template) Argument : It takes image object and template as argument Return : It returns image object    Note : Input image should be filtered or should be loaded as grey In order to filter the image we will take the image object which is numpy.ndarray and filter it with the help of indexing, below is the command to do this   image = image[:, :, 0] Below is the implementation    Python3 # importing required libraries import mahotas import mahotas.demos from pylab import gray, imshow, show import numpy as np import matplotlib.pyplot as plt      # loading image ...