Skip to content

Commit be62e53

Browse files
committed
Corrected some mistakes from posts/
1 parent 723b55d commit be62e53

23 files changed

+23
-46
lines changed

posts/2012/01/17/ifconfig-vs-iproute.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-01-17
43
title: ifconfig vs iproute2
5-
tags: [iproute2, net-tools, ifconfig, ip, route, arp, netlink, IPv4, IPv6]
64
author: Alexandru Juncu
5+
tags: iproute2, net-tools, ifconfig, ip, route, arp, netlink, IPv4, IPv6
76
---
87

98

posts/2012/02/26/copying-files.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-02-26
43
title: Copying files
5-
tags: [scp, nc, netcat, python]
64
author: Alexandru Juncu
5+
tags: scp, nc, netcat, python
76
---
87

98
You are on a (Linux) box and you want to transfer some files on another

posts/2012/02/28/tips-on-coding-style.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-02-28
43
title: Tips on coding style
5-
tags: [C, coding style, Linux, checkpatch.pl]
64
author: Alexandru Juncu
5+
tags: C, coding style, Linux, checkpatch.pl
76
---
87

98
Good programmers know that writing code is more than just... writing code.

posts/2012/03/27/exploiting-environment-variables.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-03-27
43
title: Exploiting environment variables
5-
tags: [exploit, PATH]
64
author: Alexandru Juncu
5+
tags: exploit, PATH
76
---
87

98
Environment variables are sometimes very important when creating new

posts/2012/04/03/gdb-a-basic-workflow.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-04-03
43
title: GDB: A basic workflow
5-
tags: [gdb, debugging, cli, .gdbinit, backtrace, breakpoint]
64
author: Andrei
5+
tags: gdb, debugging, cli, .gdbinit, backtrace, breakpoint
76
---
87

98
The GNU Debugger Command (GDB) is a very useful debugging tool, widely used in the C environment.

posts/2012/04/21/git-speeding-workflow.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-04-21
43
title: Git: speeding workflow
5-
tags: [git, .gitconfig, alias, speed, log, config]
64
author: Andrei
5+
tags: git, .gitconfig, alias, speed, log, config
76
---
87

98
If you didn't read the [techblog Git Tips and Good Practices][1] article yet, you should, as it offers tips every git user should know, together with some very useful references.

posts/2012/04/23/exploiting-environment-variables-part-2.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-04-23
43
title: Exploiting environment variables Part 2
5-
tags: [gcc, shared object, dynamic library, LD_LIBRARY_PATH]
64
author: Alexandru Juncu
5+
tags: gcc, shared object, dynamic library, LD_LIBRARY_PATH
76
---
87

98
Based on the [previous

posts/2012/04/29/valgrind-introduction.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-04-29
43
title: Valgrind introduction
5-
tags: [valgrind]
64
author: Mihai
5+
tags: valgrind
76
---
87

98
A good programmer has a variety of tools to help him in developing good

posts/2012/04/30/making-your-shell-life-easier.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-04-30
43
title: Making your shell life easier
5-
tags: [CLI, bash, shell, terminal, tmux, screen, jobs, fg, pushd, popd]
64
author: Alexandru Juncu
5+
tags: CLI, bash, shell, terminal, tmux, screen, jobs, fg, pushd, popd
76
---
87

98
Most Linux users prefer to use the CLI because of its efficiency. But

posts/2012/05/08/gnu-make.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-05-08
43
title: GNU Make
5-
tags: [make, Makefile, makefile]
64
author: Mihai Tiriplica
5+
tags: make, Makefile, makefile
76
---
87

98
In working with large projects it is necessary to compile from multiple

posts/2012/06/23/git-useful-aliases.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-06-23
43
title: Git - Useful Aliases
5-
tags: [SCM, Git, tip, good practice, alias]
64
author: Mihai Maruseac
5+
tags: SCM, Git, tip, good practice, alias
76
---
87

98
This is the third article about [git][git] on this blog. It is highly recommended

posts/2012/07/29/a-weird-behaviour-in-c.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-07-29
43
title: A Weird Behaviour Of C
5-
tags: [C, undefined behaviour, sequence points]
64
author: Mihai Maruseac
5+
tags: C, undefined behaviour, sequence points
76
---
87

98
Let us start from a common mistake made by programmers learning simple data

posts/2012/08/18/tracing-processes-for-fun-and-profit.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-08-18
43
title: Tracing processes for fun and profit
5-
tags: [trace, strace, ptrace]
64
author: Mihai Maruseac
5+
tags: trace, strace, ptrace
76
---
87

98
After talking about [Valgrind][valgrind-post] and [GDB][gdb-post], it is time

posts/2012/09/10/intro-to-ssh.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-09-10
43
title: Introduction to SSH
5-
tags: [SSH, security, remote access]
64
author: Silviu-Mihai Popescu
5+
tags: SSH, security, remote access
76
---
87

98
This is an article aiming to familiarize the reader with the features and benefits of using [Secure Shell (SSH)][ssh], particularly with the [OpenSSH][openssh] implementation. SSH is an application level protocol used for secure data communication, whether that means remote shell access, command execution, file transfer and some other aspects described in this article. It was meant to be a replacement for existing insecure remote shell protocols such as `telnet`, `rsh` and `rexec` which send information in plaintext, including usernames and passwords.

posts/2012/09/18/from-0-to-cryptography.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-09-18
43
title: From 0 to cryptography
5-
tags: [cryptography, encryption, security, rsa, gpg]
64
author: Tiberiu Barbu
5+
tags: cryptography, encryption, security, rsa, gpg
76
---
87

98
This guide is designed to explain why you need to hide information and how can

posts/2012/10/05/sql.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-10-05
43
title: The fast-track, hands-on, no-nonsense introduction to SQL
5-
tags: [SQL, RDBMS]
64
author: Dan Șerban
5+
tags: SQL, RDBMS
76
---
87

98
Rather than relying on dry explanations of mathematical set theory, this tutorial is organized as a survey of SQL statements and techniques. It is designed to let you infer from examples what SQL is all about as well as the kinds of problems it can help you solve.

posts/2012/10/25/grub2-and-iso-boot.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2012-10-25
43
title: Grub2 and ISO boot
5-
tags: [grub2, bootloader, linux, kernel, iso, image]
64
author: Alexandru Juncu
5+
tags: grub2, bootloader, linux, kernel, iso, image
76
---
87

98
Note: This article focuses on Debian based Linux distributions.

posts/2013/02/19/ctf-return-to-libc.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-02-19
43
title: GiTS 2013 CTF -- return-to-libc -- pwnable 250
5-
tags: [exploit, ctf, return-to-libc, strace, debug, gdb, write-up]
64
author: Lucian Cojocar
5+
tags: exploit, ctf, return-to-libc, strace, debug, gdb, write-up
76
---
87

98
# Introduction

posts/2013/03/18/git-is-the-answer-1.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-03-18
43
title: Git Is The Answer 1/3
5-
tags: [git]
64
author: Răzvan Deaconescu and Mihai Maruseac
5+
tags: git
76
---
87

98
We focus again on [git][git]. This time, we will present some real-world

posts/2013/03/22/git-is-the-answer-2.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-03-22
43
title: Git Is The Answer 2/3
5-
tags: [git]
64
author: Răzvan Deaconescu and Mihai Maruseac
5+
tags: git
76
---
87

98
The second article on advanced [git][git] topics is focused on cases where

posts/2013/03/26/git-is-the-answer-3.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-03-26
43
title: Git Is The Answer 3/3
5-
tags: [git]
64
author: Răzvan Deaconescu and Mihai Maruseac
5+
tags: git
76
---
87

98
Finally, the third article on advanced [git][git] topics will focus on things

posts/2013/06/20/shell-tips-and-tricks-for-file-editing.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-06-20
43
title: Shell tips and tricks for log files
5-
tags: [CLI, bash, shell, files, text, truncate, tee, tail, follow]
64
author: Alexandru Juncu
5+
tags: CLI, bash, shell, files, text, truncate, tee, tail, follow
76
---
87

98
Here are are some small things you might find useful when you need to

posts/2013/10/19/facebook-hackathon-live-blogging.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
layout: post
32
date: 2013-10-19
43
title: Facebook Hackathon Live Blogging
5-
tags: [facebook, hackathon, live, blogging, coders]
64
author: Alex Palcuie & Marius Ungureanu
5+
tags: facebook, hackathon, live, blogging, coders
76
---
87

98
<div class='right'>

0 commit comments

Comments
 (0)