lala
- 1
- a
- x
- y
- b
- a
- 2
#include <vector> | |
#include <iostream> | |
using namespace std; | |
// A utility function to add an edge in an | |
// undirected graph. | |
void addEdge(vector<int> adj[], int u, int v) | |
{ | |
adj[u].push_back(v); |
Verifying my Blockstack ID is secured with the address 1aHsQcBikpAcGimerzqa6oNP8aCBi9Fbd https://explorer.blockstack.org/address/1aHsQcBikpAcGimerzqa6oNP8aCBi9Fbd |
u |
#!/usr/bin/ruby | |
words = ["apple", "car", "bus", "tools"] | |
word = words.sample | |
puzzle = "_" * word.length | |
ERROR_THRESHOLD = 7 | |
error_count = 0 | |
puts "Puzzle: #{puzzle}" | |
while puzzle != word and error_count < ERROR_THRESHOLD do |
lala
#!/usr/bin/ruby | |
abort "Usage: ./subshuffle.rb <srt-file>" if ARGV.count != 1 | |
subs = [] | |
text = "" | |
open(ARGV.last) do |file| | |
file.each do |line| | |
line.strip! |
. |
--- grub.cfg.orig 2014-01-09 15:32:35.434458513 +0000 | |
+++ grub.cfg.ssd 2014-01-09 15:38:44.752289861 +0000 | |
@@ -60,7 +60,7 @@ | |
insmod part_msdos | |
insmod lvm | |
insmod ext2 | |
-set root='lvm/ubuntu--vg-root' | |
+set root='(hd0,1)' | |
if [ x$feature_platform_search_hint = xy ]; then | |
search --no-floppy --fs-uuid --set=root --hint='lvm/ubuntu--vg-root' 988304c3-2da0-455d-8a97-124956557e37 |