1 Install Sandboxie https://www.sandboxie.com/
2 Run Celeste_Launcher_Gui.exe sandboxed
3 Run the Game
4 Alt tab
def truncate(text, max) | |
return text if text.size < max | |
last_word_index = text[max] == " " ? -1 : -2 # check if it's ending, then we can include it | |
text[0..max - 1].split(" ")[0..last_word_index].join(" ") | |
end |
module StringTruncate | |
def string_truncate(string, max_size, terminator="...") | |
size = 0 | |
words = [] | |
string.split.each do |word| | |
size += word.size | |
words << word | |
break if size >= max_size | |
size += 1 | |
end |
Mui = require('@material-ui/core'); | |
Mui.default = Mui; |
<a href="http://www.ezsniper.com"> | |
eBay sniper | |
</a> |
test |
1 Install Sandboxie https://www.sandboxie.com/
2 Run Celeste_Launcher_Gui.exe sandboxed
3 Run the Game
4 Alt tab
Verifying my Blockstack ID is secured with the address 14K9PN4un95zWoqBxYFDiL6TB6k2GN9KuQ https://explorer.blockstack.org/address/14K9PN4un95zWoqBxYFDiL6TB6k2GN9KuQ |
.thumbnail .btn { | |
background-color: #3db935; | |
color: white; | |
margin-bottom: 4px; | |
} | |
.thumbnail img { | |
object-fit: cover; | |
height: 250px; | |
} |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Riders Club</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- pt telefon, blocare zoom --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <!-- // librarie bootstrap --> | |
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css"> | |
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css"> <!-- //fonturi --> |
#!/bin/bash | |
# DOCKER | |
sudo apt-get update | |
sudo apt-get install git ruby -y | |
sudo apt-get install \ | |
linux-image-extra-$(uname -r) \ | |
linux-image-extra-virtual |