load without any analysis (file header at offset 0x0): r2 -n /path/to/file
- analyze all:
aa
- show sections:
iS
- list functions:
afl
- list imports:
ii
- list entrypoints:
ie
- seek to function:
s sym.main
<persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" | |
version="2.0"> | |
<persistence-unit name="sample"> | |
<provider>org.hibernate.ejb.HibernatePersistence</provider> | |
<class>org.sample.entities.Entity</class> | |
<properties> |
SELECT /* + RULE */ | |
df.tablespace_name AS "Tablespace" | |
,df.bytes / (1024 * 1024 * 1024) AS "Size (GB)" | |
,Trunc(fs.bytes / (1024 * 1024 * 1024)) AS "Free (GB)" | |
FROM ( | |
SELECT tablespace_name | |
,Sum(bytes) AS bytes | |
FROM dba_free_space | |
GROUP BY tablespace_name | |
) fs |
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.
git revert {commit_id}
Deleting the last commit is the easiest case. Let's say we have a remote origin with branch master that currently points to commit dd61ab32. We want to remove the top commit. Translated to git terminology, we want to force the master branch of the origin remote repository to the parent of dd61ab32:
In this tutorial, I will be explaining how to set up a simple webhook to relay your tweets to a Discord channel