- Place the coffee,html and scss files into a folder named pull_requests in the widgets folder
- Place the rb file into the jobs folder
Add nokogiri
to the gemfile:
gem 'nokogiri'
using UnityEngine; | |
using System.Collections; | |
public class Health : MonoBehaviour { | |
public int maxHealth; | |
public int currentHealth; | |
// Use this for initialization | |
void Start () { |
using UnityEngine; | |
using System.Collections; | |
public class Timer : MonoBehaviour { | |
private bool started = false; | |
public float currTime = 0; | |
void Update () { |
data class BadWord(val word:String, val severity:Int) | |
fun main(args: Array<String>) { | |
val chat = Chat() | |
while(true){ | |
println("Enter message...") | |
val input = readLine() |
#!/bin/sh | |
wget https://github.com/codercom/code-server/releases/download/1.696-vsc1.33.0/code-server1.696-vsc1.33.0-linux-x64.tar.gz | |
tar -xvzf code-server1.696-vsc1.33.0-linux-x64.tar.gz | |
mkdir -p /home/$USER/.local/bin | |
touch /home/$USER/.local/bin/start_ide.sh | |
echo '#!/bin/sh' >> /home/$USER/.local/bin/start_ide.sh | |
echo '/home/prit/code-server1.696-vsc1.33.0-linux-x64/code-server --password=local' >> /home/$USER/.local/bin/start_ide.sh |