How does a relational database work
A beginner’s guide to ACID and database transactions
A beginner’s guide to database locking and the lost update phenomena
| import java.util.List; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.springframework.cache.Cache; | |
| import org.springframework.cache.support.SimpleValueWrapper; | |
| import com.google.common.base.Optional; | |
| import com.google.common.cache.CacheBuilder; | |
| import com.google.common.cache.CacheBuilderSpec; |
| import java.io.File; | |
| import java.io.UnsupportedEncodingException; | |
| import java.net.URLDecoder; | |
| public class WindowsExeFile { | |
| private final File file; | |
| public WindowsExeFile(String rawPath) { | |
| this.file = convertToFile(rawPath); |
| <ng-template #followingpost let-author="author" let-age="age" let-text="text" let-badge="badge"> | |
| <div class="container-fluid"> | |
| <div class="card"> | |
| <div class="header"> | |
| <h4 class="title">{{ author }}</h4> | |
| <p class="category">il y a {{ age }} jours</p> | |
| </div> | |
| <div class="content" [innerHTML]="text"> | |
| </div> |
| package com.example; | |
| import com.vaadin.shared.ui.grid.DropMode; | |
| import com.vaadin.ui.Grid; | |
| import com.vaadin.ui.GridDragSource; | |
| import com.vaadin.ui.GridDropTarget; | |
| import com.vaadin.ui.VerticalLayout; | |
| import java.util.List; |
| import javax.xml.bind.JAXBContext; | |
| import javax.xml.bind.JAXBException; | |
| import javax.xml.bind.Marshaller; | |
| /** | |
| * Created by User on 20.03.2017. | |
| */ | |
| public class Demo { | |
| public static void main(String[] args) throws JAXBException { | |
| JAXBContext context = JAXBContext.newInstance(Type.class, InnerType.class); |
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.
| import java.io.BufferedOutputStream; | |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileOutputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.sql.Connection; | |
| import java.sql.PreparedStatement; |
| package main | |
| import ( | |
| "crypto/tls" | |
| "crypto/x509" | |
| "flag" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| ) |