Bit Feed


Posted by albydarned 4 years ago

      
SELECT 
   SCHEMA_NAME(SCHEMA_ID) AS [Schema]
  ,SO.name AS [ObjectName]			   
  ,SO.Type_Desc AS [Ob...      
    

MORE


Posted by axelson 4 years ago

This will help you write a snippet like this inside a pipeline: find_items() |> IO.inspe...

      
# -*- mode: snippet -*-
# name: Piped Inspect
# key: pin
# --
|> IO.inspect(label: "$2$1 (`(buffer-na...      
    

MORE




Posted by Tima252020 5 years ago

Test

      

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')      
    

Posted by albydarned 5 years ago

      
import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')      
    

Posted by axelson 5 years ago

Trace all calls to a module without any external libraries

      
:dbg.tracer()
# Or replace the `_` with a function name to trace just that function
:dbg.tpl(MyModule...      
    

MORE


Posted by ityonemo 5 years ago

VSCode IO.inspect snippet for Elixir users

      
{
	"Inspect": {
		"prefix": "ins",
		"body": "|> IO.inspect(label: \"$0$TM_LINE_NUMBER\")",
		"descri...      
    

MORE


Posted by albydarned 5 years ago

      
import subprocess
subprocess.run(["ls", "-l"])      
    

Posted by albydarned 5 years ago

How to use the OAuth2 Library (https://github.com/scrogson/oauth2) to connect with GitHub in Elixir. ...

      
defmodule App.GitHub do
  use OAuth2.Strategy

  # Public API

  def client do
    OAuth2.Client.new(...      
    

MORE


Posted by albydarned 5 years ago

From: https://docs.microsoft.com/en-us/sql/t-sql/functions/row-number-transact-sql?view=sql-server-ve...

      
SELECT 
  ROW_NUMBER() OVER(ORDER BY name ASC) AS Row#,
  name, recovery_model_desc
FROM sys.database...      
    

MORE



Posted by lonelypatient 5 years ago

      
System.out.println("Hello World");      
    

Posted by albydarned 6 years ago

Credit: https://blog.sqlauthority.com/2016/06/07/sql-server-much-free-space-database/

      
SELECT
   SUBSTRING(a.FILENAME, 1, 1) Drive,
   [FILE_SIZE_MB] = convert(decimal(12, 2), round(a.size...      
    

MORE


Posted by albydarned 6 years ago

How to pass arguments to system.util.invokeAsynchronous in Inductive Automation Ignition using a pyth...

      
from functools import partial

def myfunc(someArg1, someArg2, optionalKwarg=None, optionalKwarg2=None...      
    

MORE


Posted by michael_andreuzza 6 years ago

So, it took me 2 days to figure it out how to do it, now is working and ready to collect Subscribers....

      
//<p class="has-text-white is-size-7-mobile is-size-7-tablet alert alert-success success-message " st...      
    

MORE


Posted by albydarned 6 years ago

As you may know, COUNT(*) if often very slow on large tables. With this query I have been able to que...

      
SELECT SUM (row_count)
FROM sys.dm_db_partition_stats
WHERE object_id=OBJECT_ID('TableName')   
AND (...      
    

MORE


Posted by axelson 6 years ago

      
iex> :code.which Tuple
'/Users/jason/.asdf/installs/elixir/1.8.1-otp-21/bin/../lib/elixir/ebin/Elixir...      
    

MORE


Posted by michael_andreuzza 6 years ago

It's the material Ui that I use on Colors and Fonts Hope you enjoy it!

      
 /* CSS */
 
 .btn {
        position: relative;
        display: inline-block;
        margin: 5px;
...      
    

MORE


Posted by parasite 6 years ago

      
water.css (dark theme) 

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Robo...      
    

MORE


Posted by parasite 6 years ago

      

h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    color: #000;
}...      
    

MORE


Posted by chipplayer 6 years ago

      
document.write('Hello Wolrd');      
    

Posted by michael_andreuzza 6 years ago

Bulma Mega menu HTML mark up

      
<nav class="navbar ">
  <div class="navbar-brand">
    <a class="navbar-item" href="http://bulma.io">...      
    

MORE


Posted by axelson 6 years ago

Trace garbage collection of a process with pid `pid`.

      
:dbg.tracer(); :dbg.p(pid, [:garbage_collection])      
    

Posted by axelson 6 years ago

      
System.unique_integer([:positive, :monotonic])